diff --git a/.changeset/eight-rice-tap.md b/.changeset/eight-rice-tap.md deleted file mode 100644 index f31d24115c71..000000000000 --- a/.changeset/eight-rice-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/partytown': patch ---- - -Prevent Partytown integration from inserting a 'null' string into the body diff --git a/.changeset/eleven-papayas-rhyme.md b/.changeset/eleven-papayas-rhyme.md deleted file mode 100644 index 3b6a9bb0988b..000000000000 --- a/.changeset/eleven-papayas-rhyme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a case where Vite would be imported by the SSR runtime, causing bundling errors and bloat. diff --git a/.changeset/fuzzy-falcons-tan.md b/.changeset/fuzzy-falcons-tan.md deleted file mode 100644 index 45323269d56e..000000000000 --- a/.changeset/fuzzy-falcons-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Marks internal `vite-plugin-fileurl` plugin with `enforce: 'pre'` diff --git a/.changeset/good-adults-punch.md b/.changeset/good-adults-punch.md deleted file mode 100644 index 0ae575c514fa..000000000000 --- a/.changeset/good-adults-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/markdoc': patch ---- - -Fixes an issue preventing to use Astro components as Markdoc tags and nodes when configured using the `extends` property. diff --git a/.changeset/nasty-ladybugs-whisper.md b/.changeset/nasty-ladybugs-whisper.md deleted file mode 100644 index d922187e5cb0..000000000000 --- a/.changeset/nasty-ladybugs-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Prevents prefetching of the same urls with different hashes. diff --git a/.changeset/odd-otters-look.md b/.changeset/odd-otters-look.md deleted file mode 100644 index 18f2be20de79..000000000000 --- a/.changeset/odd-otters-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -astro: patch ---- - -Updates the documentation for experimental Content Layer API with a corrected code example diff --git a/.changeset/perfect-socks-dress.md b/.changeset/perfect-socks-dress.md deleted file mode 100644 index a6c8a8402400..000000000000 --- a/.changeset/perfect-socks-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes a typo in the `MissingImageDimension` error message diff --git a/.changeset/thirty-bikes-peel.md b/.changeset/thirty-bikes-peel.md deleted file mode 100644 index 5a5aacc7fd3a..000000000000 --- a/.changeset/thirty-bikes-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Improves error message when invalid data is returned by an Action. diff --git a/.changeset/tiny-suns-sit.md b/.changeset/tiny-suns-sit.md deleted file mode 100644 index d5dbd58ae75e..000000000000 --- a/.changeset/tiny-suns-sit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/mdx': patch ---- - -Fixes CSS in the layout component to be ordered first before any other components in the MDX file diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 44537f1338a7..f265b5fedb55 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -20,6 +20,13 @@ jobs: PR-BENCH: ${{ steps.benchmark-pr.outputs.BENCH_RESULT }} MAIN-BENCH: ${{ steps.benchmark-main.outputs.BENCH_RESULT }} steps: + - name: Check if user has write access + uses: lannonbr/repo-permission-check-action@2.0.2 + with: + permission: write + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # https://github.com/actions/checkout/issues/331#issuecomment-1438220926 - uses: actions/checkout@v4 with: diff --git a/.github/workflows/check-merge.yml b/.github/workflows/check-merge.yml index 8a2b3243b780..a4b4ddb99e5a 100644 --- a/.github/workflows/check-merge.yml +++ b/.github/workflows/check-merge.yml @@ -41,7 +41,7 @@ jobs: - name: Get changed files in the .changeset folder id: changed-files - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v45 if: steps.blocked.outputs.result != 'true' with: files: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79962c07e1ce..cc214ba4136b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: run: pnpm run build - name: Lint - run: pnpm run lint + run: pnpm run lint:ci test: name: "Test: ${{ matrix.os }} (node@${{ matrix.NODE_VERSION }})" diff --git a/.github/workflows/congrats.yml b/.github/workflows/congrats.yml new file mode 100644 index 000000000000..4052bdac8776 --- /dev/null +++ b/.github/workflows/congrats.yml @@ -0,0 +1,16 @@ +name: Congratsbot + +on: + push: + branches: + - main + +jobs: + congrats: + name: congratsbot + if: ${{ github.repository_owner == 'withastro' && github.event.head_commit.message != '[ci] format' }} + uses: withastro/automation/.github/workflows/congratsbot.yml@main + with: + EMOJIS: '🎉,🎊,🧑‍🚀,🥳,🙌,🚀,👏,<:houston_golden:1068575433647456447>,<:astrocoin:894990669515489301>,<:astro_pride:1130501345326157854>' + secrets: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_CONGRATS }} diff --git a/.github/workflows/dispatch-event.yml b/.github/workflows/dispatch-event.yml index 5283fab4e1f3..0bca088e3d37 100644 --- a/.github/workflows/dispatch-event.yml +++ b/.github/workflows/dispatch-event.yml @@ -24,6 +24,7 @@ env: jobs: repository-dispatch: name: Repository dispatch + if: github.repository_owner == 'withastro' runs-on: ubuntu-latest steps: - name: Dispatch event on push - adapters diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index cb2cdd59d2a7..000000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,77 +0,0 @@ -name: Main Checks - -on: - workflow_dispatch: - push: - branches: - - main - -env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -# Automatically cancel in-progress actions on the same branch -concurrency: - group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} - cancel-in-progress: true - -jobs: - congrats: - name: congratsbot - if: ${{ github.repository_owner == 'withastro' && github.event.head_commit.message != '[ci] format' }} - uses: withastro/automation/.github/workflows/congratsbot.yml@main - with: - EMOJIS: '🎉,🎊,🧑‍🚀,🥳,🙌,🚀,👏,<:houston_golden:1068575433647456447>,<:astrocoin:894990669515489301>,<:astro_pride:1130501345326157854>' - secrets: - DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_CONGRATS }} - - check_for_update: - name: Check for Updates - runs-on: ubuntu-latest - outputs: - run_job: ${{ steps.check_files.outputs.run_job }} - steps: - - uses: actions/checkout@v4 - - - name: Setup PNPM - uses: pnpm/action-setup@v3 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 18 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install - - - name: Check Modified - run: pnpm exec changeset status --output ./status.json - - - name: Check Output - id: check_files - run: | - output=`echo $(cat status.json)` - if [[ $output = '{ "changesets": [], "releases": [] }' ]] - then - echo 'No changeset found' - echo "run_job=true" >> $GITHUB_OUTPUT - else - echo 'changes found, push to latest skipped' - echo "run_job=false" >> $GITHUB_OUTPUT - fi - - update: - name: Update the latest branch - needs: check_for_update - if: needs.check_for_update.outputs.run_job == 'true' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Push - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: latest diff --git a/.github/workflows/preview-comment.yml b/.github/workflows/preview-comment.yml index 7ed6bdf6f680..9fb0f48c3983 100644 --- a/.github/workflows/preview-comment.yml +++ b/.github/workflows/preview-comment.yml @@ -13,6 +13,13 @@ jobs: runs-on: ubuntu-latest steps: + - name: Check if user has write access + uses: lannonbr/repo-permission-check-action@2.0.2 + with: + permission: write + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - run: | gh issue edit ${{ github.event.issue.number }} --add-label "pr: preview" --repo ${{ github.repository }} env: diff --git a/.github/workflows/snapshot-release.yml b/.github/workflows/snapshot-release.yml index bee678c962a8..6f813dbd37ef 100644 --- a/.github/workflows/snapshot-release.yml +++ b/.github/workflows/snapshot-release.yml @@ -25,10 +25,10 @@ jobs: issues: write pull-requests: write steps: - - name: "Check if user has write access" - uses: "lannonbr/repo-permission-check-action@2.0.2" + - name: Check if user has write access + uses: lannonbr/repo-permission-check-action@2.0.2 with: - permission: "write" + permission: write env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/sync-examples.yml b/.github/workflows/sync-examples.yml new file mode 100644 index 000000000000..a18d62738ebd --- /dev/null +++ b/.github/workflows/sync-examples.yml @@ -0,0 +1,89 @@ +name: Sync examples + +on: + workflow_dispatch: + inputs: + skip-unchanged-check: + type: boolean + default: false + dry-run: + type: boolean + default: false + push: + branches: + - main + - next + +# Automatically cancel in-progress actions on the same branch +concurrency: + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} + cancel-in-progress: true + +permissions: + # Allow auto-branch-sync-action to git push + contents: write + +jobs: + sync: + name: Sync branches + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 2 # fetch 2 to compare with previous commit for changes + + - name: Detect changesets + uses: bluwy/detect-changesets-action@v1 + id: detect + + # We only do sync if there are no changesets, so we don't accidentally allow users + # to clone examples that may rely on unreleased code + + - name: Sync from main branch to latest and examples/* branches + if: steps.detect.outputs.has-changesets == 'false' && github.ref == 'refs/heads/main' + uses: bluwy/auto-branch-sync-action@v1 + with: + map: | + / -> latest + /examples/* -> examples/* + skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} + dry-run: ${{ inputs.dry-run == true }} + + - name: Check .changeset/pre.json for matching tag + if: steps.detect.outputs.has-changesets == 'false' && github.ref == 'refs/heads/next' + id: check-pre-mode + run: | + if [ -f ./.changeset/pre.json ]; then + if grep -q '"tag": "alpha"' ./.changeset/pre.json; then + echo "alpha=true" >> $GITHUB_OUTPUT + elif grep -q '"tag": "beta"' ./.changeset/pre.json; then + echo "beta=true" >> $GITHUB_OUTPUT + elif grep -q '"tag": "rc"' ./.changeset/pre.json; then + echo "rc=true" >> $GITHUB_OUTPUT + fi + fi + + - name: Sync from next branch to alpha branch + if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.alpha == 'true' + uses: bluwy/auto-branch-sync-action@v1 + with: + map: / -> alpha + skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} + dry-run: ${{ inputs.dry-run == true }} + + - name: Sync from next branch to beta branch + if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.beta == 'true' + uses: bluwy/auto-branch-sync-action@v1 + with: + map: / -> beta + skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} + dry-run: ${{ inputs.dry-run == true }} + + - name: Sync from next branch to rc branch + if: steps.detect.outputs.has-changesets == 'false' && steps.check-pre-mode.outputs.rc == 'true' + uses: bluwy/auto-branch-sync-action@v1 + with: + map: / -> rc + skip-unchanged-check: ${{ inputs.skip-unchanged-check == true }} + dry-run: ${{ inputs.dry-run == true }} diff --git a/.vscode/settings.json b/.vscode/settings.json index b3e10e7bccee..a626d0892c59 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,7 +15,7 @@ "editor.defaultFormatter": "biomejs.biome" }, "editor.codeActionsOnSave": { - "quickFix.biome": true, - "source.fixAll.biome": true + "quickFix.biome": "explicit", + "source.fixAll.biome": "explicit" } } diff --git a/benchmark/bench/cli-startup.js b/benchmark/bench/cli-startup.js index aa8880554e0c..6f25554997cd 100644 --- a/benchmark/bench/cli-startup.js +++ b/benchmark/bench/cli-startup.js @@ -1,5 +1,5 @@ import { fileURLToPath } from 'node:url'; -import { execaCommand } from 'execa'; +import { exec } from 'tinyexec'; import { markdownTable } from 'markdown-table'; import { astroBin, calculateStat } from './_util.js'; @@ -14,11 +14,11 @@ export async function run(projectDir, outputFile) { const root = fileURLToPath(projectDir); console.log('Benchmarking `astro --help`...'); - const helpStat = await benchmarkCommand(`node ${astroBin} --help`, root); + const helpStat = await benchmarkCommand('node', [astroBin, '--help'], root); console.log('Done'); - console.log('Benchmarking `astro info`...'); - const infoStat = await benchmarkCommand(`node ${astroBin} info`, root); + console.log('Benchmarking `astro preferences list`...'); + const infoStat = await benchmarkCommand('node', [astroBin, 'preferences', 'list'], root); console.log('Done'); console.log('Result preview:'); @@ -35,16 +35,17 @@ export async function run(projectDir, outputFile) { /** * @param {string} command + * @param {string[]} args * @param {string} root * @returns {Promise} */ -async function benchmarkCommand(command, root) { +async function benchmarkCommand(command, args, root) { /** @type {number[]} */ const durations = []; for (let i = 0; i < 10; i++) { const start = performance.now(); - await execaCommand(command, { cwd: root }); + await exec(command, args, { nodeOptions: { cwd: root } }); durations.push(performance.now() - start); } diff --git a/benchmark/bench/memory.js b/benchmark/bench/memory.js index 3a437b3fe357..f1846204f8b9 100644 --- a/benchmark/bench/memory.js +++ b/benchmark/bench/memory.js @@ -1,4 +1,4 @@ -import { execaCommand } from 'execa'; +import { exec } from 'tinyexec'; import { markdownTable } from 'markdown-table'; import fs from 'node:fs/promises'; import { fileURLToPath } from 'node:url'; @@ -18,11 +18,13 @@ export async function run(projectDir, outputFile) { const outputFilePath = fileURLToPath(outputFile); console.log('Building and benchmarking...'); - await execaCommand(`node --expose-gc --max_old_space_size=10000 ${astroBin} build --silent`, { - cwd: root, - stdio: 'inherit', - env: { - ASTRO_TIMER_PATH: outputFilePath, + await exec('node', ['--expose-gc', '--max_old_space_size=10000', astroBin, 'build'], { + nodeOptions: { + cwd: root, + stdio: 'inherit', + env: { + ASTRO_TIMER_PATH: outputFilePath, + }, }, }); diff --git a/benchmark/bench/render.js b/benchmark/bench/render.js index 20c9abb0f3a3..aee04f2b5bed 100644 --- a/benchmark/bench/render.js +++ b/benchmark/bench/render.js @@ -1,4 +1,4 @@ -import { execaCommand } from 'execa'; +import { exec } from 'tinyexec'; import { markdownTable } from 'markdown-table'; import fs from 'node:fs/promises'; import http from 'node:http'; @@ -20,15 +20,19 @@ export async function run(projectDir, outputFile) { const root = fileURLToPath(projectDir); console.log('Building...'); - await execaCommand(`${astroBin} build`, { - cwd: root, - stdio: 'inherit', + await exec(astroBin, ['build'], { + nodeOptions: { + cwd: root, + stdio: 'inherit', + }, }); console.log('Previewing...'); - const previewProcess = execaCommand(`${astroBin} preview --port ${port}`, { - cwd: root, - stdio: 'inherit', + const previewProcess = exec(astroBin, ['preview', '--port', port], { + nodeOptions: { + cwd: root, + stdio: 'inherit', + }, }); console.log('Waiting for server ready...'); diff --git a/benchmark/bench/server-stress.js b/benchmark/bench/server-stress.js index ca165e239a3a..18b31c71c59e 100644 --- a/benchmark/bench/server-stress.js +++ b/benchmark/bench/server-stress.js @@ -1,5 +1,5 @@ import autocannon from 'autocannon'; -import { execaCommand } from 'execa'; +import { exec } from 'tinyexec'; import { markdownTable } from 'markdown-table'; import fs from 'node:fs/promises'; import { fileURLToPath } from 'node:url'; @@ -19,9 +19,11 @@ export async function run(projectDir, outputFile) { const root = fileURLToPath(projectDir); console.log('Building...'); - await execaCommand(`${astroBin} build`, { - cwd: root, - stdio: 'inherit', + await exec(astroBin, ['build'], { + nodeOptions: { + cwd: root, + stdio: 'inherit', + }, }); console.log('Previewing...'); diff --git a/benchmark/package.json b/benchmark/package.json index d56a6d1b0673..13bd303b1ca4 100644 --- a/benchmark/package.json +++ b/benchmark/package.json @@ -8,15 +8,15 @@ }, "dependencies": { "@astrojs/mdx": "workspace:*", - "@astrojs/node": "workspace:*", + "@astrojs/node": "^8.3.4", "@benchmark/timer": "workspace:*", "astro": "workspace:*", "autocannon": "^7.15.0", - "execa": "^8.0.1", "markdown-table": "^3.0.3", "mri": "^1.2.0", "port-authority": "^2.0.1", "pretty-bytes": "^6.1.1", - "sharp": "^0.33.3" + "sharp": "^0.33.3", + "tinyexec": "^0.3.0" } } diff --git a/benchmark/packages/timer/package.json b/benchmark/packages/timer/package.json index a4a3b8df1b81..7e3e2065bc04 100644 --- a/benchmark/packages/timer/package.json +++ b/benchmark/packages/timer/package.json @@ -29,7 +29,7 @@ "astro": "workspace:*" }, "devDependencies": { - "@types/server-destroy": "^1.0.3", + "@types/server-destroy": "^1.0.4", "astro": "workspace:*", "astro-scripts": "workspace:*" } diff --git a/benchmark/packages/timer/src/index.ts b/benchmark/packages/timer/src/index.ts index 2ea41af6624d..1c54e3727618 100644 --- a/benchmark/packages/timer/src/index.ts +++ b/benchmark/packages/timer/src/index.ts @@ -27,7 +27,6 @@ export default function createIntegration(): AstroIntegration { setAdapter(getAdapter()); if (config.output === 'static') { - // eslint-disable-next-line no-console console.warn(`[@benchmark/timer] \`output: "server"\` is required to use this adapter.`); } }, diff --git a/benchmark/packages/timer/src/preview.ts b/benchmark/packages/timer/src/preview.ts index aa503c11bf57..9659a26beaa5 100644 --- a/benchmark/packages/timer/src/preview.ts +++ b/benchmark/packages/timer/src/preview.ts @@ -9,7 +9,7 @@ const preview: CreatePreviewServer = async function ({ serverEntrypoint, host, p server.listen(port, host); enableDestroy(server); - // eslint-disable-next-line no-console + // biome-ignore lint/suspicious/noConsoleLog: allowed console.log(`Preview server listening on http://${host}:${port}`); // Resolves once the server is closed diff --git a/biome.json b/biome.json deleted file mode 100644 index 33f9070b9369..000000000000 --- a/biome.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", - "files": { - "ignore": [ - "vendor", - "**/dist/**", - "**/smoke/**", - "**/fixtures/**", - "**/vendor/**", - "**/.vercel/**" - ], - "include": ["test/**", "e2e/**", "packages/**", "/scripts/**"] - }, - "formatter": { - "indentStyle": "tab", - "indentWidth": 2, - "lineWidth": 100, - "ignore": [ - "benchmark/projects/", - "benchmark/results/", - ".changeset", - "pnpm-lock.yaml", - "*.astro" - ] - }, - "organizeImports": { - "enabled": true - }, - "linter": { - "enabled": true, - "rules": { - "recommended": false, - "style": { - "useNodejsImportProtocol": "error", - "useImportType": "error" - } - } - }, - "javascript": { - "formatter": { - "trailingCommas": "all", - "quoteStyle": "single", - "semicolons": "always" - } - }, - "json": { - "parser": { - "allowComments": true, - "allowTrailingCommas": true - }, - "formatter": { - "indentStyle": "space", - "trailingCommas": "none" - } - }, - "overrides": [ - { - "include": ["package.json"], - "json": { - "formatter": { - "lineWidth": 1 - } - } - } - ] -} diff --git a/biome.jsonc b/biome.jsonc new file mode 100644 index 000000000000..a949301439da --- /dev/null +++ b/biome.jsonc @@ -0,0 +1,139 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.9.3/schema.json", + "files": { + "ignore": [ + "vendor", + "**/dist/**", + "**/smoke/**", + "**/fixtures/**", + "**/vendor/**", + "**/.vercel/**", + ], + "include": ["test/**", "e2e/**", "packages/**", "/scripts/**"], + }, + "formatter": { + "indentStyle": "tab", + "indentWidth": 2, + "lineWidth": 100, + "ignore": [ + "benchmark/projects/", + "benchmark/results/", + ".changeset", + "pnpm-lock.yaml", + "*.astro", + ], + }, + "organizeImports": { + "enabled": true, + }, + "linter": { + "enabled": true, + "rules": { + "recommended": false, + "style": { + "useNodejsImportProtocol": "error", + // Enforce separate type imports for type-only imports to avoid bundling unneeded code + "useImportType": "error", + }, + "suspicious": { + // This one is specific to catch `console.log`. The rest of logs are permitted + "noConsoleLog": "warn", + }, + "correctness": { + "noUnusedVariables": "info", + "noUnusedFunctionParameters": "info", + }, + }, + }, + "javascript": { + "formatter": { + "trailingCommas": "all", + "quoteStyle": "single", + "semicolons": "always", + }, + }, + "json": { + "parser": { + "allowComments": true, + "allowTrailingCommas": true, + }, + "formatter": { + "indentStyle": "space", + "trailingCommas": "none", + }, + }, + "overrides": [ + { + // Workaround to format files like npm does + "include": ["package.json"], + "json": { + "formatter": { + "lineWidth": 1, + }, + }, + }, + { + // We don"t want to have node modules in code that should be runtime agnostic + "include": ["packages/astro/src/runtime/**/*.ts"], + "linter": { + "rules": { + "correctness": { + "noNodejsModules": "error", + }, + }, + }, + }, + { + "include": ["*.test.js"], + "linter": { + "rules": { + "suspicious": { + "noFocusedTests": "error", + "noConsole": "off", + }, + }, + }, + }, + { + "include": ["*.astro", "client.d.ts"], + "linter": { + "rules": { + "correctness": { + "noUnusedVariables": "off", + }, + }, + }, + }, + { + "include": ["packages/integrations/**/*.ts"], + "linter": { + "rules": { + "suspicious": { + "noConsole": { + "level": "error", + "options": { + "allow": ["warn", "error", "info", "debug"], + }, + }, + }, + }, + }, + }, + { + "include": [ + "packages/db/**/cli/**/*.ts", + "benchmark/**/*.js", + "packages/astro/src/cli/**/*.ts", + "packages/astro/astro.js", + ], + "linter": { + "rules": { + "suspicious": { + "noConsole": "off", + "noConsoleLog": "off", + }, + }, + }, + }, + ], +} diff --git a/eslint.config.js b/eslint.config.js index cd70882c7c0c..c5fbf3fbc37c 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,11 +1,9 @@ import path from 'node:path'; import { fileURLToPath } from 'node:url'; -import { builtinModules } from 'node:module'; import tseslint from 'typescript-eslint'; // plugins -import noOnlyTestsEslint from 'eslint-plugin-no-only-tests'; import regexpEslint from 'eslint-plugin-regexp'; const typescriptEslint = tseslint.plugin; @@ -47,26 +45,16 @@ export default [ }, plugins: { '@typescript-eslint': typescriptEslint, - 'no-only-tests': noOnlyTestsEslint, regexp: regexpEslint, }, rules: { // These off/configured-differently-by-default rules fit well for us '@typescript-eslint/switch-exhaustiveness-check': 'error', - '@typescript-eslint/no-unused-vars': [ - 'error', - { - argsIgnorePattern: '^_', - varsIgnorePattern: '^_', - caughtErrorsIgnorePattern: '^_', - ignoreRestSiblings: true, - }, - ], - 'no-only-tests/no-only-tests': 'error', '@typescript-eslint/no-shadow': 'error', - 'no-console': 'warn', + 'no-console': 'off', // Todo: do we want these? + '@typescript-eslint/no-unused-vars': 'off', '@typescript-eslint/array-type': 'off', '@typescript-eslint/ban-ts-comment': 'off', '@typescript-eslint/class-literal-property-style': 'off', @@ -98,16 +86,8 @@ export default [ '@typescript-eslint/unbound-method': 'off', '@typescript-eslint/no-explicit-any': 'off', - // Enforce separate type imports for type-only imports to avoid bundling unneeded code - '@typescript-eslint/consistent-type-imports': [ - 'error', - { - prefer: 'type-imports', - fixStyle: 'separate-type-imports', - disallowTypeAnnotations: false, - }, - ], - + // Used by Biome + '@typescript-eslint/consistent-type-imports': 'off', // These rules enabled by the preset configs don't work well for us '@typescript-eslint/await-thenable': 'off', 'prefer-const': 'off', @@ -118,20 +98,6 @@ export default [ 'regexp/prefer-regexp-test': 'warn', }, }, - - { - // Ensure Node builtins aren't included in Astro's server runtime - files: ['packages/astro/src/runtime/**/*.ts'], - rules: { - 'no-restricted-imports': [ - 'error', - { - paths: [...builtinModules], - patterns: ['node:*'], - }, - ], - }, - }, { files: ['packages/astro/src/runtime/client/**/*.ts'], languageOptions: { @@ -140,36 +106,6 @@ export default [ }, }, }, - { - files: ['packages/**/test/*.js', 'packages/**/*.js'], - languageOptions: { - globals: { - globalThis: false, // false means read-only - }, - }, - rules: { - 'no-console': 'off', - }, - }, - { - files: ['packages/integrations/**/*.ts'], - rules: { - 'no-console': ['error', { allow: ['warn', 'error', 'info', 'debug'] }], - }, - }, - { - files: ['benchmark/**/*.js'], - rules: { - '@typescript-eslint/no-unused-vars': 'off', - 'no-console': 'off', - }, - }, - { - files: ['packages/db/**/cli/**/*.ts'], - rules: { - 'no-console': 'off', - }, - }, { files: ['packages/astro/src/core/errors/errors-data.ts'], rules: { diff --git a/examples/basics/package.json b/examples/basics/package.json index d4244b9cb513..45a4d6819f62 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 03fb0193cbd5..2e66bd1f86fc 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^3.1.4", - "@astrojs/rss": "^4.0.7", - "@astrojs/sitemap": "^3.1.6", - "astro": "^4.14.5" + "@astrojs/mdx": "^3.1.8", + "@astrojs/rss": "^4.0.8", + "@astrojs/sitemap": "^3.2.0", + "astro": "^4.16.2" } } diff --git a/examples/component/package.json b/examples/component/package.json index eb486e3c166f..85bc36ecd673 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index 06d755487542..d017b4e2d7ad 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,14 +12,14 @@ "test": "vitest run" }, "dependencies": { - "astro": "^4.14.5", + "astro": "^4.16.2", "@astrojs/react": "^3.6.2", "react": "^18.3.1", "react-dom": "^18.3.1", - "vitest": "^2.0.5" + "vitest": "^2.1.2" }, "devDependencies": { - "@types/react": "^18.3.3", + "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index a4109101ae17..fed6acb1ed77 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -14,6 +14,6 @@ "@astrojs/alpinejs": "^0.4.0", "@types/alpinejs": "^3.13.10", "alpinejs": "^3.14.1", - "astro": "^4.14.5" + "astro": "^4.16.2" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index a129ad09ad1e..adf093eecb3f 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/lit": "^4.3.0", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^4.14.5", + "astro": "^4.16.2", "lit": "^3.2.0" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 21ec3ec962a6..b1dbdbdc89e2 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,19 +11,19 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.1", + "@astrojs/preact": "^3.5.3", "@astrojs/react": "^3.6.2", - "@astrojs/solid-js": "^4.4.1", - "@astrojs/svelte": "^5.7.0", - "@astrojs/vue": "^4.5.0", - "@types/react": "^18.3.3", + "@astrojs/solid-js": "^4.4.2", + "@astrojs/svelte": "^5.7.2", + "@astrojs/vue": "^4.5.2", + "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", - "astro": "^4.14.5", - "preact": "^10.23.2", + "astro": "^4.16.2", + "preact": "^10.24.2", "react": "^18.3.1", "react-dom": "^18.3.1", - "solid-js": "^1.8.21", - "svelte": "^4.2.18", - "vue": "^3.4.38" + "solid-js": "^1.9.1", + "svelte": "^4.2.19", + "vue": "^3.5.11" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 2b6a7037204b..9a9517e90a89 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.1", + "@astrojs/preact": "^3.5.3", "@preact/signals": "^1.3.0", - "astro": "^4.14.5", - "preact": "^10.23.2" + "astro": "^4.16.2", + "preact": "^10.24.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 6f7b5de79fab..b3d7916635f8 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -12,9 +12,9 @@ }, "dependencies": { "@astrojs/react": "^3.6.2", - "@types/react": "^18.3.3", + "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", - "astro": "^4.14.5", + "astro": "^4.16.2", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index c19c9d3d11c9..2b9b24127554 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/solid-js": "^4.4.1", - "astro": "^4.14.5", - "solid-js": "^1.8.21" + "@astrojs/solid-js": "^4.4.2", + "astro": "^4.16.2", + "solid-js": "^1.9.1" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 4d233de67132..fea663dc42aa 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^5.7.0", - "astro": "^4.14.5", - "svelte": "^4.2.18" + "@astrojs/svelte": "^5.7.2", + "astro": "^4.16.2", + "svelte": "^4.2.19" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 3a4014b205db..88b83cc3614e 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^4.5.0", - "astro": "^4.14.5", - "vue": "^3.4.38" + "@astrojs/vue": "^4.5.2", + "astro": "^4.16.2", + "vue": "^3.5.11" } } diff --git a/examples/hackernews/.gitignore b/examples/hackernews/.gitignore index cfc68ec1900a..16d54bb13c8a 100644 --- a/examples/hackernews/.gitignore +++ b/examples/hackernews/.gitignore @@ -1,6 +1,5 @@ # build output dist/ -.output/ # generated types .astro/ @@ -20,3 +19,6 @@ pnpm-debug.log* # macOS-specific files .DS_Store + +# jetbrains setting folder +.idea/ diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index 1e67ec4dbb8e..6e99ec8a041c 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/node": "^8.3.3", - "astro": "^4.14.5" + "@astrojs/node": "^8.3.4", + "astro": "^4.16.2" } } diff --git a/examples/non-html-pages/.gitignore b/examples/integration/.gitignore similarity index 100% rename from examples/non-html-pages/.gitignore rename to examples/integration/.gitignore diff --git a/examples/integration/package.json b/examples/integration/package.json index b7ec60ec92e9..5ccb188a6f02 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json deleted file mode 100644 index 312e6b5903d7..000000000000 --- a/examples/middleware/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@example/middleware", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro", - "server": "node dist/server/entry.mjs" - }, - "dependencies": { - "@astrojs/node": "^8.3.3", - "astro": "^4.14.5", - "html-minifier": "^4.0.0" - }, - "devDependencies": { - "@types/html-minifier": "^4.0.5" - } -} diff --git a/examples/middleware/src/components/Card.astro b/examples/middleware/src/components/Card.astro deleted file mode 100644 index 1ff16e5fb46e..000000000000 --- a/examples/middleware/src/components/Card.astro +++ /dev/null @@ -1,65 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - - - diff --git a/examples/middleware/src/env.d.ts b/examples/middleware/src/env.d.ts deleted file mode 100644 index 74b9019e5746..000000000000 --- a/examples/middleware/src/env.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -/// -declare namespace App { - interface Locals { - user: { - name: string; - surname: string; - }; - } -} diff --git a/examples/middleware/src/layouts/Layout.astro b/examples/middleware/src/layouts/Layout.astro deleted file mode 100644 index 90d2fb715f15..000000000000 --- a/examples/middleware/src/layouts/Layout.astro +++ /dev/null @@ -1,42 +0,0 @@ ---- -interface Props { - title: string; -} - -const { title } = Astro.props; ---- - - - - - - - - - {title} - - - - - - diff --git a/examples/middleware/src/middleware.ts b/examples/middleware/src/middleware.ts deleted file mode 100644 index 4854105caec9..000000000000 --- a/examples/middleware/src/middleware.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { defineMiddleware, sequence } from 'astro:middleware'; -import htmlMinifier from 'html-minifier'; - -const limit = 50; - -const loginInfo: { - token: undefined | string; - currentTime: undefined | number; -} = { - token: undefined, - currentTime: undefined, -}; - -export const minifier = defineMiddleware(async (_context, next) => { - const response = await next(); - // check if the response is returning some HTML - if (response.headers.get('content-type') === 'text/html') { - let headers = response.headers; - let html = await response.text(); - let newHtml = htmlMinifier.minify(html, { - removeAttributeQuotes: true, - collapseWhitespace: true, - }); - return new Response(newHtml, { - status: 200, - headers, - }); - } - return response; -}); - -const validation = defineMiddleware(async (context, next) => { - if (context.request.url.endsWith('/admin')) { - if (loginInfo.currentTime) { - const difference = new Date().getTime() - loginInfo.currentTime; - if (difference > limit) { - console.log('hit threshold'); - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - } - // we naively check if we have a token - if (loginInfo.token && loginInfo.token === 'loggedIn') { - // we fill the locals with user-facing information - context.locals.user = { - name: 'AstroUser', - surname: 'AstroSurname', - }; - return await next(); - } else { - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - } else if (context.request.url.endsWith('/api/login')) { - const response = await next(); - // the login endpoint will return to us a JSON with username and password - if (response.headers.get('content-type') === 'application/json') { - const data = await response.json(); - // we naively check if username and password are equals to some string - if (data.username === 'astro' && data.password === 'astro') { - // we store the token somewhere outside of locals because the `locals` object is attached to the request - // and when doing a redirect, we lose that information - loginInfo.token = 'loggedIn'; - loginInfo.currentTime = new Date().getTime(); - return context.redirect('/admin'); - } - } - return response; - } else if (context.request.url.endsWith('/api/logout')) { - const response = await next(); - if (response.ok) { - loginInfo.token = undefined; - loginInfo.currentTime = undefined; - return context.redirect('/login'); - } - return response; - } - return next(); -}); - -export const onRequest = sequence(validation, minifier); diff --git a/examples/middleware/src/pages/admin.astro b/examples/middleware/src/pages/admin.astro deleted file mode 100644 index 921758228dc2..000000000000 --- a/examples/middleware/src/pages/admin.astro +++ /dev/null @@ -1,60 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; -const user = Astro.locals.user; ---- - - -
-

Welcome back {user.name} {user.surname}

- {} - -
-
- - diff --git a/examples/middleware/src/pages/api/login.ts b/examples/middleware/src/pages/api/login.ts deleted file mode 100644 index 24012444cf37..000000000000 --- a/examples/middleware/src/pages/api/login.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { APIRoute, APIContext } from "astro"; - -export const POST: APIRoute = async (context: APIContext) => { - try { - const data = await context.request.formData(); - return new Response( - JSON.stringify({ - username: data.get("username"), - password: data.get("password"), - }), - { - headers: { "Content-Type": "application/json" }, - } - ); - } catch (e) { - if (e instanceof Error) { - console.error(e.message); - } - } - return new Response(null, { status: 400 }); -}; diff --git a/examples/middleware/src/pages/api/logout.ts b/examples/middleware/src/pages/api/logout.ts deleted file mode 100644 index b6c6e9e0601e..000000000000 --- a/examples/middleware/src/pages/api/logout.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { APIRoute, APIContext } from "astro"; - -export const GET: APIRoute = async (_: APIContext) => { - return new Response(null, { status: 200 }); -}; diff --git a/examples/middleware/src/pages/index.astro b/examples/middleware/src/pages/index.astro deleted file mode 100644 index bd934ff946bd..000000000000 --- a/examples/middleware/src/pages/index.astro +++ /dev/null @@ -1,63 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import Card from '../components/Card.astro'; ---- - - -
-

Welcome to Astro

-

- To get started, open the directory src/pages in your project.
- Code Challenge: Tweak the "Welcome to Astro" message above. -

- {} - -
-
- - diff --git a/examples/middleware/src/pages/login.astro b/examples/middleware/src/pages/login.astro deleted file mode 100644 index 697f6819c699..000000000000 --- a/examples/middleware/src/pages/login.astro +++ /dev/null @@ -1,76 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; - -const status = Astro.response.status; -let redirectMessage; -if (status === 301) { - redirectMessage = 'Your session is finished, please login again'; -} ---- - - -
-

Welcome to Astro

-

- To get started, open the directory src/pages in your project.
- Code Challenge: Tweak the "Welcome to Astro" message above. - Login with: Username: astro Password: astro -

- {redirectMessage} -
- - - - -
-
-
- - diff --git a/examples/middleware/tsconfig.json b/examples/middleware/tsconfig.json deleted file mode 100644 index d78f81ec4e8e..000000000000 --- a/examples/middleware/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 6d036668064a..a04469546125 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" } } diff --git a/examples/non-html-pages/.codesandbox/Dockerfile b/examples/non-html-pages/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a121d..000000000000 --- a/examples/non-html-pages/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/non-html-pages/.vscode/extensions.json b/examples/non-html-pages/.vscode/extensions.json deleted file mode 100644 index 22a15055d638..000000000000 --- a/examples/non-html-pages/.vscode/extensions.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "recommendations": ["astro-build.astro-vscode"], - "unwantedRecommendations": [] -} diff --git a/examples/non-html-pages/.vscode/launch.json b/examples/non-html-pages/.vscode/launch.json deleted file mode 100644 index d6422097621f..000000000000 --- a/examples/non-html-pages/.vscode/launch.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "command": "./node_modules/.bin/astro dev", - "name": "Development server", - "request": "launch", - "type": "node-terminal" - } - ] -} diff --git a/examples/non-html-pages/README.md b/examples/non-html-pages/README.md deleted file mode 100644 index c26b016982dc..000000000000 --- a/examples/non-html-pages/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# Astro Starter Kit: Non-HTML Pages - -Documentation for "Non-HTML Pages": - -https://docs.astro.build/en/core-concepts/endpoints/#static-file-endpoints - -```sh -npm create astro@latest -- --template non-html-pages -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/non-html-pages) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/non-html-pages) -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/non-html-pages/devcontainer.json) - -> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! - -## 🚀 Project Structure - -Inside of your Astro project, you'll see the following folders and files: - -```text -/ -├── public/ -├── src/ -│ └── pages/ -│ └── index.astro -│ └── about.json.ts -└── package.json -``` - -Astro looks for `.astro`, `.js` or `.ts` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. - -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. - -Any static assets, like images, can be placed in the `public/` directory. - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :------------------------ | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). diff --git a/examples/non-html-pages/astro.config.mjs b/examples/non-html-pages/astro.config.mjs deleted file mode 100644 index 882e6515a67e..000000000000 --- a/examples/non-html-pages/astro.config.mjs +++ /dev/null @@ -1,4 +0,0 @@ -import { defineConfig } from 'astro/config'; - -// https://astro.build/config -export default defineConfig({}); diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json deleted file mode 100644 index 75a6922d9430..000000000000 --- a/examples/non-html-pages/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "@example/non-html-pages", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "^4.14.5" - } -} diff --git a/examples/non-html-pages/public/favicon.svg b/examples/non-html-pages/public/favicon.svg deleted file mode 100644 index f157bd1c5e28..000000000000 --- a/examples/non-html-pages/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/examples/non-html-pages/src/env.d.ts b/examples/non-html-pages/src/env.d.ts deleted file mode 100644 index e16c13c6952a..000000000000 --- a/examples/non-html-pages/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/examples/non-html-pages/src/pages/about.json.ts b/examples/non-html-pages/src/pages/about.json.ts deleted file mode 100644 index 8fa3657243f5..000000000000 --- a/examples/non-html-pages/src/pages/about.json.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Returns the file body for this non-HTML file. -// The content type is based off of the extension in the filename, -// in this case: about.json. -export async function GET() { - return new Response( - JSON.stringify({ - name: 'Astro', - url: 'https://astro.build/', - }) - ); -} diff --git a/examples/non-html-pages/src/pages/index.astro b/examples/non-html-pages/src/pages/index.astro deleted file mode 100644 index 921400acd578..000000000000 --- a/examples/non-html-pages/src/pages/index.astro +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - Astro - - -

Loading...

- - - diff --git a/examples/non-html-pages/tsconfig.json b/examples/non-html-pages/tsconfig.json deleted file mode 100644 index d78f81ec4e8e..000000000000 --- a/examples/non-html-pages/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 45389b472bd7..bf2620b50c39 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" } } diff --git a/examples/server-islands/astro.config.mjs b/examples/server-islands/astro.config.mjs deleted file mode 100644 index c0d6b918a52e..000000000000 --- a/examples/server-islands/astro.config.mjs +++ /dev/null @@ -1,18 +0,0 @@ -import { defineConfig } from 'astro/config'; -import nodejs from '@astrojs/node'; -import react from '@astrojs/react'; -import tailwind from '@astrojs/tailwind'; - -// https://astro.build/config -export default defineConfig({ - output: 'server', - adapter: nodejs({ mode: 'standalone' }), - integrations: [ - react(), - tailwind({ applyBaseStyles: false }) - ], - devToolbar: { enabled: false }, - experimental: { - serverIslands: true, - } -}); diff --git a/examples/server-islands/package.json b/examples/server-islands/package.json deleted file mode 100644 index 6f133878d7ad..000000000000 --- a/examples/server-islands/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "@example/server-islands", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "devDependencies": { - "@astrojs/node": "^8.3.3", - "@astrojs/react": "^3.6.2", - "@astrojs/tailwind": "^5.1.0", - "@fortawesome/fontawesome-free": "^6.6.0", - "@tailwindcss/forms": "^0.5.7", - "@types/react": "^18.3.3", - "@types/react-dom": "^18.3.0", - "astro": "^4.14.5", - "postcss": "^8.4.41", - "react": "^18.3.1", - "react-dom": "^18.3.1", - "tailwindcss": "^3.4.10" - } -} diff --git a/examples/server-islands/public/assets/css/main.css b/examples/server-islands/public/assets/css/main.css deleted file mode 100644 index 5b49f60e1f1e..000000000000 --- a/examples/server-islands/public/assets/css/main.css +++ /dev/null @@ -1,1874 +0,0 @@ -/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap"); -@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"); */ - -/* ! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com */ - -/* -1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) -2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) -*/ - -*, -::before, -::after { - box-sizing: border-box; - /* 1 */ - border-width: 0; - /* 2 */ - border-style: solid; - /* 2 */ - border-color: #e5e7eb; - /* 2 */ -} - -::before, -::after { - --tw-content: ''; -} - -/* -1. Use a consistent sensible line-height in all browsers. -2. Prevent adjustments of font size after orientation changes in iOS. -3. Use a more readable tab size. -4. Use the user's configured `sans` font-family by default. -*/ - -html { - line-height: 1.5; - /* 1 */ - -webkit-text-size-adjust: 100%; - /* 2 */ - -moz-tab-size: 4; - /* 3 */ - -o-tab-size: 4; - tab-size: 4; - /* 3 */ - 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'; - /* 4 */ -} - -/* -1. Remove the margin in all browsers. -2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. -*/ - -body { - margin: 0; - /* 1 */ - line-height: inherit; - /* 2 */ -} - -/* -1. Add the correct height in Firefox. -2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) -3. Ensure horizontal rules are visible by default. -*/ - -hr { - height: 0; - /* 1 */ - color: inherit; - /* 2 */ - border-top-width: 1px; - /* 3 */ -} - -/* -Add the correct text decoration in Chrome, Edge, and Safari. -*/ - -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -/* -Remove the default font size and weight for headings. -*/ - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/* -Reset links to optimize for opt-in styling instead of opt-out. -*/ - -a { - color: inherit; - text-decoration: inherit; -} - -/* -Add the correct font weight in Edge and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/* -1. Use the user's configured `mono` font family by default. -2. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp, -pre { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', - 'Courier New', monospace; - /* 1 */ - font-size: 1em; - /* 2 */ -} - -/* -Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/* -Prevent `sub` and `sup` elements from affecting the line height in all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* -1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) -2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) -3. Remove gaps between table borders by default. -*/ - -table { - text-indent: 0; - /* 1 */ - border-color: inherit; - /* 2 */ - border-collapse: collapse; - /* 3 */ -} - -/* -1. Change the font styles in all browsers. -2. Remove the margin in Firefox and Safari. -3. Remove default padding in all browsers. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - /* 1 */ - font-size: 100%; - /* 1 */ - line-height: inherit; - /* 1 */ - color: inherit; - /* 1 */ - margin: 0; - /* 2 */ - padding: 0; - /* 3 */ -} - -/* -Remove the inheritance of text transform in Edge and Firefox. -*/ - -button, -select { - text-transform: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Remove default button styles. -*/ - -button, -[type='button'], -[type='reset'], -[type='submit'] { - -webkit-appearance: button; - /* 1 */ - background-color: transparent; - /* 2 */ - background-image: none; - /* 2 */ -} - -/* -Use the modern Firefox focus style for all focusable elements. -*/ - -:-moz-focusring { - outline: auto; -} - -/* -Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) -*/ - -:-moz-ui-invalid { - box-shadow: none; -} - -/* -Add the correct vertical alignment in Chrome and Firefox. -*/ - -progress { - vertical-align: baseline; -} - -/* -Correct the cursor style of increment and decrement buttons in Safari. -*/ - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -/* -1. Correct the odd appearance in Chrome and Safari. -2. Correct the outline style in Safari. -*/ - -[type='search'] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/* -Remove the inner padding in Chrome and Safari on macOS. -*/ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* -Add the correct display in Chrome and Safari. -*/ - -summary { - display: list-item; -} - -/* -Removes the default spacing and border for appropriate elements. -*/ - -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; -} - -/* -Prevent resizing textareas horizontally by default. -*/ - -textarea { - resize: vertical; -} - -/* -1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) -2. Set the default placeholder color to the user's configured gray 400 color. -*/ - -input::-moz-placeholder, -textarea::-moz-placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -input:-ms-input-placeholder, -textarea:-ms-input-placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -/* -Set the default cursor for buttons. -*/ - -button, -[role='button'] { - cursor: pointer; -} - -/* -Make sure disabled buttons don't get the pointer cursor. -*/ - -:disabled { - cursor: default; -} - -/* -1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) -2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) - This can trigger a poorly considered lint error in some tools but is included by design. -*/ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - /* 1 */ - vertical-align: middle; - /* 2 */ -} - -/* -Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) -*/ - -img, -video { - max-width: 100%; - height: auto; -} - -/* -Ensure the default browser behavior of the `hidden` attribute. -*/ - -[hidden] { - display: none; -} - -[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: 0px; - padding-top: 0.5rem; - padding-right: 0.75rem; - padding-bottom: 0.5rem; - padding-left: 0.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:-ms-input-placeholder, -textarea:-ms-input-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 0.5rem center; - background-repeat: no-repeat; - background-size: 1.5em 1.5em; - padding-right: 2.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact; -} - -[multiple] { - background-image: initial; - background-position: initial; - background-repeat: unset; - background-size: initial; - padding-right: 0.75rem; - -webkit-print-color-adjust: unset; - color-adjust: unset; -} - -[type='checkbox'], -[type='radio'] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding: 0; - -webkit-print-color-adjust: exact; - color-adjust: exact; - display: inline-block; - vertical-align: middle; - background-origin: border-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-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: 0px; -} - -[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 auto -webkit-focus-ring-color; -} - -body { - font-family: Poppins, sans-serif; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: Roboto, sans-serif; -} - -*, -::before, -::after { - --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 / 0.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: ; -} - -.container { - width: 100%; - margin-right: auto; - margin-left: auto; - padding-right: 1rem; - padding-left: 1rem; -} - -@media (min-width: 640px) { - .container { - max-width: 640px; - } -} - -@media (min-width: 768px) { - .container { - max-width: 768px; - } -} - -@media (min-width: 1024px) { - .container { - max-width: 1024px; - } -} - -@media (min-width: 1280px) { - .container { - max-width: 1280px; - } -} - -@media (min-width: 1536px) { - .container { - max-width: 1536px; - } -} - -.size-selector input:checked + label { - --tw-bg-opacity: 1; - background-color: rgb(253 61 87 / var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.color-selector input:checked + label { - --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, 0 0 #0000); - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 61 87 / var(--tw-ring-opacity)); -} - -.input-box { - display: block; - width: 100%; - border-radius: 0.25rem; - border-width: 1px; - --tw-border-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-border-opacity)); - padding-left: 1rem; - padding-right: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.75rem; - font-size: 0.875rem; - line-height: 1.25rem; - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.input-box::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.input-box:focus { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); - --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(0px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} - -.invisible { - visibility: hidden; -} - -.absolute { - position: absolute; -} - -.relative { - position: relative; -} - -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; -} - -.left-4 { - left: 1rem; -} - -.top-3 { - top: 0.75rem; -} - -.right-0 { - right: 0px; -} - -.-top-1 { - top: -0.25rem; -} - -.-right-3 { - right: -0.75rem; -} - -.left-0 { - left: 0px; -} - -.top-full { - top: 100%; -} - -.-left-8 { - left: -2rem; -} - -.top-0 { - top: 0px; -} - -.z-10 { - z-index: 10; -} - -.col-span-1 { - grid-column: span 1 / span 1; -} - -.col-span-2 { - grid-column: span 2 / span 2; -} - -.col-span-3 { - grid-column: span 3 / span 3; -} - -.col-span-9 { - grid-column: span 9 / span 9; -} - -.col-span-8 { - grid-column: span 8 / span 8; -} - -.col-span-4 { - grid-column: span 4 / span 4; -} - -.mx-auto { - margin-left: auto; - margin-right: auto; -} - -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; -} - -.ml-2 { - margin-left: 0.5rem; -} - -.ml-6 { - margin-left: 1.5rem; -} - -.mb-4 { - margin-bottom: 1rem; -} - -.mt-12 { - margin-top: 3rem; -} - -.mb-6 { - margin-bottom: 1.5rem; -} - -.mb-2 { - margin-bottom: 0.5rem; -} - -.mb-1 { - margin-bottom: 0.25rem; -} - -.ml-3 { - margin-left: 0.75rem; -} - -.mr-2 { - margin-right: 0.5rem; -} - -.mt-4 { - margin-top: 1rem; -} - -.mt-6 { - margin-top: 1.5rem; -} - -.mt-1 { - margin-top: 0.25rem; -} - -.mt-2 { - margin-top: 0.5rem; -} - -.mb-3 { - margin-bottom: 0.75rem; -} - -.ml-auto { - margin-left: auto; -} - -.block { - display: block; -} - -.flex { - display: flex; -} - -.table { - display: table; -} - -.grid { - display: grid; -} - -.hidden { - display: none; -} - -.h-5 { - height: 1.25rem; -} - -.h-12 { - height: 3rem; -} - -.h-8 { - height: 2rem; -} - -.h-14 { - height: 3.5rem; -} - -.h-3 { - height: 0.75rem; -} - -.h-6 { - height: 1.5rem; -} - -.h-9 { - height: 2.25rem; -} - -.w-32 { - width: 8rem; -} - -.w-full { - width: 100%; -} - -.w-5 { - width: 1.25rem; -} - -.w-10\/12 { - width: 83.333333%; -} - -.w-12 { - width: 3rem; -} - -.w-9 { - width: 2.25rem; -} - -.w-14 { - width: 3.5rem; -} - -.w-3 { - width: 0.75rem; -} - -.w-1\/2 { - width: 50%; -} - -.w-6 { - width: 1.5rem; -} - -.w-max { - width: -webkit-max-content; - width: -moz-max-content; - width: max-content; -} - -.w-8 { - width: 2rem; -} - -.w-3\/5 { - width: 60%; -} - -.w-40 { - width: 10rem; -} - -.w-44 { - width: 11rem; -} - -.w-10 { - width: 2.5rem; -} - -.w-28 { - width: 7rem; -} - -.w-1\/3 { - width: 33.333333%; -} - -.max-w-xl { - max-width: 36rem; -} - -.max-w-lg { - max-width: 32rem; -} - -.flex-shrink-0 { - flex-shrink: 0; -} - -.flex-grow { - flex-grow: 1; -} - -.table-auto { - table-layout: auto; -} - -.border-collapse { - border-collapse: collapse; -} - -.cursor-pointer { - cursor: pointer; -} - -.cursor-not-allowed { - cursor: not-allowed; -} - -.select-none { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); -} - -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); -} - -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); -} - -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); -} - -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); -} - -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); -} - -.items-start { - align-items: flex-start; -} - -.items-center { - align-items: center; -} - -.items-baseline { - align-items: baseline; -} - -.justify-center { - justify-content: center; -} - -.justify-between { - justify-content: space-between; -} - -.gap-6 { - gap: 1.5rem; -} - -.gap-5 { - gap: 1.25rem; -} - -.gap-3 { - gap: 0.75rem; -} - -.gap-2 { - gap: 0.5rem; -} - -.gap-1 { - gap: 0.25rem; -} - -.gap-4 { - gap: 1rem; -} - -.gap-8 { - gap: 2rem; -} - -.space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1rem * var(--tw-space-x-reverse)); - margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - -.space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); -} - -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} - -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} - -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} - -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} - -.divide-x > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 0; - border-right-width: calc(1px * var(--tw-divide-x-reverse)); - border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); -} - -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; -} - -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-divide-opacity)); -} - -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-divide-opacity)); -} - -.overflow-hidden { - overflow: hidden; -} - -.rounded-full { - border-radius: 9999px; -} - -.rounded-md { - border-radius: 0.375rem; -} - -.rounded-sm { - border-radius: 0.125rem; -} - -.rounded { - border-radius: 0.25rem; -} - -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; -} - -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; -} - -.rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} - -.border { - border-width: 1px; -} - -.border-r-0 { - border-right-width: 0px; -} - -.border-t { - border-top-width: 1px; -} - -.border-b { - border-bottom-width: 1px; -} - -.border-b-2 { - border-bottom-width: 2px; -} - -.border-primary { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); -} - -.border-gray-100 { - --tw-border-opacity: 1; - border-color: rgb(243 244 246 / var(--tw-border-opacity)); -} - -.border-gray-200 { - --tw-border-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-border-opacity)); -} - -.border-gray-300 { - --tw-border-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-border-opacity)); -} - -.border-red-400 { - --tw-border-opacity: 1; - border-color: rgb(248 113 113 / var(--tw-border-opacity)); -} - -.bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} - -.bg-primary { - --tw-bg-opacity: 1; - background-color: rgb(253 61 87 / var(--tw-bg-opacity)); -} - -.bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.bg-black { - --tw-bg-opacity: 1; - background-color: rgb(0 0 0 / var(--tw-bg-opacity)); -} - -.bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgb(30 64 175 / var(--tw-bg-opacity)); -} - -.bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgb(220 38 38 / var(--tw-bg-opacity)); -} - -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgb(248 113 113 / var(--tw-bg-opacity)); -} - -.bg-opacity-40 { - --tw-bg-opacity: 0.4; -} - -.bg-cover { - background-size: cover; -} - -.bg-center { - background-position: center; -} - -.bg-no-repeat { - background-repeat: no-repeat; -} - -.object-contain { - -o-object-fit: contain; - object-fit: contain; -} - -.object-cover { - -o-object-fit: cover; - object-fit: cover; -} - -.p-1 { - padding: 0.25rem; -} - -.p-4 { - padding: 1rem; -} - -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; -} - -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; -} - -.px-8 { - padding-left: 2rem; - padding-right: 2rem; -} - -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; -} - -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; -} - -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; -} - -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; -} - -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; -} - -.px-4 { - padding-left: 1rem; - padding-right: 1rem; -} - -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; -} - -.py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; -} - -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.pl-12 { - padding-left: 3rem; -} - -.pr-3 { - padding-right: 0.75rem; -} - -.pb-16 { - padding-bottom: 4rem; -} - -.pt-4 { - padding-top: 1rem; -} - -.pb-3 { - padding-bottom: 0.75rem; -} - -.pt-16 { - padding-top: 4rem; -} - -.pb-12 { - padding-bottom: 3rem; -} - -.pl-8 { - padding-left: 2rem; -} - -.pt-6 { - padding-top: 1.5rem; -} - -.pb-8 { - padding-bottom: 2rem; -} - -.pb-5 { - padding-bottom: 1.25rem; -} - -.pt-5 { - padding-top: 1.25rem; -} - -.pb-7 { - padding-bottom: 1.75rem; -} - -.pb-6 { - padding-bottom: 1.5rem; -} - -.text-left { - text-align: left; -} - -.text-center { - text-align: center; -} - -.font-roboto { - font-family: Roboto, sans-serif; -} - -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; -} - -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; -} - -.text-xs { - font-size: 0.75rem; - line-height: 1rem; -} - -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} - -.text-6xl { - font-size: 3.75rem; - line-height: 1; -} - -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; -} - -.text-base { - font-size: 1rem; - line-height: 1.5rem; -} - -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; -} - -.font-medium { - font-weight: 500; -} - -.font-semibold { - font-weight: 600; -} - -.uppercase { - text-transform: uppercase; -} - -.capitalize { - text-transform: capitalize; -} - -.leading-3 { - line-height: 0.75rem; -} - -.tracking-wider { - letter-spacing: 0.05em; -} - -.text-gray-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} - -.text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.text-gray-700 { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} - -.text-gray-600 { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.text-gray-200 { - --tw-text-opacity: 1; - color: rgb(229 231 235 / var(--tw-text-opacity)); -} - -.text-gray-800 { - --tw-text-opacity: 1; - color: rgb(31 41 55 / var(--tw-text-opacity)); -} - -.text-gray-500 { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.text-primary { - --tw-text-opacity: 1; - color: rgb(253 61 87 / var(--tw-text-opacity)); -} - -.text-yellow-400 { - --tw-text-opacity: 1; - color: rgb(250 204 21 / var(--tw-text-opacity)); -} - -.text-green-600 { - --tw-text-opacity: 1; - color: rgb(22 163 74 / var(--tw-text-opacity)); -} - -.text-red-600 { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} - -.line-through { - -webkit-text-decoration-line: line-through; - text-decoration-line: line-through; -} - -.placeholder-gray-400::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.placeholder-gray-400:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(156 163 175 / var(--tw-placeholder-opacity)); -} - -.opacity-0 { - opacity: 0; -} - -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgb(0 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); -} - -.shadow-md { - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), - var(--tw-shadow); -} - -.shadow { - --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), - var(--tw-shadow); -} - -.transition { - transition-property: - color, - background-color, - border-color, - fill, - stroke, - opacity, - box-shadow, - transform, - filter, - -webkit-text-decoration-color, - -webkit-backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter; - transition-property: - color, - background-color, - border-color, - text-decoration-color, - fill, - stroke, - opacity, - box-shadow, - transform, - filter, - backdrop-filter, - -webkit-text-decoration-color, - -webkit-backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.duration-300 { - transition-duration: 300ms; -} - -.hover\:bg-transparent:hover { - background-color: transparent; -} - -.hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgb(243 244 246 / var(--tw-bg-opacity)); -} - -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(29 78 216 / var(--tw-bg-opacity)); -} - -.hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgb(239 68 68 / var(--tw-bg-opacity)); -} - -.hover\:text-primary:hover { - --tw-text-opacity: 1; - color: rgb(253 61 87 / var(--tw-text-opacity)); -} - -.hover\:text-white:hover { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.hover\:text-gray-500:hover { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.hover\:text-gray-900:hover { - --tw-text-opacity: 1; - color: rgb(17 24 39 / var(--tw-text-opacity)); -} - -.focus\:border-primary:focus { - --tw-border-opacity: 1; - border-color: rgb(253 61 87 / var(--tw-border-opacity)); -} - -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; -} - -.focus\:ring-0:focus { - --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(0px + var(--tw-ring-offset-width)) - var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} - -.focus\:ring-primary:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 61 87 / var(--tw-ring-opacity)); -} - -.group:hover .group-hover\:visible { - visibility: visible; -} - -.group:hover .group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; -} - -.group:hover .group-hover\:opacity-100 { - opacity: 1; -} - -@media (min-width: 768px) { - .md\:block { - display: block; - } - - .md\:flex { - display: flex; - } - - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .md\:gap-8 { - gap: 2rem; - } - - .md\:pl-12 { - padding-left: 3rem; - } -} diff --git a/examples/server-islands/public/assets/images/avatar.png b/examples/server-islands/public/assets/images/avatar.png deleted file mode 100644 index 4e8512382cdd..000000000000 Binary files a/examples/server-islands/public/assets/images/avatar.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/banner-bg.jpg b/examples/server-islands/public/assets/images/banner-bg.jpg deleted file mode 100644 index 0ce119a45584..000000000000 Binary files a/examples/server-islands/public/assets/images/banner-bg.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-1.jpg b/examples/server-islands/public/assets/images/category/category-1.jpg deleted file mode 100644 index e45bf4ae01ec..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-1.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-2.jpg b/examples/server-islands/public/assets/images/category/category-2.jpg deleted file mode 100644 index 56249e6a3f7d..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-2.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-3.jpg b/examples/server-islands/public/assets/images/category/category-3.jpg deleted file mode 100644 index 5ef6659465e9..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-3.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-4.jpg b/examples/server-islands/public/assets/images/category/category-4.jpg deleted file mode 100644 index b12e648303c9..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-4.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-5.jpg b/examples/server-islands/public/assets/images/category/category-5.jpg deleted file mode 100644 index f8e804f8c066..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-5.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/category/category-6.jpg b/examples/server-islands/public/assets/images/category/category-6.jpg deleted file mode 100644 index e1991d35cbbd..000000000000 Binary files a/examples/server-islands/public/assets/images/category/category-6.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/complete.png b/examples/server-islands/public/assets/images/complete.png deleted file mode 100644 index ea3fe9681e09..000000000000 Binary files a/examples/server-islands/public/assets/images/complete.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/about.txt b/examples/server-islands/public/assets/images/favicon/about.txt deleted file mode 100644 index 7229927f7072..000000000000 --- a/examples/server-islands/public/assets/images/favicon/about.txt +++ /dev/null @@ -1,6 +0,0 @@ -This favicon was generated using the following font: - -- Font Title: Roboto -- Font Author: Copyright 2011 Google Inc. All Rights Reserved. -- Font Source: http://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf -- Font License: Apache License, version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)) diff --git a/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png b/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png deleted file mode 100644 index 6809c797894d..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/android-chrome-192x192.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png b/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png deleted file mode 100644 index 27d7db79c6a0..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/android-chrome-512x512.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png b/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png deleted file mode 100644 index ff578ae53911..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/apple-touch-icon.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/favicon-16x16.png b/examples/server-islands/public/assets/images/favicon/favicon-16x16.png deleted file mode 100644 index 470a85966941..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/favicon-16x16.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/favicon-32x32.png b/examples/server-islands/public/assets/images/favicon/favicon-32x32.png deleted file mode 100644 index 56afd053d926..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/favicon-32x32.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/favicon.ico b/examples/server-islands/public/assets/images/favicon/favicon.ico deleted file mode 100644 index 77bb5fa1839f..000000000000 Binary files a/examples/server-islands/public/assets/images/favicon/favicon.ico and /dev/null differ diff --git a/examples/server-islands/public/assets/images/favicon/site.webmanifest b/examples/server-islands/public/assets/images/favicon/site.webmanifest deleted file mode 100644 index 52a2fe3f611f..000000000000 --- a/examples/server-islands/public/assets/images/favicon/site.webmanifest +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "", - "short_name": "", - "icons": [ - { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, - { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/examples/server-islands/public/assets/images/icons/bed-2.svg b/examples/server-islands/public/assets/images/icons/bed-2.svg deleted file mode 100644 index 09b790da78db..000000000000 --- a/examples/server-islands/public/assets/images/icons/bed-2.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/bed.svg b/examples/server-islands/public/assets/images/icons/bed.svg deleted file mode 100644 index d66adb50136e..000000000000 --- a/examples/server-islands/public/assets/images/icons/bed.svg +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/examples/server-islands/public/assets/images/icons/delivery-van.svg b/examples/server-islands/public/assets/images/icons/delivery-van.svg deleted file mode 100644 index a6c08a447c8c..000000000000 --- a/examples/server-islands/public/assets/images/icons/delivery-van.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/money-back.svg b/examples/server-islands/public/assets/images/icons/money-back.svg deleted file mode 100644 index 8722d553853c..000000000000 --- a/examples/server-islands/public/assets/images/icons/money-back.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/office.svg b/examples/server-islands/public/assets/images/icons/office.svg deleted file mode 100644 index 27451293b5d7..000000000000 --- a/examples/server-islands/public/assets/images/icons/office.svg +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg b/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg deleted file mode 100644 index 2f014997946d..000000000000 --- a/examples/server-islands/public/assets/images/icons/outdoor-cafe.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/phone.svg b/examples/server-islands/public/assets/images/icons/phone.svg deleted file mode 100644 index 1ab3dafd2160..000000000000 --- a/examples/server-islands/public/assets/images/icons/phone.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/restaurant.svg b/examples/server-islands/public/assets/images/icons/restaurant.svg deleted file mode 100644 index 859ca4457609..000000000000 --- a/examples/server-islands/public/assets/images/icons/restaurant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/examples/server-islands/public/assets/images/icons/service-hours.svg b/examples/server-islands/public/assets/images/icons/service-hours.svg deleted file mode 100644 index 311820ec5c45..000000000000 --- a/examples/server-islands/public/assets/images/icons/service-hours.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/sofa.svg b/examples/server-islands/public/assets/images/icons/sofa.svg deleted file mode 100644 index 61608eb42e03..000000000000 --- a/examples/server-islands/public/assets/images/icons/sofa.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/server-islands/public/assets/images/icons/terrace.svg b/examples/server-islands/public/assets/images/icons/terrace.svg deleted file mode 100644 index 40cd91ff4fc9..000000000000 --- a/examples/server-islands/public/assets/images/icons/terrace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/examples/server-islands/public/assets/images/logo.svg b/examples/server-islands/public/assets/images/logo.svg deleted file mode 100644 index 4a698caaad39..000000000000 --- a/examples/server-islands/public/assets/images/logo.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/examples/server-islands/public/assets/images/methods.png b/examples/server-islands/public/assets/images/methods.png deleted file mode 100644 index 6ab2499aa3cb..000000000000 Binary files a/examples/server-islands/public/assets/images/methods.png and /dev/null differ diff --git a/examples/server-islands/public/assets/images/offer.jpg b/examples/server-islands/public/assets/images/offer.jpg deleted file mode 100644 index 1b735cdb8801..000000000000 Binary files a/examples/server-islands/public/assets/images/offer.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product1.jpg b/examples/server-islands/public/assets/images/products/product1.jpg deleted file mode 100644 index 523c18d1ce82..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product1.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product10.jpg b/examples/server-islands/public/assets/images/products/product10.jpg deleted file mode 100644 index 234c4b1bacf0..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product10.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product11.jpg b/examples/server-islands/public/assets/images/products/product11.jpg deleted file mode 100644 index 8f23255cf6fb..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product11.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product12.jpg b/examples/server-islands/public/assets/images/products/product12.jpg deleted file mode 100644 index f1f32d6ddf4b..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product12.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product2.jpg b/examples/server-islands/public/assets/images/products/product2.jpg deleted file mode 100644 index ab2fc5d8b59d..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product2.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product3.jpg b/examples/server-islands/public/assets/images/products/product3.jpg deleted file mode 100644 index dd2e27bc4d5a..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product3.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product4.jpg b/examples/server-islands/public/assets/images/products/product4.jpg deleted file mode 100644 index 4e31e49b8008..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product4.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product5.jpg b/examples/server-islands/public/assets/images/products/product5.jpg deleted file mode 100644 index e950c71fd260..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product5.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product6.jpg b/examples/server-islands/public/assets/images/products/product6.jpg deleted file mode 100644 index fb68277067b4..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product6.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product7.jpg b/examples/server-islands/public/assets/images/products/product7.jpg deleted file mode 100644 index e0c355a9bb3d..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product7.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product8.jpg b/examples/server-islands/public/assets/images/products/product8.jpg deleted file mode 100644 index bca29d380cf1..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product8.jpg and /dev/null differ diff --git a/examples/server-islands/public/assets/images/products/product9.jpg b/examples/server-islands/public/assets/images/products/product9.jpg deleted file mode 100644 index 7e4558371a70..000000000000 Binary files a/examples/server-islands/public/assets/images/products/product9.jpg and /dev/null differ diff --git a/examples/server-islands/src/base.css b/examples/server-islands/src/base.css deleted file mode 100644 index d0ae7cae47ae..000000000000 --- a/examples/server-islands/src/base.css +++ /dev/null @@ -1,32 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); - -@tailwind base; -@tailwind components; -@tailwind utilities; - -@layer base { - body { - @apply font-poppins; - } - h1, - h2, - h3, - h4, - h5, - h6 { - @apply font-roboto; - } -} - -@layer components { - .size-selector input:checked + label { - @apply bg-primary text-white; - } - .color-selector input:checked + label { - @apply ring-2 ring-primary; - } - - .input-box { - @apply block w-full border border-gray-300 px-4 py-3 text-gray-600 text-sm rounded placeholder-gray-400 focus:border-primary focus:ring-0; - } -} diff --git a/examples/server-islands/src/cart.ts b/examples/server-islands/src/cart.ts deleted file mode 100644 index 355074a38c3b..000000000000 --- a/examples/server-islands/src/cart.ts +++ /dev/null @@ -1,20 +0,0 @@ - -const channel = new MessageChannel(); - -function onNewCartItem(cb: (m: any) => void) { - let onMessage = (ev: MessageEvent) => { - cb(ev.data); - }; - channel.port2.addEventListener('message', onMessage); - channel.port2.start(); - return () => channel.port2.removeEventListener('message', onMessage); -} - -function addToCart(item: any) { - channel.port1.postMessage(item); -} - -export { - onNewCartItem, - addToCart -} diff --git a/examples/server-islands/src/components/AddToCart.tsx b/examples/server-islands/src/components/AddToCart.tsx deleted file mode 100644 index 5fcfc4eaa172..000000000000 --- a/examples/server-islands/src/components/AddToCart.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { addToCart } from '../cart'; - -export default function({ small }) { - function onClick(ev: Event) { - ev.preventDefault(); - let item = { name: 'Sofa' }; - addToCart(item); - - } - - if(small) { - return ( - Add - to cart - ) - } - - return ( - - Add to cart - - ) -} diff --git a/examples/server-islands/src/components/CartCount.tsx b/examples/server-islands/src/components/CartCount.tsx deleted file mode 100644 index 5c3d3e3928d3..000000000000 --- a/examples/server-islands/src/components/CartCount.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { useEffect, useState } from 'react'; -import { onNewCartItem } from '../cart'; - -export default function({ count: initialCount }) { - const [count, setCount] = useState(initialCount); - useEffect(() => { - return onNewCartItem(() => setCount(count + 1)); - }, [count]); - - return ( -
-{count}
- ); -} diff --git a/examples/server-islands/src/components/PersonalBar.astro b/examples/server-islands/src/components/PersonalBar.astro deleted file mode 100644 index afff16d607cd..000000000000 --- a/examples/server-islands/src/components/PersonalBar.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -import CartCount from './CartCount'; - -const { placeholder } = Astro.props; -let wishlist = 0; -let cart = 0; - -if (!placeholder) { - await new Promise((resolve) => setTimeout(resolve, 3000)); -} ---- - - -
- -
-
Wishlist
-
- {wishlist} -
-
- -
- -
-
Cart
- -
- -
- -
-
Account
-
diff --git a/examples/server-islands/src/pages/index.astro b/examples/server-islands/src/pages/index.astro deleted file mode 100644 index b12fb0c5e73e..000000000000 --- a/examples/server-islands/src/pages/index.astro +++ /dev/null @@ -1,678 +0,0 @@ ---- -import '../base.css'; -import AddToCart from '../components/AddToCart'; -import PersonalBar from '../components/PersonalBar.astro'; -import '@fortawesome/fontawesome-free/css/all.min.css'; ---- - - - - - - - - Product - Ecommerce Tailwind - - - - - - - - - - -
-
- - Logo - - -
- - - - - -
- -
- - - -
-
-
- - - - - - - -
- - - - - - -

Product

-
- - - -
-
- product -
- product2 - product2 - product2 - product2 - product2 -
-
- -
-

Italian L Shape Sofa

-
-
- - - - - -
-
(150 Reviews)
-
-
-

- Availability: - In Stock -

-

- Brand: - Apex -

-

- Category: - Sofa -

-

- SKU: - BE45VGRT -

-
-
-

$45.00

-

$55.00

-
- -

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos eius eum reprehenderit dolore - vel mollitia optio consequatur hic asperiores inventore suscipit, velit consequuntur, - voluptate doloremque iure necessitatibus adipisci magnam porro. -

- -
-

Size

-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- -
-

Color

-
-
- - -
-
- - -
-
- - -
-
-
- -
-

Quantity

-
-
- - -
-
4
-
- + -
-
-
- - - - -
-
- - - -
-

- Product details -

-
-
-

- Lorem, ipsum dolor sit amet consectetur adipisicing elit. Tenetur necessitatibus - deleniti natus dolore cum maiores suscipit optio itaque voluptatibus veritatis tempora - iste facilis non aut sapiente dolor quisquam, ex ab. -

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorum, quae accusantium - voluptatem blanditiis sapiente voluptatum. Autem ab, dolorum assumenda earum veniam eius - illo fugiat possimus illum dolor totam, ducimus excepturi. -

-

- Lorem ipsum dolor sit amet consectetur adipisicing elit. Error quia modi ut expedita! - Iure molestiae labore cumque nobis quasi fuga, quibusdam rem? Temporibus consectetur - corrupti rerum veritatis numquam labore amet. -

-
- - - - - - - - - - - - - - -
ColorBlank, Brown, Red
MaterialLatex
Weight55kg
-
-
- - - -
-

Related products

-
-
-
- product 1 - -
-
- -

- Guyer Chair -

-
-
-

$45.00

-

$55.90

-
-
-
- - - - - -
-
(150)
-
-
- -
-
-
- product 1 - -
-
- -

- Bed King Size -

-
-
-

$45.00

-

$55.90

-
-
-
- - - - - -
-
(150)
-
-
- -
-
-
- product 1 - -
-
- -

- Couple Sofa -

-
-
-

$45.00

-

$55.90

-
-
-
- - - - - -
-
(150)
-
-
- -
-
-
- product 1 - -
-
- -

- Mattrass X -

-
-
-

$45.00

-

$55.90

-
-
-
- - - - - -
-
(150)
-
-
- -
-
-
- - - - - - - -
-
-

© TailCommerce - All Right Reserved

-
- methods -
-
-
- - - diff --git a/examples/server-islands/tailwind.config.cjs b/examples/server-islands/tailwind.config.cjs deleted file mode 100644 index 4076218af7f3..000000000000 --- a/examples/server-islands/tailwind.config.cjs +++ /dev/null @@ -1,27 +0,0 @@ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - screen: { - sm: "576px", - md: "768px", - lg: "992px", - xl: "1200px", - }, - container: { - center: true, - padding: "1rem", - }, - extend: { - fontFamily: { - poppins: ["Poppins", "sans-serif"], - roboto: ["Roboto", "sans-serif"], - }, - colors: { - primary: "#fd3d57", - }, - }, - }, - plugins: [ - require("@tailwindcss/forms"), - ], -}; diff --git a/examples/with-markdown-plugins/.gitignore b/examples/ssr/.gitignore similarity index 100% rename from examples/with-markdown-plugins/.gitignore rename to examples/ssr/.gitignore diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 9b4181f4c6b3..f4e6addb57ba 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,9 +12,9 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "@astrojs/node": "^8.3.3", - "@astrojs/svelte": "^5.7.0", - "astro": "^4.14.5", - "svelte": "^4.2.18" + "@astrojs/node": "^8.3.4", + "@astrojs/svelte": "^5.7.2", + "astro": "^4.16.2", + "svelte": "^4.2.19" } } diff --git a/examples/with-markdown-shiki/.gitignore b/examples/starlog/.gitignore similarity index 100% rename from examples/with-markdown-shiki/.gitignore rename to examples/starlog/.gitignore diff --git a/examples/starlog/package.json b/examples/starlog/package.json index fc2aa157d246..0df145bca34a 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -10,8 +10,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.14.5", - "sass": "^1.77.8", + "astro": "^4.16.2", + "sass": "^1.79.4", "sharp": "^0.33.3" } } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index d55b958d5d3c..1a1bb089fcc7 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -15,6 +15,6 @@ "./app": "./dist/app.js" }, "devDependencies": { - "astro": "^4.14.5" + "astro": "^4.16.2" } } diff --git a/examples/view-transitions/README.md b/examples/view-transitions/README.md deleted file mode 100644 index 255c73187c06..000000000000 --- a/examples/view-transitions/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Astro Movies View Transitions Demo - -### 👉🏽 [Live Demo](https://astro-movies.pages.dev/) - -![Screenshot](./screenshot.png) - -## 🚀 Getting Started - -1. Clone this repository and install dependencies with `npm install`. -2. Start the project locally with npm run dev, or deploy it to your favorite server. -3. Have fun! ✨ - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :--------------------- | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:3000` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Check out [Astro's documentation](https://docs.astro.build) or jump into their [Discord server](https://astro.build/chat). - -You can also reach out to [Maxi on Twitter](https://twitter.com/charca). diff --git a/examples/view-transitions/astro.config.mjs b/examples/view-transitions/astro.config.mjs deleted file mode 100644 index 2ec6d614a88c..000000000000 --- a/examples/view-transitions/astro.config.mjs +++ /dev/null @@ -1,15 +0,0 @@ -import { defineConfig } from 'astro/config'; -import tailwind from '@astrojs/tailwind'; -import nodejs from '@astrojs/node'; - -// https://astro.build/config -export default defineConfig({ - integrations: [tailwind()], - output: 'server', - adapter: nodejs({ mode: 'standalone' }), - vite: { - define: { - 'process.env.TMDB_API_KEY': JSON.stringify(process.env.TMDB_API_KEY), - }, - }, -}); diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json deleted file mode 100644 index 184fff9dc856..000000000000 --- a/examples/view-transitions/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "@example/view-transitions", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "devDependencies": { - "@astrojs/tailwind": "^5.1.0", - "@astrojs/node": "^8.3.3", - "astro": "^4.14.5" - } -} diff --git a/examples/view-transitions/public/favicon.ico b/examples/view-transitions/public/favicon.ico deleted file mode 100644 index 578ad458b890..000000000000 Binary files a/examples/view-transitions/public/favicon.ico and /dev/null differ diff --git a/examples/view-transitions/src/components/Footer.astro b/examples/view-transitions/src/components/Footer.astro deleted file mode 100644 index d9f29219bd0f..000000000000 --- a/examples/view-transitions/src/components/Footer.astro +++ /dev/null @@ -1,17 +0,0 @@ - diff --git a/examples/view-transitions/src/components/MovieCard.astro b/examples/view-transitions/src/components/MovieCard.astro deleted file mode 100644 index c2b3aa4b1275..000000000000 --- a/examples/view-transitions/src/components/MovieCard.astro +++ /dev/null @@ -1,31 +0,0 @@ ---- -const { movie } = Astro.props; ---- - -
- - {`${movie.title} - -
- {movie.title} -
- - {movie.vote_average} - | - {movie.release_date} -
-
{movie.genres}
-
-
diff --git a/examples/view-transitions/src/components/MovieDetails.astro b/examples/view-transitions/src/components/MovieDetails.astro deleted file mode 100644 index 32af400900eb..000000000000 --- a/examples/view-transitions/src/components/MovieDetails.astro +++ /dev/null @@ -1,125 +0,0 @@ ---- -const { data } = Astro.props; - -const movie = { - ...data, - poster_path: data.poster_path - ? 'https://image.tmdb.org/t/p/w500/' + data.poster_path - : 'https://via.placeholder.com/500x750', - vote_average: (data.vote_average * 10).toFixed(2) + '%', - release_date: new Date(data.release_date).toLocaleDateString('en-us', { - year: 'numeric', - month: 'long', - day: 'numeric', - }), - genres: data.genres.map((g: any) => g.name).join(', '), - crew: data.credits.crew.slice(0, 3), - cast: data.credits.cast.slice(0, 5).map((c: any) => ({ - ...c, - profile_path: c.profile_path - ? 'https://image.tmdb.org/t/p/w300/' + c.profile_path - : 'https://via.placeholder.com/300x450', - })), - images: data.images.backdrops.slice(0, 9), -}; ---- - -
-
-
- {`${movie.title} -
-
-

{movie.title}

-
- - {movie.vote_average} - | - {movie.release_date} - | - {movie.genres} -
- -

- {movie.overview} -

- -
-

Featured Crew

-
- { - movie.crew.map((crew: any) => ( -
-
{crew.name}
-
{crew.job}
-
- )) - } -
-
-
-
-
- - -
-
-

Cast

-
- { - movie.cast.map((cast: any) => ( -
- - {cast.name} - -
- {cast.name} -
{cast.character}
-
-
- )) - } -
-
-
- - -
-
-

Images

-
- { - movie.images.map((image: any) => ( -
- - {movie.name} - -
- )) - } -
-
-
- diff --git a/examples/view-transitions/src/components/MovieList.astro b/examples/view-transitions/src/components/MovieList.astro deleted file mode 100644 index a6bf53453abf..000000000000 --- a/examples/view-transitions/src/components/MovieList.astro +++ /dev/null @@ -1,15 +0,0 @@ ---- -import MovieCard from './MovieCard.astro'; -import movies from '../popular-movies.json'; -const popularMovies = movies.results; ---- - -
- - -
diff --git a/examples/view-transitions/src/components/Nav.astro b/examples/view-transitions/src/components/Nav.astro deleted file mode 100644 index 4d11be24e6ca..000000000000 --- a/examples/view-transitions/src/components/Nav.astro +++ /dev/null @@ -1,16 +0,0 @@ - diff --git a/examples/view-transitions/src/content/config.ts b/examples/view-transitions/src/content/config.ts deleted file mode 100644 index 40e22b781b8f..000000000000 --- a/examples/view-transitions/src/content/config.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { z, defineCollection } from 'astro:content'; - -const movies = defineCollection({ - type: 'data', - schema: z.object({ - data: z.any(), - }), -}); - -// Expose your defined collection to Astro -// with the `collections` export -export const collections = { movies }; diff --git a/examples/view-transitions/src/content/movies/1008042.json b/examples/view-transitions/src/content/movies/1008042.json deleted file mode 100644 index d8479344b520..000000000000 --- a/examples/view-transitions/src/content/movies/1008042.json +++ /dev/null @@ -1,4056 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "belongs_to_collection": { - "id": 1162328, - "name": "Talk to Me Collection", - "poster_path": "/oNG1XQpMTbAuItS10y7pTSURwyG.jpg", - "backdrop_path": "/brtSrbFFfYB9liimgRzBb0JHaaz.jpg" - }, - "budget": 4500000, - "genres": [ - { "id": 27, "name": "Horror" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://umbrellaent.com.au/movie/talk-to-me", - "id": 1008042, - "imdb_id": "tt10638522", - "original_language": "en", - "original_title": "Talk to Me", - "overview": "When a group of friends discover how to conjure spirits using an embalmed hand, they become hooked on the new thrill, until one of them goes too far and unleashes terrifying supernatural forces.", - "popularity": 2292.177, - "poster_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "production_companies": [ - { - "id": 32301, - "logo_path": "/5VG9QRUCSDez359VNqcTmOLOH3C.png", - "name": "Causeway Films", - "origin_country": "AU" - }, - { - "id": 110175, - "logo_path": "/eOGU7DcaBNq1KemTPkQuVWMX8L2.png", - "name": "Metrol Technology", - "origin_country": "GB" - }, - { - "id": 7584, - "logo_path": "/eGkfvvyf4fJTvBUR1xt1669IPA3.png", - "name": "Screen Australia", - "origin_country": "AU" - }, - { - "id": 2806, - "logo_path": "/vxOhCbpsRBh10m6LZ3HyImTYpPY.png", - "name": "South Australian Film Corporation", - "origin_country": "AU" - }, - { - "id": 61922, - "logo_path": "/aGPysvtFfH8d8UjekpZD3GT9m7k.png", - "name": "Bankside Films", - "origin_country": "GB" - }, - { - "id": 5056, - "logo_path": "/583ITs4w9sK31FnJwKiRwapTpzb.png", - "name": "Head Gear Films", - "origin_country": "GB" - } - ], - "production_countries": [ - { "iso_3166_1": "AU", "name": "Australia" }, - { "iso_3166_1": "GB", "name": "United Kingdom" } - ], - "release_date": "2023-07-26", - "revenue": 68859794, - "runtime": 95, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "You call. They'll answer.", - "title": "Talk to Me", - "video": false, - "vote_average": 7.2, - "vote_count": 693, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 3115932, - "known_for_department": "Acting", - "name": "Sophie Wilde", - "original_name": "Sophie Wilde", - "popularity": 18.793, - "profile_path": "/3ImqawPfIsu95THFeCYGQw2500H.jpg", - "cast_id": 1, - "character": "Mia", - "credit_id": "62ea87f76d9fe8005eeda022", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2644232, - "known_for_department": "Acting", - "name": "Alexandra Jensen", - "original_name": "Alexandra Jensen", - "popularity": 134.253, - "profile_path": "/jzY7CkJt40N3eYV3bKsRZq4DrjU.jpg", - "cast_id": 4, - "character": "Jade", - "credit_id": "62ea882bf1b571005e2c746f", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 3047804, - "known_for_department": "Acting", - "name": "Joe Bird", - "original_name": "Joe Bird", - "popularity": 64.348, - "profile_path": "/nhkPLaVaDFVuI1oFRdJcgs95pyK.jpg", - "cast_id": 3, - "character": "Riley", - "credit_id": "62ea8816091e62005d2c11e6", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 1822223, - "known_for_department": "Acting", - "name": "Otis Dhanji", - "original_name": "Otis Dhanji", - "popularity": 23.437, - "profile_path": "/n0Ooc4r6rcGMqpnn9haSRX2lR2m.jpg", - "cast_id": 5, - "character": "Daniel", - "credit_id": "62ea88396d9fe80059760905", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 502, - "known_for_department": "Acting", - "name": "Miranda Otto", - "original_name": "Miranda Otto", - "popularity": 20.366, - "profile_path": "/szME1IBVTLgiKrO5D5wvOGnvUDW.jpg", - "cast_id": 2, - "character": "Sue", - "credit_id": "62ea88031e64890060651138", - "order": 4 - }, - { - "adult": false, - "gender": 3, - "id": 2659518, - "known_for_department": "Acting", - "name": "Zoe Terakes", - "original_name": "Zoe Terakes", - "popularity": 19.963, - "profile_path": "/d76CY7JMI2RuxFWwrrNHXRratJf.jpg", - "cast_id": 8, - "character": "Hayley", - "credit_id": "62ea888425cd850060e71c77", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 2467788, - "known_for_department": "Acting", - "name": "Chris Alosio", - "original_name": "Chris Alosio", - "popularity": 33.14, - "profile_path": "/abFg3zNpz6l8zhgt8ESlZvVX8Uh.jpg", - "cast_id": 9, - "character": "Joss", - "credit_id": "62ea8895f1b571005957cd48", - "order": 6 - }, - { - "adult": false, - "gender": 0, - "id": 213070, - "known_for_department": "Acting", - "name": "Marcus Johnson", - "original_name": "Marcus Johnson", - "popularity": 6.522, - "profile_path": "/sHUZnN8YjswLgftgDi1GzlWrcJJ.jpg", - "cast_id": 6, - "character": "Max", - "credit_id": "62ea88508566d2006276b404", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 3281952, - "known_for_department": "Acting", - "name": "Alexandria Steffensen", - "original_name": "Alexandria Steffensen", - "popularity": 3.266, - "profile_path": "/nB2m6B2JeyXRBTcNJQSbhCtyJ8a.jpg", - "cast_id": 7, - "character": "Rhea", - "credit_id": "62ea8873fc5f06006107e8fb", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 2131239, - "known_for_department": "Acting", - "name": "Ari McCarthy", - "original_name": "Ari McCarthy", - "popularity": 7.721, - "profile_path": "/uF9qARjYzSHVzO8VIdv0y6AJvhn.jpg", - "cast_id": 10, - "character": "Cole", - "credit_id": "62ea88af1e6489005dc0b939", - "order": 9 - }, - { - "adult": false, - "gender": 0, - "id": 3648542, - "known_for_department": "Acting", - "name": "Sunny Johnson", - "original_name": "Sunny Johnson", - "popularity": 1.384, - "profile_path": "/blL2Ox8DiPlU5x0lDrUEtOPHZa7.jpg", - "cast_id": 11, - "character": "Duckett", - "credit_id": "62ea88cd1bf266005da4c82b", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3648543, - "known_for_department": "Acting", - "name": "James Oliver", - "original_name": "James Oliver", - "popularity": 0.6, - "profile_path": null, - "cast_id": 12, - "character": "James", - "credit_id": "62ea88df1bf26600602ee2ab", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 1734185, - "known_for_department": "Acting", - "name": "Cass Cumerford", - "original_name": "Cass Cumerford", - "popularity": 0.676, - "profile_path": "/booCg51LxJ4KFRluGZhRZRSA5j1.jpg", - "cast_id": 212, - "character": "Quain / Quain Spirit (voice)", - "credit_id": "64edc0755258ae012ca6bb49", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 3648546, - "known_for_department": "Acting", - "name": "Jett Gazley", - "original_name": "Jett Gazley", - "popularity": 1.4, - "profile_path": "/n8F5sTJyxXIooTrKa43Z0Cu3olE.jpg", - "cast_id": 14, - "character": "Alex Varolli", - "credit_id": "62ea892325cd85005802a15c", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 3648547, - "known_for_department": "Acting", - "name": "Kitt Erhart-Bruce", - "original_name": "Kitt Erhart-Bruce", - "popularity": 0.6, - "profile_path": null, - "cast_id": 15, - "character": "Peck", - "credit_id": "62ea8935091e62005ae4a99c", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 3648548, - "known_for_department": "Acting", - "name": "Hamish Phillips", - "original_name": "Hamish Phillips", - "popularity": 0.6, - "profile_path": null, - "cast_id": 16, - "character": "Tyson", - "credit_id": "62ea8952f1b571005957cd84", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 2786562, - "known_for_department": "Acting", - "name": "Kidaan Zelleke", - "original_name": "Kidaan Zelleke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 17, - "character": "Aunty Lee", - "credit_id": "62ea8968f1b571005e2c74d6", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 3648550, - "known_for_department": "Acting", - "name": "Sarah Brokensha", - "original_name": "Sarah Brokensha", - "popularity": 0.6, - "profile_path": null, - "cast_id": 18, - "character": "Fiona", - "credit_id": "62ea897dfc5f060059c4b44c", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 3648551, - "known_for_department": "Acting", - "name": "Jayden Davison", - "original_name": "Jayden Davison", - "popularity": 0.6, - "profile_path": null, - "cast_id": 19, - "character": "Jayden", - "credit_id": "62ea898b1e6489005dc0b997", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 1229579, - "known_for_department": "Acting", - "name": "Jodie Dry", - "original_name": "Jodie Dry", - "popularity": 0.749, - "profile_path": null, - "cast_id": 20, - "character": "Mrs. Falk", - "credit_id": "62ea899caede5900617e6cdf", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 3648553, - "known_for_department": "Acting", - "name": "Frances Cassar", - "original_name": "Frances Cassar", - "popularity": 0.6, - "profile_path": null, - "cast_id": 24, - "character": "Olmen", - "credit_id": "62ea89e9f1b57100613566b3", - "order": 20 - }, - { - "adult": false, - "gender": 1, - "id": 152545, - "known_for_department": "Acting", - "name": "Kelly Butler", - "original_name": "Kelly Butler", - "popularity": 2.198, - "profile_path": null, - "cast_id": 152, - "character": "Olmen Spirit (voice)", - "credit_id": "64c5846041aac40fb547e9ad", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4187104, - "known_for_department": "Acting", - "name": "Ava Stenta", - "original_name": "Ava Stenta", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Little Girl Audrey", - "credit_id": "64c5850eeec5b500e23bbe69", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 1530759, - "known_for_department": "Acting", - "name": "Harli Ames", - "original_name": "Harli Ames", - "popularity": 4.364, - "profile_path": "/gNT5ghKlvVQkjp82d3GMMyhRcBj.jpg", - "cast_id": 25, - "character": "The Sad Man", - "credit_id": "62ea8a038566d2006276b4b9", - "order": 23 - }, - { - "adult": false, - "gender": 1, - "id": 93114, - "known_for_department": "Acting", - "name": "Leeanna Walsman", - "original_name": "Leeanna Walsman", - "popularity": 3.961, - "profile_path": "/necrzRUdJCCYml8c90sEOXBsr0a.jpg", - "cast_id": 153, - "character": "Elizabeth Spirit (voice)", - "credit_id": "64c5847d63a695012040ae56", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 3648554, - "known_for_department": "Acting", - "name": "Kerry Reid", - "original_name": "Kerry Reid", - "popularity": 0.6, - "profile_path": null, - "cast_id": 26, - "character": "Hungry Woman", - "credit_id": "62ea8a1a091e62005d2c12c4", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 2649831, - "known_for_department": "Acting", - "name": "Robin Northover", - "original_name": "Robin Northover", - "popularity": 0.64, - "profile_path": null, - "cast_id": 27, - "character": "Eerie Man", - "credit_id": "62ea8a2cfc5f060059c4b492", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 12210, - "known_for_department": "Acting", - "name": "Jacek Koman", - "original_name": "Jacek Koman", - "popularity": 8.791, - "profile_path": "/fajWa6UPn9eLne6TjT8zs4VOd7c.jpg", - "cast_id": 157, - "character": "Burke Spirit (voice)", - "credit_id": "64c585219b6e47013958fb34", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4187087, - "known_for_department": "Acting", - "name": "Helene Philippou", - "original_name": "Helene Philippou", - "popularity": 0.6, - "profile_path": null, - "cast_id": 140, - "character": "Possessed Girl on Phone", - "credit_id": "64c58297eec5b500ad020a4f", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 3879249, - "known_for_department": "Acting", - "name": "Jude Turner", - "original_name": "Jude Turner", - "popularity": 0.676, - "profile_path": "/8WiQxE3ti0lQfWFp5tyf4Clqupk.jpg", - "cast_id": 141, - "character": "Possessed Boy on Phone", - "credit_id": "64c582d363e6fb0138d98c08", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 4187089, - "known_for_department": "Acting", - "name": "Zac Scott", - "original_name": "Zac Scott", - "popularity": 0.6, - "profile_path": null, - "cast_id": 142, - "character": "Teen at First Possession Party", - "credit_id": "64c582f663aad2020d091b91", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 2095155, - "known_for_department": "Acting", - "name": "Jess Kuss", - "original_name": "Jess Kuss", - "popularity": 1.105, - "profile_path": "/9iDbOxSEwaGSrTFYYztDNibKMTD.jpg", - "cast_id": 143, - "character": "Teen at First Possession Party", - "credit_id": "64c5835063aad2020ec34428", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2807388, - "known_for_department": "Acting", - "name": "David Roberts", - "original_name": "David Roberts", - "popularity": 1.38, - "profile_path": "/AdaroIcOqABtC1xcR9p0ENVHvB1.jpg", - "cast_id": 144, - "character": "Teen at First Possession Party", - "credit_id": "64c583a295ce2400e410dd10", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 4187093, - "known_for_department": "Acting", - "name": "Demi Van Kasteren", - "original_name": "Demi Van Kasteren", - "popularity": 0.6, - "profile_path": "/rnNoNwrTNvOKs71nePwKpwVAWA3.jpg", - "cast_id": 145, - "character": "Teen at First Possession Party", - "credit_id": "64c583b063e6fb00acdbecb0", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4187095, - "known_for_department": "Acting", - "name": "Pia Gillings", - "original_name": "Pia Gillings", - "popularity": 0.6, - "profile_path": null, - "cast_id": 146, - "character": "Teen at First Possession Party", - "credit_id": "64c583bf63e6fb00acdbecbd", - "order": 34 - }, - { - "adult": false, - "gender": 0, - "id": 3648552, - "known_for_department": "Acting", - "name": "Oscar Wangel", - "original_name": "Oscar Wangel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 21, - "character": "Teen at First Possession Party", - "credit_id": "62ea89b0aede590059ec4201", - "order": 35 - }, - { - "adult": false, - "gender": 0, - "id": 4187097, - "known_for_department": "Acting", - "name": "Courtlan Gordan", - "original_name": "Courtlan Gordan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 147, - "character": "Teen at First Possession Party", - "credit_id": "64c583f595ce2401012efa70", - "order": 36 - }, - { - "adult": false, - "gender": 0, - "id": 4187098, - "known_for_department": "Acting", - "name": "Louisa Giameos", - "original_name": "Louisa Giameos", - "popularity": 0.6, - "profile_path": null, - "cast_id": 148, - "character": "Teen at First Possession Party", - "credit_id": "64c5840495ce24013b9b399b", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 3040858, - "known_for_department": "Acting", - "name": "Jem O'Callaghan", - "original_name": "Jem O'Callaghan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 22, - "character": "Teen at First Possession Party", - "credit_id": "62ea89c1091e62006048ca03", - "order": 38 - }, - { - "adult": false, - "gender": 0, - "id": 2321660, - "known_for_department": "Acting", - "name": "Joe Romeo", - "original_name": "Joe Romeo", - "popularity": 0.62, - "profile_path": "/k6ZQzMjfygvVnDwXhUB3BZDqmqr.jpg", - "cast_id": 149, - "character": "Teen at First Possession Party", - "credit_id": "64c5841241aac40fb547e99f", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 4187099, - "known_for_department": "Acting", - "name": "Alex Noel McCarthy", - "original_name": "Alex Noel McCarthy", - "popularity": 0.6, - "profile_path": "/v19c3dgkHqm3hJ5t570uQJG0s18.jpg", - "cast_id": 150, - "character": "Teen at First Possession Party", - "credit_id": "64c5842963e6fb00c408eea8", - "order": 40 - }, - { - "adult": false, - "gender": 0, - "id": 4187100, - "known_for_department": "Acting", - "name": "Charlie Morkunas", - "original_name": "Charlie Morkunas", - "popularity": 0.6, - "profile_path": null, - "cast_id": 151, - "character": "Teen at First Possession Party", - "credit_id": "64c584339b6e4700ad2a59cd", - "order": 41 - }, - { - "adult": false, - "gender": 0, - "id": 4187102, - "known_for_department": "Acting", - "name": "Patricia Haycock", - "original_name": "Patricia Haycock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Old Lady in Hospital", - "credit_id": "64c584c441aac40fb547e9d5", - "order": 42 - }, - { - "adult": false, - "gender": 0, - "id": 4187103, - "known_for_department": "Acting", - "name": "Murray Haycock", - "original_name": "Murray Haycock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 155, - "character": "Old Man in Hospital", - "credit_id": "64c584d79b6e4700e2096c9f", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 3088180, - "known_for_department": "Acting", - "name": "Catherine Purling", - "original_name": "Catherine Purling", - "popularity": 0.6, - "profile_path": null, - "cast_id": 178, - "character": "Nurse", - "credit_id": "64dff040aaec7103f9979bf2", - "order": 44 - }, - { - "adult": false, - "gender": 0, - "id": 3648559, - "known_for_department": "Acting", - "name": "Nicola Thiele", - "original_name": "Nicola Thiele", - "popularity": 0.6, - "profile_path": null, - "cast_id": 29, - "character": "Predator Spirit", - "credit_id": "62ea8a62091e62005d2c12eb", - "order": 45 - }, - { - "adult": false, - "gender": 0, - "id": 3648557, - "known_for_department": "Acting", - "name": "David Simmons", - "original_name": "David Simmons", - "popularity": 0.6, - "profile_path": null, - "cast_id": 28, - "character": "Predator Spirit", - "credit_id": "62ea8a4557d378005d8c1f38", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4222363, - "known_for_department": "Acting", - "name": "Joseph House Baker", - "original_name": "Joseph House Baker", - "popularity": 1.018, - "profile_path": null, - "cast_id": 179, - "character": "Predator Spirit", - "credit_id": "64dff136d100b614b15af427", - "order": 47 - }, - { - "adult": false, - "gender": 0, - "id": 3350573, - "known_for_department": "Acting", - "name": "Alice Scheid", - "original_name": "Alice Scheid", - "popularity": 1.414, - "profile_path": "/tgGy3fDHSEXbIY3OWsyFeXT76JD.jpg", - "cast_id": 180, - "character": "Predator Spirit", - "credit_id": "64dff14bb77d4b114348c1d6", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 4222364, - "known_for_department": "Acting", - "name": "Anita Kimber", - "original_name": "Anita Kimber", - "popularity": 0.6, - "profile_path": "/mtNAop0SgPcw9dlGePm3pu3Bgbz.jpg", - "cast_id": 181, - "character": "Predator Spirit", - "credit_id": "64dff164a3b5e60139017dd3", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 3067619, - "known_for_department": "Art", - "name": "Ben Bullock", - "original_name": "Ben Bullock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 182, - "character": "Predator Spirit", - "credit_id": "64dff1a3d100b614b15af444", - "order": 50 - }, - { - "adult": false, - "gender": 0, - "id": 4222366, - "known_for_department": "Acting", - "name": "Brian Godfrey", - "original_name": "Brian Godfrey", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Predator Spirit", - "credit_id": "64dff1f3aaec7103f9979c4a", - "order": 51 - }, - { - "adult": false, - "gender": 0, - "id": 4222368, - "known_for_department": "Acting", - "name": "Cooper Duncan", - "original_name": "Cooper Duncan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 184, - "character": "Predator Spirit", - "credit_id": "64dff209e19de9013a27f839", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2749125, - "known_for_department": "Acting", - "name": "Daniel Pitt", - "original_name": "Daniel Pitt", - "popularity": 1.4, - "profile_path": "/hT3YbgvUdZO6zHexE8OAGWWufDk.jpg", - "cast_id": 185, - "character": "Predator Spirit", - "credit_id": "64dff227e19de900c68b41ab", - "order": 53 - }, - { - "adult": false, - "gender": 0, - "id": 4222369, - "known_for_department": "Acting", - "name": "Danielle Ruggiero-Prior", - "original_name": "Danielle Ruggiero-Prior", - "popularity": 0.6, - "profile_path": null, - "cast_id": 186, - "character": "Predator Spirit", - "credit_id": "64dff24d5ab81a00ad20c27a", - "order": 54 - }, - { - "adult": false, - "gender": 0, - "id": 1923071, - "known_for_department": "Acting", - "name": "Dylan Warren", - "original_name": "Dylan Warren", - "popularity": 0.6, - "profile_path": null, - "cast_id": 187, - "character": "Predator Spirit", - "credit_id": "64dff269d100b614b4cd9471", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 4222372, - "known_for_department": "Acting", - "name": "Emily Fogg", - "original_name": "Emily Fogg", - "popularity": 0.652, - "profile_path": null, - "cast_id": 188, - "character": "Predator Spirit", - "credit_id": "64dff28ea3b5e600e29d5ad5", - "order": 56 - }, - { - "adult": false, - "gender": 0, - "id": 4222375, - "known_for_department": "Acting", - "name": "Emily Gun", - "original_name": "Emily Gun", - "popularity": 0.619, - "profile_path": null, - "cast_id": 189, - "character": "Predator Spirit", - "credit_id": "64dff2d3aaec7103fa482c39", - "order": 57 - }, - { - "adult": false, - "gender": 0, - "id": 4222377, - "known_for_department": "Acting", - "name": "Jason Moore", - "original_name": "Jason Moore", - "popularity": 1.018, - "profile_path": "/y88DqmKa88Rqmn8lQ5H65tGx3Od.jpg", - "cast_id": 190, - "character": "Predator Spirit", - "credit_id": "64dff34f076ce800e312fa6a", - "order": 58 - }, - { - "adult": false, - "gender": 0, - "id": 4222378, - "known_for_department": "Acting", - "name": "Jessica Homewood", - "original_name": "Jessica Homewood", - "popularity": 1.397, - "profile_path": null, - "cast_id": 191, - "character": "Predator Spirit", - "credit_id": "64dff37b076ce80100f12f51", - "order": 59 - }, - { - "adult": false, - "gender": 0, - "id": 4222379, - "known_for_department": "Acting", - "name": "Kate Portus", - "original_name": "Kate Portus", - "popularity": 0.6, - "profile_path": null, - "cast_id": 192, - "character": "Predator Spirit", - "credit_id": "64dff392076ce800adce1b80", - "order": 60 - }, - { - "adult": false, - "gender": 0, - "id": 4222380, - "known_for_department": "Acting", - "name": "Lelum Rathnayake", - "original_name": "Lelum Rathnayake", - "popularity": 0.683, - "profile_path": null, - "cast_id": 193, - "character": "Predator Spirit", - "credit_id": "64dff403076ce800c641c7e0", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 4222382, - "known_for_department": "Acting", - "name": "Matt Goldwyn", - "original_name": "Matt Goldwyn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 194, - "character": "Predator Spirit", - "credit_id": "64dff41ab77d4b114348c29d", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4222385, - "known_for_department": "Acting", - "name": "Michael Gilmore", - "original_name": "Michael Gilmore", - "popularity": 0.6, - "profile_path": null, - "cast_id": 195, - "character": "Predator Spirit", - "credit_id": "64dff45a37109700c51e9143", - "order": 63 - }, - { - "adult": false, - "gender": 0, - "id": 4222386, - "known_for_department": "Acting", - "name": "Philip Maynard", - "original_name": "Philip Maynard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 196, - "character": "Predator Spirit", - "credit_id": "64dff46cd100b614b0a5bf23", - "order": 64 - }, - { - "adult": false, - "gender": 0, - "id": 3547196, - "known_for_department": "Acting", - "name": "Sarah Baber", - "original_name": "Sarah Baber", - "popularity": 0.997, - "profile_path": "/9kaT7Ylo2TvcJTIgc3Dgs8EbiSj.jpg", - "cast_id": 197, - "character": "Predator Spirit", - "credit_id": "64dff491a3b5e600c5bd5676", - "order": 65 - }, - { - "adult": false, - "gender": 0, - "id": 4222387, - "known_for_department": "Acting", - "name": "Saravjit Singh", - "original_name": "Saravjit Singh", - "popularity": 0.6, - "profile_path": null, - "cast_id": 198, - "character": "Predator Spirit", - "credit_id": "64dff4ab076ce8013a294c58", - "order": 66 - }, - { - "adult": false, - "gender": 0, - "id": 4222388, - "known_for_department": "Acting", - "name": "Shadrack Kamau", - "original_name": "Shadrack Kamau", - "popularity": 0.6, - "profile_path": null, - "cast_id": 199, - "character": "Predator Spirit", - "credit_id": "64dff4c5076ce80100f12faa", - "order": 67 - }, - { - "adult": false, - "gender": 0, - "id": 4222389, - "known_for_department": "Acting", - "name": "Thomas Gardner", - "original_name": "Thomas Gardner", - "popularity": 0.675, - "profile_path": null, - "cast_id": 200, - "character": "Predator Spirit", - "credit_id": "64dff4d8076ce800adce1bd1", - "order": 68 - }, - { - "adult": false, - "gender": 0, - "id": 1487967, - "known_for_department": "Acting", - "name": "Mark Duncan", - "original_name": "Mark Duncan", - "popularity": 0.719, - "profile_path": null, - "cast_id": 201, - "character": "Husband in Car Crash", - "credit_id": "64dff4f4d100b614b5f83f1e", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 3044290, - "known_for_department": "Acting", - "name": "Ella Fenwick", - "original_name": "Ella Fenwick", - "popularity": 1.052, - "profile_path": "/i7BDnpTrvFSGw6A9foCrmS9D8t0.jpg", - "cast_id": 202, - "character": "Wife in Car Crash", - "credit_id": "64dff532e19de90100e87175", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 2442554, - "known_for_department": "Acting", - "name": "Michael Harpas", - "original_name": "Michael Harpas", - "popularity": 0.6, - "profile_path": "/udM6qzXcPAffYlzYBSzkW7ZAMg0.jpg", - "cast_id": 203, - "character": "Stranger in Greece", - "credit_id": "64dff557076ce80100f12fc5", - "order": 71 - }, - { - "adult": false, - "gender": 0, - "id": 4222395, - "known_for_department": "Acting", - "name": "Nikolas Gelios", - "original_name": "Nikolas Gelios", - "popularity": 0.6, - "profile_path": null, - "cast_id": 204, - "character": "Young Man in Greece", - "credit_id": "64dff57ae19de9013a27f8f3", - "order": 72 - }, - { - "adult": false, - "gender": 0, - "id": 4222396, - "known_for_department": "Acting", - "name": "Alex Philippou", - "original_name": "Alex Philippou", - "popularity": 0.618, - "profile_path": null, - "cast_id": 205, - "character": "Man in Greece", - "credit_id": "64dff59037109700ac44dc11", - "order": 73 - }, - { - "adult": false, - "gender": 0, - "id": 4222398, - "known_for_department": "Acting", - "name": "Con Lipapis", - "original_name": "Con Lipapis", - "popularity": 0.741, - "profile_path": null, - "cast_id": 206, - "character": "Man in Greece", - "credit_id": "64dff59e37109700ac44dc1e", - "order": 74 - }, - { - "adult": false, - "gender": 0, - "id": 4222399, - "known_for_department": "Acting", - "name": "Con Patelias", - "original_name": "Con Patelias", - "popularity": 0.6, - "profile_path": null, - "cast_id": 207, - "character": "Man in Greece", - "credit_id": "64dff5af076ce800c641c855", - "order": 75 - }, - { - "adult": false, - "gender": 0, - "id": 4222400, - "known_for_department": "Acting", - "name": "Louis Vavaroutsos", - "original_name": "Louis Vavaroutsos", - "popularity": 0.652, - "profile_path": null, - "cast_id": 208, - "character": "Man in Greece", - "credit_id": "64dff5bfb77d4b114348c306", - "order": 76 - }, - { - "adult": false, - "gender": 0, - "id": 4222402, - "known_for_department": "Acting", - "name": "Uncle Mars", - "original_name": "Uncle Mars", - "popularity": 0.732, - "profile_path": null, - "cast_id": 209, - "character": "Man in Greece", - "credit_id": "64dff5d0d100b614b0a5bf67", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 4222403, - "known_for_department": "Acting", - "name": "Nick Lipapis", - "original_name": "Nick Lipapis", - "popularity": 0.618, - "profile_path": null, - "cast_id": 210, - "character": "Man in Greece", - "credit_id": "64dff5e0d100b614b5f83f87", - "order": 78 - }, - { - "adult": false, - "gender": 1, - "id": 4221584, - "known_for_department": "Acting", - "name": "Ruby Piper", - "original_name": "Ruby Piper", - "popularity": 0.997, - "profile_path": null, - "cast_id": 211, - "character": "Pool Party Teen (uncredited)", - "credit_id": "64e1b2dfda9ef2011fe493f4", - "order": 79 - }, - { - "adult": false, - "gender": 2, - "id": 4052656, - "known_for_department": "Acting", - "name": "Leonardo Dantès", - "original_name": "Leonardo Dantès", - "popularity": 0.6, - "profile_path": null, - "cast_id": 133, - "character": "Pool Party Teen (uncredited)", - "credit_id": "645cb2d8fe077a5caae11b45", - "order": 80 - }, - { - "adult": false, - "gender": 2, - "id": 1513866, - "known_for_department": "Acting", - "name": "KSI", - "original_name": "KSI", - "popularity": 6.867, - "profile_path": "/Aft18wTH16nFzfOFxNnzvHgZFQX.jpg", - "cast_id": 158, - "character": "Self (archive footage)", - "credit_id": "64d22d15c3bffe0f01fa9a50", - "order": 81 - }, - { - "adult": false, - "gender": 2, - "id": 2464464, - "known_for_department": "Acting", - "name": "Harry Lewis", - "original_name": "Harry Lewis", - "popularity": 7.636, - "profile_path": "/t0lHKn12udMfSDpBFTlyDEDE56e.jpg", - "cast_id": 159, - "character": "Self (archive footage)", - "credit_id": "64d22d266d4c97012e8c8b1d", - "order": 82 - }, - { - "adult": false, - "gender": 2, - "id": 2464458, - "known_for_department": "Acting", - "name": "Simon Minter", - "original_name": "Simon Minter", - "popularity": 3.665, - "profile_path": "/5J5BJhB7V3baqplLjGaPs81SOD2.jpg", - "cast_id": 172, - "character": "Self (archive footage)", - "credit_id": "64d53fba021cee00ff104ffb", - "order": 83 - }, - { - "adult": false, - "gender": 2, - "id": 2464459, - "known_for_department": "Acting", - "name": "Josh Bradley", - "original_name": "Josh Bradley", - "popularity": 1.812, - "profile_path": "/hqs2FlrPUPPjks8JZAUTN2kvCq6.jpg", - "cast_id": 175, - "character": "Self (archive footage)", - "credit_id": "64d53fd74a4bf600c7145398", - "order": 84 - }, - { - "adult": false, - "gender": 2, - "id": 2464460, - "known_for_department": "Acting", - "name": "Vik Barn", - "original_name": "Vik Barn", - "popularity": 2.492, - "profile_path": "/jKe9EZNTIlLfy0EYQENcjte0zOn.jpg", - "cast_id": 173, - "character": "Self (archive footage)", - "credit_id": "64d53fc4db4ed6011c4b1ebe", - "order": 85 - }, - { - "adult": false, - "gender": 2, - "id": 2464462, - "known_for_department": "Acting", - "name": "Tobi Brown", - "original_name": "Tobi Brown", - "popularity": 5.505, - "profile_path": "/aqObrMLO7iVri9PjbClAbwGyKCe.jpg", - "cast_id": 174, - "character": "Self (archive footage)", - "credit_id": "64d53fcff14dad013a8a9266", - "order": 86 - }, - { - "adult": false, - "gender": 2, - "id": 2464461, - "known_for_department": "Acting", - "name": "Ethan Payne", - "original_name": "Ethan Payne", - "popularity": 3.336, - "profile_path": "/4gQ25MaDMkKzs1t3exVhbh7mD.jpg", - "cast_id": 176, - "character": "Self (archive footage)", - "credit_id": "64d53fe74a4bf60101e7a5bb", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 4271227, - "known_for_department": "Acting", - "name": "Cookie", - "original_name": "Cookie", - "popularity": 0.6, - "profile_path": null, - "cast_id": 213, - "character": "Self", - "credit_id": "6502f47dd7dcd2011c61a344", - "order": 88 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 502, - "known_for_department": "Acting", - "name": "Miranda Otto", - "original_name": "Miranda Otto", - "popularity": 20.366, - "profile_path": "/szME1IBVTLgiKrO5D5wvOGnvUDW.jpg", - "credit_id": "64d34b29db4ed600ad2392ed", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 37281, - "known_for_department": "Production", - "name": "Nikki Barrett", - "original_name": "Nikki Barrett", - "popularity": 1.132, - "profile_path": null, - "credit_id": "62ea8ca06d9fe80059760a7a", - "department": "Production", - "job": "Casting Director" - }, - { - "adult": false, - "gender": 0, - "id": 75508, - "known_for_department": "Acting", - "name": "Paul Lightfoot", - "original_name": "Paul Lightfoot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93d2af432400599f61b1", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 80817, - "known_for_department": "Sound", - "name": "Greg Crawford", - "original_name": "Greg Crawford", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6434bf9c06f98400b322ad0a", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 237172, - "known_for_department": "Acting", - "name": "Mike Duncan", - "original_name": "Mike Duncan", - "popularity": 0.6, - "profile_path": "/lROtmh0DZ9xr6w0k8lmRKGssXta.jpg", - "credit_id": "62ea938f57d3780060aaaedc", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 951484, - "known_for_department": "Production", - "name": "Phil Hunt", - "original_name": "Phil Hunt", - "popularity": 5.302, - "profile_path": "/f5CL2pPFzcte7a0lBE2BzIZ5YJq.jpg", - "credit_id": "62ea8ba2f1b571005957ce3d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 986415, - "known_for_department": "Production", - "name": "Compton Ross", - "original_name": "Compton Ross", - "popularity": 2.17, - "profile_path": "/v0EW6qBxMfQcT1nrytBAFj2w6eE.jpg", - "credit_id": "62ea8c1c1e6489005882b99d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1116331, - "known_for_department": "Visual Effects", - "name": "Marty Pepper", - "original_name": "Marty Pepper", - "popularity": 0.646, - "profile_path": null, - "credit_id": "62ea931daf4324005c1a289c", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1116331, - "known_for_department": "Visual Effects", - "name": "Marty Pepper", - "original_name": "Marty Pepper", - "popularity": 0.646, - "profile_path": null, - "credit_id": "646b9b9dc3514c2b0741aa75", - "department": "Editing", - "job": "Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 1311622, - "known_for_department": "Production", - "name": "Jeff Harrison", - "original_name": "Jeff Harrison", - "popularity": 1.09, - "profile_path": null, - "credit_id": "64d34ba303726400c572d880", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1323512, - "known_for_department": "Sound", - "name": "Cornel Wilczek", - "original_name": "Cornel Wilczek", - "popularity": 1.495, - "profile_path": null, - "credit_id": "646b9cd554a09800e4103a6d", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1364805, - "known_for_department": "Production", - "name": "Kristina Ceyton", - "original_name": "Kristina Ceyton", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62ea8b78091e62006048ca95", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1365544, - "known_for_department": "Lighting", - "name": "Richard Rees-Jones", - "original_name": "Richard Rees-Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0a2cca7de00e06effae", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1402909, - "known_for_department": "Sound", - "name": "Emma Bortignon", - "original_name": "Emma Bortignon", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6434bf8ea6ddcb00f403950c", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1402909, - "known_for_department": "Sound", - "name": "Emma Bortignon", - "original_name": "Emma Bortignon", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6434bf8611c06600d60d115b", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1410544, - "known_for_department": "Art", - "name": "Jennifer Drake", - "original_name": "Jennifer Drake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8d178566d2005a482b1c", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1410558, - "known_for_department": "Costume & Make-Up", - "name": "Olivia Iacobelli", - "original_name": "Olivia Iacobelli", - "popularity": 0.648, - "profile_path": null, - "credit_id": "63cf5b050d2f53022e45a89c", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1452257, - "known_for_department": "Costume & Make-Up", - "name": "Paul Katte", - "original_name": "Paul Katte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e01aede590059ec4365", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1452258, - "known_for_department": "Costume & Make-Up", - "name": "Nick Nicolaou", - "original_name": "Nick Nicolaou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e236d9fe8005eeda25a", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1453895, - "known_for_department": "Production", - "name": "Christopher Seeto", - "original_name": "Christopher Seeto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34c05db4ed600ffb629b5", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1487967, - "known_for_department": "Acting", - "name": "Mark Duncan", - "original_name": "Mark Duncan", - "popularity": 0.719, - "profile_path": null, - "credit_id": "62ea935e091e62005d2c1688", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1490393, - "known_for_department": "Sound", - "name": "Andrew Kotatko", - "original_name": "Andrew Kotatko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9620fc5f06006107ed70", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1517967, - "known_for_department": "Art", - "name": "Peter 'Babylon' Owens", - "original_name": "Peter 'Babylon' Owens", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea92eff1b5710061356989", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 1573001, - "known_for_department": "Production", - "name": "Daniel Negret", - "original_name": "Daniel Negret", - "popularity": 0.756, - "profile_path": null, - "credit_id": "64751e2e96386400a8e64429", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1672488, - "known_for_department": "Acting", - "name": "Daley Pearson", - "original_name": "Daley Pearson", - "popularity": 2.379, - "profile_path": "/zo1dWEybBsXHIh7ps9u9K8mkJ6z.jpg", - "credit_id": "6434bf6506f98400b322ace3", - "department": "Writing", - "job": "Idea" - }, - { - "adult": false, - "gender": 0, - "id": 1689955, - "known_for_department": "Directing", - "name": "Greg Cobain", - "original_name": "Greg Cobain", - "popularity": 0.618, - "profile_path": null, - "credit_id": "62ea8f89aede590059ec4417", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1756283, - "known_for_department": "Production", - "name": "Stephen Kelliher", - "original_name": "Stephen Kelliher", - "popularity": 1.026, - "profile_path": null, - "credit_id": "64d34bb5db4ed600ad239335", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1839053, - "known_for_department": "Sound", - "name": "Lachlan Harris", - "original_name": "Lachlan Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434bfb306f984009222ac10", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1861509, - "known_for_department": "Crew", - "name": "Jesse Rowles", - "original_name": "Jesse Rowles", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9462aede59005e14e3df", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1923073, - "known_for_department": "Art", - "name": "Emma Hough Hobbs", - "original_name": "Emma Hough Hobbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90f21bf26600602ee585", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 1935682, - "known_for_department": "Costume & Make-Up", - "name": "Anna Cahill", - "original_name": "Anna Cahill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8d30f1b571005957cee4", - "department": "Costume & Make-Up", - "job": "Costume Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1936739, - "known_for_department": "Crew", - "name": "Josh Head", - "original_name": "Josh Head", - "popularity": 0.728, - "profile_path": null, - "credit_id": "62ea92bf1e64890060651517", - "department": "Crew", - "job": "Animatronics Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1936739, - "known_for_department": "Crew", - "name": "Josh Head", - "original_name": "Josh Head", - "popularity": 0.728, - "profile_path": null, - "credit_id": "62ea8deb57d378005d8c2076", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1961726, - "known_for_department": "Crew", - "name": "Michael Wolff", - "original_name": "Michael Wolff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea923325cd85005d00673c", - "department": "Art", - "job": "Art Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1962916, - "known_for_department": "Art", - "name": "Jonathon Hyde-Neary", - "original_name": "Jonathon Hyde-Neary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91016d9fe8006136220f", - "department": "Costume & Make-Up", - "job": "Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 1972016, - "known_for_department": "Production", - "name": "Samantha Jennings", - "original_name": "Samantha Jennings", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b4cdd926a01e73247f5", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1980633, - "known_for_department": "Production", - "name": "Carly Maple", - "original_name": "Carly Maple", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f521e6489005882bb2f", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1980633, - "known_for_department": "Production", - "name": "Carly Maple", - "original_name": "Carly Maple", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8bc91e648900606512d9", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1980643, - "known_for_department": "Sound", - "name": "Nick Steele", - "original_name": "Nick Steele", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea928f8566d2005a482d44", - "department": "Sound", - "job": "Sound Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 1987106, - "known_for_department": "Art", - "name": "Bethany Ryan", - "original_name": "Bethany Ryan", - "popularity": 0.656, - "profile_path": null, - "credit_id": "62ea8cdaf1b571005957ceb2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 1988765, - "known_for_department": "Costume & Make-Up", - "name": "Marie Princi", - "original_name": "Marie Princi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e8baede5900617e6ec5", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2015673, - "known_for_department": "Crew", - "name": "Philip Fraschetti", - "original_name": "Philip Fraschetti", - "popularity": 1.02, - "profile_path": null, - "credit_id": "646b9b3354a09800feac40f1", - "department": "Crew", - "job": "Compositor" - }, - { - "adult": false, - "gender": 2, - "id": 2046119, - "known_for_department": "Camera", - "name": "Aaron McLisky", - "original_name": "Aaron McLisky", - "popularity": 0.6, - "profile_path": "/hVa2CeNN01Oksm4cYc6Q26oZT6S.jpg", - "credit_id": "6434c07f11c06600f5065297", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 2070452, - "known_for_department": "Directing", - "name": "Michael Philippou", - "original_name": "Michael Philippou", - "popularity": 2.682, - "profile_path": "/mRoll1HB1fdsSE8lquSgFzX3NqG.jpg", - "credit_id": "62ea8b348566d2005a482a7f", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2070452, - "known_for_department": "Directing", - "name": "Michael Philippou", - "original_name": "Michael Philippou", - "popularity": 2.682, - "profile_path": "/mRoll1HB1fdsSE8lquSgFzX3NqG.jpg", - "credit_id": "64d34bdbdb4ed600ffb62995", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "62ea8b1257d3780060aaab51", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "64d34bd0bf31f201ccbc9199", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2070453, - "known_for_department": "Directing", - "name": "Danny Philippou", - "original_name": "Danny Philippou", - "popularity": 6.053, - "profile_path": "/hQcCIov6s4qWqHyCnbrKEo3yq79.jpg", - "credit_id": "62ea8b46fc5f06006107ea0a", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2103375, - "known_for_department": "Directing", - "name": "Luke Wissell", - "original_name": "Luke Wissell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea96368566d2005fb06041", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2103389, - "known_for_department": "Costume & Make-Up", - "name": "Rebecca Buratto", - "original_name": "Rebecca Buratto", - "popularity": 0.997, - "profile_path": null, - "credit_id": "62ea8d9225cd85005802a2cc", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2148997, - "known_for_department": "Sound", - "name": "Oliver McLoughlin", - "original_name": "Oliver McLoughlin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9279af432400599f6154", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2160086, - "known_for_department": "Costume & Make-Up", - "name": "Helen Tuck", - "original_name": "Helen Tuck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f3af1b571005957cf79", - "department": "Crew", - "job": "Makeup Effects" - }, - { - "adult": false, - "gender": 0, - "id": 2272448, - "known_for_department": "Crew", - "name": "Cory Beeston", - "original_name": "Cory Beeston", - "popularity": 0.861, - "profile_path": "/vkLSL43UOqgkm9V2qFCdVF2IOc1.jpg", - "credit_id": "62ea933cf1b571005e2c78b0", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2437333, - "known_for_department": "Editing", - "name": "Geoff Lamb", - "original_name": "Geoff Lamb", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8c6a1bf266005da4c99c", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2607041, - "known_for_department": "Production", - "name": "Emma Marshall", - "original_name": "Emma Marshall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f696d9fe80061362181", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 2607051, - "known_for_department": "Camera", - "name": "John Smith", - "original_name": "John Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0b5ec8a430219261f24", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2699096, - "known_for_department": "Production", - "name": "Kelly Graham", - "original_name": "Kelly Graham", - "popularity": 0.98, - "profile_path": null, - "credit_id": "62ea8cbb1e6489005dc0bad6", - "department": "Production", - "job": "Casting Director" - }, - { - "adult": false, - "gender": 0, - "id": 2701262, - "known_for_department": "Camera", - "name": "Matthew Thorne", - "original_name": "Matthew Thorne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0d8a6ddcb0113a83a02", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 2720752, - "known_for_department": "Directing", - "name": "James Dubay", - "original_name": "James Dubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fa5aede59005e14e24c", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2724906, - "known_for_department": "Costume & Make-Up", - "name": "Cassie O'Brien Pollard", - "original_name": "Cassie O'Brien Pollard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e31fc5f060059c4b607", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2737399, - "known_for_department": "Production", - "name": "Ari Harrison", - "original_name": "Ari Harrison", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b98bf31f201ccbc9176", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2737703, - "known_for_department": "Art", - "name": "Gareth Wilkes", - "original_name": "Gareth Wilkes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8cfd1e64890060651347", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2756240, - "known_for_department": "Crew", - "name": "Daisy Fryer", - "original_name": "Daisy Fryer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93b61bf266005da4cc2e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2788722, - "known_for_department": "Camera", - "name": "Joey McQuade", - "original_name": "Joey McQuade", - "popularity": 1.057, - "profile_path": null, - "credit_id": "6434c097cca7de00bd20de7e", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2898720, - "known_for_department": "Visual Effects", - "name": "Dylan Browne", - "original_name": "Dylan Browne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b9b3dd18572016192c941", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2925580, - "known_for_department": "Art", - "name": "Stephen Roedel", - "original_name": "Stephen Roedel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91af1e6489005882bc57", - "department": "Art", - "job": "Set Painter" - }, - { - "adult": false, - "gender": 0, - "id": 2925585, - "known_for_department": "Costume & Make-Up", - "name": "Bec Triosi", - "original_name": "Bec Triosi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f238566d2005a482bde", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3044290, - "known_for_department": "Acting", - "name": "Ella Fenwick", - "original_name": "Ella Fenwick", - "popularity": 1.052, - "profile_path": "/i7BDnpTrvFSGw6A9foCrmS9D8t0.jpg", - "credit_id": "62ea93a21bf26600602ee688", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3048683, - "known_for_department": "Camera", - "name": "Bec Taylor", - "original_name": "Bec Taylor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0c8a6ddcb00f403958d", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3246962, - "known_for_department": "Production", - "name": "Dale Roberts", - "original_name": "Dale Roberts", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34bf0b6c2641158c54480", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3318395, - "known_for_department": "Production", - "name": "Sophie Green", - "original_name": "Sophie Green", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b88d100b600ad9f0c37", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3422936, - "known_for_department": "Costume & Make-Up", - "name": "Adele Shearwin", - "original_name": "Adele Shearwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8ef3f1b571006135685a", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3522958, - "known_for_department": "Camera", - "name": "Sid Tinney", - "original_name": "Sid Tinney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434c0e7cca7de0077ae01f1", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3529081, - "known_for_department": "Crew", - "name": "Alek Skar", - "original_name": "Alek Skar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea946e6d9fe800613622f9", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3648607, - "known_for_department": "Costume & Make-Up", - "name": "Georgia Edgar", - "original_name": "Georgia Edgar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8dc525cd85005d006581", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648612, - "known_for_department": "Costume & Make-Up", - "name": "Megan O'Mahoney", - "original_name": "Megan O'Mahoney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e4d091e62006048cb80", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648613, - "known_for_department": "Costume & Make-Up", - "name": "Kristina Persichini", - "original_name": "Kristina Persichini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e6725cd850060e71e8e", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648614, - "known_for_department": "Costume & Make-Up", - "name": "Matthew Ping", - "original_name": "Matthew Ping", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8e741e6489005dc0bb5c", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648616, - "known_for_department": "Costume & Make-Up", - "name": "Erin Scott", - "original_name": "Erin Scott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8eb5fc5f06005e709bd6", - "department": "Costume & Make-Up", - "job": "Makeup & Hair Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648618, - "known_for_department": "Costume & Make-Up", - "name": "Alexandra Swistro", - "original_name": "Alexandra Swistro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8f136d9fe80061362166", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3648626, - "known_for_department": "Directing", - "name": "Kate Larmer", - "original_name": "Kate Larmer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fbe1bf266005da4cada", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3648628, - "known_for_department": "Directing", - "name": "Jack Lukac", - "original_name": "Jack Lukac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea8fe01bf26600602ee519", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3648633, - "known_for_department": "Art", - "name": "Ben Allen", - "original_name": "Ben Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90218566d2005a482c52", - "department": "Art", - "job": "Art Department Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648634, - "known_for_department": "Crew", - "name": "Gary Baxter", - "original_name": "Gary Baxter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea903e091e62005d2c152b", - "department": "Crew", - "job": "Vehicles Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3648637, - "known_for_department": "Costume & Make-Up", - "name": "Ben Conroy", - "original_name": "Ben Conroy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9065fc5f060059c4b6f4", - "department": "Costume & Make-Up", - "job": "Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3648639, - "known_for_department": "Art", - "name": "Ben Crabtree", - "original_name": "Ben Crabtree", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea907c25cd85005802a3b1", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3648643, - "known_for_department": "Art", - "name": "Ashleigh D'Antonio", - "original_name": "Ashleigh D'Antonio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90b3fc5f06005e709c91", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3648644, - "known_for_department": "Art", - "name": "Troy Dignon", - "original_name": "Troy Dignon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea90c657d3780058457c6b", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 3648648, - "known_for_department": "Crew", - "name": "Jason Lapins", - "original_name": "Jason Lapins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91151e6489005882bc13", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 3648650, - "known_for_department": "Crew", - "name": "Karen Macey-Mort", - "original_name": "Karen Macey-Mort", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91256d9fe8006136221d", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 3648653, - "known_for_department": "Art", - "name": "Stewart Marsh", - "original_name": "Stewart Marsh", - "popularity": 0.611, - "profile_path": null, - "credit_id": "62ea914125cd85005802a3e8", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3648657, - "known_for_department": "Art", - "name": "Ella Neumann", - "original_name": "Ella Neumann", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea9168af4324005c1a280b", - "department": "Art", - "job": "Art Department Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3648662, - "known_for_department": "Art", - "name": "Laura Ockenden", - "original_name": "Laura Ockenden", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea919a6d9fe8005eeda3b7", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3648663, - "known_for_department": "Crew", - "name": "Greg Sweeney", - "original_name": "Greg Sweeney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91cbfc5f06005e709ce7", - "department": "Crew", - "job": "Prop Maker" - }, - { - "adult": false, - "gender": 0, - "id": 3648664, - "known_for_department": "Art", - "name": "Shane Towns", - "original_name": "Shane Towns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91da1bf266005da4cb97", - "department": "Art", - "job": "Set Painter" - }, - { - "adult": false, - "gender": 0, - "id": 3648665, - "known_for_department": "Art", - "name": "Sonja Van Bavel", - "original_name": "Sonja Van Bavel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea91f68566d2005fb05f3b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3648667, - "known_for_department": "Art", - "name": "Fraser Whitehead", - "original_name": "Fraser Whitehead", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea921a25cd850060e71fc4", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3648693, - "known_for_department": "Crew", - "name": "Tess Malpas", - "original_name": "Tess Malpas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93e2fc5f060059c4b841", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3648693, - "known_for_department": "Crew", - "name": "Tess Malpas", - "original_name": "Tess Malpas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea93f7f1b57100613569c2", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3648697, - "known_for_department": "Crew", - "name": "Craig Morgan", - "original_name": "Craig Morgan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea944a1bf26600602ee6dd", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3648698, - "known_for_department": "Camera", - "name": "Jonathan Baker", - "original_name": "Jonathan Baker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95971bf266005a6214a5", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3648699, - "known_for_department": "Camera", - "name": "Sian Bates", - "original_name": "Sian Bates", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95c31bf266005a6214b9", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3648700, - "known_for_department": "Lighting", - "name": "Tom Clark", - "original_name": "Tom Clark", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62ea95e0af4324005c1a2956", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 2, - "id": 3764010, - "known_for_department": "Writing", - "name": "Bill Hinzman", - "original_name": "Bill Hinzman", - "popularity": 1.4, - "profile_path": null, - "credit_id": "635e7d68e18e3f0090930c20", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3970973, - "known_for_department": "Visual Effects", - "name": "Sharna Hackett", - "original_name": "Sharna Hackett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434bff4ec8a4301f63ade47", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4075180, - "known_for_department": "Editing", - "name": "Joshua Atterton-Evans", - "original_name": "Joshua Atterton-Evans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b9b93d185720101996a74", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4205384, - "known_for_department": "Production", - "name": "John Dummett", - "original_name": "John Dummett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b6103726400e2be9baf", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4205385, - "known_for_department": "Production", - "name": "Noah Dummett", - "original_name": "Noah Dummett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d34b79b6c2641158c5443c", - "department": "Production", - "job": "Executive Producer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Preview", - "key": "jlIDtfOzrqQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-12T21:00:29.000Z", - "id": "6500df851bf26600e25e23c7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "'Who's First?' Clip", - "key": "x_TSgCjSoOQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-31T10:43:26.000Z", - "id": "64c8d73489f7490126accc4e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "‘Viral’ TV Spot", - "key": "mAbWxKLBkbY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-24T10:48:36.000Z", - "id": "64c8d792d5191f011c65a11d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Scenes", - "key": "msZabC0rsPM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-19T23:00:08.000Z", - "id": "64c971f3dd83fa00e2a0b45a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Promo", - "key": "zeCL4bt7K6w", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-03T15:35:48.000Z", - "id": "64d41623dd926a01ea9d5a6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer 2", - "key": "PGo4wfCejsk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-06T13:00:18.000Z", - "id": "647f41f517497300fb3ca23c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer", - "key": "aLAKJu9aJys", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-11T13:00:00.000Z", - "id": "643559e7e6357100f27a0662" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Michael & Danny Philippou on “Talk to Me\"", - "key": "VIUHY4YeAiE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2022-12-09T21:13:13.000Z", - "id": "63c246a3df857c008927f568" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1348, - "iso_639_1": null, - "file_path": "/lDCIQ1Qe7cRnhZ4ybQVVEbadMZ.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2397 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/foh54FH3gOybnl2K7uytz21HXcv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/55Rb9qt3yzyF4KQpC1c3T3Fbcao.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rTJ8LLzT9NPRJA2dnQs0241bMRn.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/l19Gqm7tK4a7jQCLMg5JA8JIHKP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9u7kOQB3wBkeWkkdrnDGb4of7gz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/A6cQPjSA0JKkTbGeEWEUgZWmK3Y.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zOsLfqzFxXGaoQRRsSXAZeKELz1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rYRSlgvWFrLOkuyb3SUg2nDc3u5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ysVGUStdDk41se0UOo5ChyHRsA0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oYHXpmL3LCrtwiJMZbNVrA6haXk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kF1KkTgbkqUQ3Gi1nJV7GucYbN2.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bTzq40wrtfbmEk7VmEXHAZcd52A.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3tzPSJiCPqacAgRsMkMPof2ZinL.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/t56tUeIMm0CdnGJJeOikGFS5Ltu.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1959, - "iso_639_1": null, - "file_path": "/vcxquXWJ6hsjf8v9tNTRMkiPwd9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3482 - }, - { - "aspect_ratio": 1.777, - "height": 1959, - "iso_639_1": null, - "file_path": "/dVdjbRLvL4qan6APcpnl5BIXJGU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3482 - }, - { - "aspect_ratio": 1.779, - "height": 1439, - "iso_639_1": null, - "file_path": "/t0E4ZVFYC3YnKen9LlcQ6g89ThI.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iDVzS1AkkS0vH9A8hVwPPmqKxBU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1372, - "iso_639_1": null, - "file_path": "/9ZxW9OH2It6rxfNTA5nu4KZxQW7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2440 - }, - { - "aspect_ratio": 1.779, - "height": 1439, - "iso_639_1": null, - "file_path": "/dGKTGMSMk8oDoUYkdiRKSJyjOzW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 1348, - "iso_639_1": "en", - "file_path": "/gd1QPnOzopd6lr2DDmZS1id7FRx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2397 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/7wIJ4CJyQkMaOi3evSbBPd1oP7s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/w0jRshxnCvIRhergmY7awpkmOGj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/7hEDrS3lbAEINmY9CY8eT4L8VBN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/jThx7iGDRXW0ACf75fM4KumDEoh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "pt", - "file_path": "/w2Uw5ZpyPUAxqo647JWMflfOARk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 6.706, - "height": 119, - "iso_639_1": "pt", - "file_path": "/5HhO9XMbK9YcoSfY3uJRPuOKevM.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 798 - }, - { - "aspect_ratio": 7.218, - "height": 413, - "iso_639_1": "en", - "file_path": "/xkPlchCzDO8waiKhr9hesu6k9YQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2981 - }, - { - "aspect_ratio": 5.113, - "height": 97, - "iso_639_1": "en", - "file_path": "/7NtfnTF1Uyrr6YfwMyorULGUd51.png", - "vote_average": 0, - "vote_count": 0, - "width": 496 - }, - { - "aspect_ratio": 3.893, - "height": 196, - "iso_639_1": "pt", - "file_path": "/gH5gd2yuiY8GOw3OLSJ2MV1eYY8.png", - "vote_average": 0, - "vote_count": 0, - "width": 763 - }, - { - "aspect_ratio": 1.298, - "height": 1079, - "iso_639_1": "he", - "file_path": "/jCXjuDtaSzgd9iWJk9OpHCg75ST.png", - "vote_average": 0, - "vote_count": 0, - "width": 1401 - }, - { - "aspect_ratio": 5.708, - "height": 137, - "iso_639_1": "en", - "file_path": "/yCZVHGRzgxL0qcyz0MNUxoI8SM0.png", - "vote_average": 0, - "vote_count": 0, - "width": 782 - }, - { - "aspect_ratio": 7.617, - "height": 193, - "iso_639_1": "pl", - "file_path": "/aBORyWCnUr1fGyAxy2JbJBwvLvB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1470 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/j9B0UK96y4aGfAaaH8duGRGNpNT.jpg", - "vote_average": 5.458, - "vote_count": 17, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/mG4CMCC7eSMRNpmWYnBGYW4Rxhv.jpg", - "vote_average": 5.402, - "vote_count": 18, - "width": 1186 - }, - { - "aspect_ratio": 0.656, - "height": 1830, - "iso_639_1": "uk", - "file_path": "/52QUAmeReW1W1MaFWbhDJELrGRb.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "en", - "file_path": "/kw0Hegzpg08v37nRcmczCvqpl7d.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rS8fjd6dYcf64v3ZhAE6fKrxoaF.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lnTfm7V0JnzY5262pCMzvRf7nza.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4Jx9sLUU5s4ETMQqmofdwq6kznj.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/gutvZwYkZ3lX3Cd0UjcY75NaPm9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/3AxxRfQZqwrTgAo4SKkB8Cxn2EJ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uPSthtiPU1gRK55Szjex31R4fmU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1721, - "iso_639_1": "he", - "file_path": "/uwmC1GeXVoNepRIH5EBe6HmDtnE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1148 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/yoZmZOIk35ZuH0WJoakB81ypHUH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/tFVJwcCvQscxRr4BSndCHfpgSYV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "id", - "file_path": "/jfmZP9RIS42XVAYTskWrVV6voen.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gw30weETaMZqwJXIk65FALfme3s.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": null, - "file_path": "/eDwf6OHKcZYPyFaE3NvlPO0JnzC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2435, - "iso_639_1": "no", - "file_path": "/7U3lC4YnHD8zpeoxbY6Hsj9jyeu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1624 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/iyxdXKRWAL0VhN2eSBzFGhagEcX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/x5sWVFL78X6KC4dil7QSOqCDqS8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1175 - }, - { - "aspect_ratio": 0.75, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/3jUeFQvp6iygJnCuiOmZktURgAi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/n2HcaD1dEVrwXlSFJD7GmcqHSxv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/fEAU4gZg3F8HCrbK4RwqpAVOVrK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1721, - "iso_639_1": "he", - "file_path": "/itY83E4NIBSZJYe30GiTlRfH6XI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1148 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/sF73xKArWL8VUuJmcJWYQUYkL5w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "bg", - "file_path": "/wYMdhLikNg7qgvCg9smStFXF8zn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/edXi2LQD181HpJoxGedbtA4mOTi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/nAhSa8D0hDIgFpKW5ah27tjbTYK.jpg", - "vote_average": 5.282, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tajFI7ELaty2YV4frzVQ45Q18Hc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/98OeYXDQm27XyAe1wSuceCxpmGJ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "ru", - "file_path": "/aBEzoWyxW3DjAeuMtrgGAphqzjq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1800 - }, - { - "aspect_ratio": 0.681, - "height": 2350, - "iso_639_1": "pt", - "file_path": "/6tIhfkc52XQnxzbMYeV9XK90NTG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6dX0u0W5YDrg4CKYzxWC4cde0Of.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1000, - "iso_639_1": "es", - "file_path": "/nfY0LdXZzggFKfjhyHVEHZfO484.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 700 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "en", - "file_path": "/wvNF1Q5SSXUwWlKQ2Rae6yLoK2C.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "pt", - "file_path": "/eqTYmtZKv4RGJiIQy6P6KyMNJ3h.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.681, - "height": 2350, - "iso_639_1": "pt", - "file_path": "/cJyxQYBhbSAdP8UR8rKCsTUjhqb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sK8Cpw6NqUFw0qVao94LcUOzlSg.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zjLpFWqcEK3hAI9NpZPXUXuUxvd.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bhMmniJ0Hosy0mjYFFSN97lWAI2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dfXwzohYz5IHp6h5tYIcwUIVSu.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5EypjzJzxGdNtQy4BGU1g1qIZRC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2358, - "iso_639_1": "en", - "file_path": "/rh9KdeelIt1aab8475GQW0rTWiC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1572 - }, - { - "aspect_ratio": 0.675, - "height": 1037, - "iso_639_1": "en", - "file_path": "/ejxknWbPvvivFg1im3PflkNjcaQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 700 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": "en", - "file_path": "/u0Org7QtBAAVHPeDlECdrZ91j9V.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1040 - }, - { - "aspect_ratio": 0.741, - "height": 1884, - "iso_639_1": "en", - "file_path": "/aTNOSYf1ZJXP35WjjBYPNhz44NB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1396 - }, - { - "aspect_ratio": 0.667, - "height": 1296, - "iso_639_1": "en", - "file_path": "/5e4Sq9kMvvhu7RwNKshYR4XpA8A.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "en", - "file_path": "/c7E7Uqr9DRoIxsmIsvSyK1HsXO5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/6xSFeacDWPFkJYF3pMcw4ti3taz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qAQfhZK0is1Detqsl1zTN3Juz1T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/rKaSNuu95P1iVcdJfqx2MAlmoDV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1152 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "pt", - "file_path": "/3cbeF5MIzhNOJNE5twLdeBZ6HlR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "en", - "file_path": "/bEWMEfK15H5UErSYxS6JqrYBLQy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 0.658, - "height": 760, - "iso_639_1": null, - "file_path": "/1zTJgMMHkyRgxzwPEf9oPvifEpo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/4SUv6meTr0gRHmZd4TyoSsxQbLb.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 2358, - "iso_639_1": "en", - "file_path": "/i1cslkbMPrAa2nEGDz0H7BX3cms.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1572 - }, - { - "aspect_ratio": 0.666, - "height": 1283, - "iso_639_1": "en", - "file_path": "/wFtk4YED1WZ8UIbAqIlqzEMHPoy.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 855 - }, - { - "aspect_ratio": 0.666, - "height": 1283, - "iso_639_1": "en", - "file_path": "/zk3MuUemkikP6FLh7bNNyE41gjr.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 855 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/t7SXSS54Mn8eVB5yJZRjMPjIB4u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/h2hArYuTYf16v0ZERRd24KdySS0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9YlsDgPGp4n9OTApQk8uAzNOJKH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/s6V24pU3EKAf24CSYSoArj6mtdh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1280, - "iso_639_1": "fr", - "file_path": "/s3WnF5NKpCicYayfi5aHcgIukx3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 854 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/oJJziIZdIeDmHQEiKmEMUY3x0fK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/kFUTnBapLPe7EZIkfQkiC4hIidK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/aK7UybY20HSfHc63ZWQYXKY5tOh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/uFgLKkEEKZbEXLMl9mS4ZGfmN2K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/c1rvuav5bvSoo1EemSLWDnLQZ1W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/aQuTCt1a00NWPYhUBO96pKV1kWt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.666, - "height": 1714, - "iso_639_1": "es", - "file_path": "/qO0L1PzZCmqhRrYUuPvGXdysMdG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1142 - }, - { - "aspect_ratio": 0.71, - "height": 1408, - "iso_639_1": "cn", - "file_path": "/sDPWTp3yBoYHmiwlZew8d6IIEXF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1tRlHHTRJby56hBATrIzKoP8c2s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1434 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "th", - "file_path": "/cuWRbtQkB5xvQkNhT1Njtbruoul.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1434 - }, - { - "aspect_ratio": 0.75, - "height": 800, - "iso_639_1": "tr", - "file_path": "/plUHdnkGw42B1GKm6S6nLTi5ed2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/fi337dUQz2A40CCCxATBHt1Xl62.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/nWnFHHM2VoQcg7ocYIrw0S6o181.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/449CMENQ3XDF9bT2mkUvizoIhfH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/pvgVw9AKndFUBT18sF09HGZUK2C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vZibEu3qfcDfhyNAg1uLOzCcWoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rCCir3gwRl5JmoOBwRyu19Or1wG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eq5v0pzijtjBCRwr6K8LQsiQxSd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/m5lh7C9fIbgeQgWTtWKpYsdg871.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7UIoHNeHQ6qo0odERsL0YrF95BP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": "en", - "file_path": "/w4GquQAXuGz00Ll8b4MrmTGXZGl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 0.737, - "height": 1411, - "iso_639_1": null, - "file_path": "/b3uA0HvVdyPMsBEvU0BifmjSbYs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": null, - "file_path": "/7JsNlDLJuACubzGedMp9j1vLDiy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 2544, - "iso_639_1": "en", - "file_path": "/mOjZ9OlmeYBYRS8uv4OI6JGT3mE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1696 - }, - { - "aspect_ratio": 0.666, - "height": 1472, - "iso_639_1": "en", - "file_path": "/hg47LQ4t0syjwB5ZCgey8xC8nfp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 981 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/m84qrULV142MMieKlpLXTRf0nTF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/nTudfuXOrEFMl2BNlhxlwLXHtTp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/j2ukEOeTjDfFcH8StzbCuOsgkWZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "pt", - "file_path": "/pzXUL3QugPm7gUcoI8aVNUPnL16.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/y7bOXaWkozKZbXXi8tMNZI9jxO5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aXtIz4EgGuESORBECQg77qLZWgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/kW0IVRTWFPipgXAdMlYVKcmXqRW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 981, - "iso_639_1": "sk", - "file_path": "/kMhNvWgkaIpHo69zIKvW3HaKFhG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 654 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/wFiqgA2pI4udd3bSuzxUU2vkcfz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7HAt93cxFVyFepOUBencWaTTfn6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/ddA1cWOlmYbjTHxIl17RXOj4rDZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/9YvV9x8xIiV2MxpmTMwx5xv64Uo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/1085218.json b/examples/view-transitions/src/content/movies/1085218.json deleted file mode 100644 index e5de6d3d776c..000000000000 --- a/examples/view-transitions/src/content/movies/1085218.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/e8FyMnifoN5BMuRFE97fS1lJZ6S.jpg", - "belongs_to_collection": { - "id": 1153632, - "name": "Darkland Collection", - "poster_path": null, - "backdrop_path": null - }, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "", - "id": 1085218, - "imdb_id": "tt20204996", - "original_language": "da", - "original_title": "Underverden 2", - "overview": "Seven years ago, Zaid went to war against the Copenhagen underworld to avenge his dead brother. His identity as a respected doctor of cardiology and life as a family man is but a fading dream, and in prison Zaid suffers the loss of his son Noah, whom he barely knows. When a police agent approaches Zaid and offers him a deal to be released in exchange for infiltrating the Copenhagen underworld, he sees his chance to reclaim the remnants of the family life he left behind. But everything has a price, and Zaid realizes that he has now seriously endangered his son's life. After all, once you become part of the underworld, is there any way out?", - "popularity": 524.476, - "poster_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "production_companies": [ - { - "id": 64293, - "logo_path": "/lbYGnir9KeY8NyQZrUFZbf3QDej.png", - "name": "Profile Pictures", - "origin_country": "DK" - } - ], - "production_countries": [{ "iso_3166_1": "DK", "name": "Denmark" }], - "release_date": "2023-04-13", - "revenue": 0, - "runtime": 110, - "spoken_languages": [ - { "english_name": "Arabic", "iso_639_1": "ar", "name": "العربية" }, - { "english_name": "Danish", "iso_639_1": "da", "name": "Dansk" } - ], - "status": "Released", - "tagline": "", - "title": "Darkland: The Return", - "video": false, - "vote_average": 6.32, - "vote_count": 64, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 234907, - "known_for_department": "Acting", - "name": "Dar Salim", - "original_name": "Dar Salim", - "popularity": 16.442, - "profile_path": "/oTYCqdF6nfZTsvt1fbypi54ydI.jpg", - "cast_id": 1, - "character": "Zaid", - "credit_id": "6429b39701b1ca0113cc2840", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 90514, - "known_for_department": "Acting", - "name": "Birgitte Hjort Sørensen", - "original_name": "Birgitte Hjort Sørensen", - "popularity": 9.741, - "profile_path": "/uPak0FlCPdsc9B1pw4bBkuaMLXT.jpg", - "cast_id": 2, - "character": "Helle", - "credit_id": "6429b3d101b1ca00d5e8507e", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 32682, - "known_for_department": "Acting", - "name": "Stine Fischer Christensen", - "original_name": "Stine Fischer Christensen", - "popularity": 3.87, - "profile_path": "/6MYODCa28L1IzfhcYTUZUYThoF2.jpg", - "cast_id": 3, - "character": "Stine", - "credit_id": "6429b42c9cc67b05796bcdcc", - "order": 2 - }, - { - "adult": false, - "gender": 0, - "id": 1178394, - "known_for_department": "Acting", - "name": "Henrik Vestergaard", - "original_name": "Henrik Vestergaard", - "popularity": 0.766, - "profile_path": "/1Opgkbdkyt1x5iEOLgV3VJ29ZpA.jpg", - "cast_id": 4, - "character": "Lars", - "credit_id": "6429b45401b1ca0097fdfb0f", - "order": 3 - }, - { - "adult": false, - "gender": 0, - "id": 3236472, - "known_for_department": "Acting", - "name": "Soheil Bavi", - "original_name": "Soheil Bavi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 5, - "character": "Muhdir", - "credit_id": "6429b4828de0ae00b65514de", - "order": 4 - }, - { - "adult": false, - "gender": 0, - "id": 3991209, - "known_for_department": "Acting", - "name": "Jack Pedersen", - "original_name": "Jack Pedersen", - "popularity": 0.648, - "profile_path": null, - "cast_id": 6, - "character": "Shahin", - "credit_id": "6429b4f4ac8e6b00d32aa4eb", - "order": 5 - }, - { - "adult": false, - "gender": 0, - "id": 2595279, - "known_for_department": "Acting", - "name": "Mohamed Djeziri", - "original_name": "Mohamed Djeziri", - "popularity": 0.84, - "profile_path": null, - "cast_id": 11, - "character": "", - "credit_id": "64c14243871b340101072cf6", - "order": 6 - }, - { - "adult": false, - "gender": 0, - "id": 4188787, - "known_for_department": "Acting", - "name": "Abud Mustafa", - "original_name": "Abud Mustafa", - "popularity": 0.98, - "profile_path": null, - "cast_id": 12, - "character": "", - "credit_id": "64c6c269db8a0000e3286594", - "order": 7 - }, - { - "adult": false, - "gender": 0, - "id": 4188788, - "known_for_department": "Acting", - "name": "Ahmad Ayman", - "original_name": "Ahmad Ayman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 13, - "character": "", - "credit_id": "64c6c27f63aad20209a58505", - "order": 8 - }, - { - "adult": false, - "gender": 0, - "id": 4188789, - "known_for_department": "Acting", - "name": "Sebastian Nørgaard", - "original_name": "Sebastian Nørgaard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 14, - "character": "", - "credit_id": "64c6c298db8a0000e32865ab", - "order": 9 - }, - { - "adult": false, - "gender": 0, - "id": 4188791, - "known_for_department": "Acting", - "name": "Hamed \"Baloosh\" Balosha", - "original_name": "Hamed \"Baloosh\" Balosha", - "popularity": 0.6, - "profile_path": null, - "cast_id": 15, - "character": "", - "credit_id": "64c6c2a3eec5b500ff5262cb", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3549264, - "known_for_department": "Acting", - "name": "Noah Carter", - "original_name": "Noah Carter", - "popularity": 0.6, - "profile_path": null, - "cast_id": 16, - "character": "", - "credit_id": "64c6c2b0cadb6b00c82a2404", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 4188792, - "known_for_department": "Acting", - "name": "Asgar Hansen", - "original_name": "Asgar Hansen", - "popularity": 0.6, - "profile_path": null, - "cast_id": 17, - "character": "", - "credit_id": "64c6c2bc30f79c00c781a97c", - "order": 12 - } - ], - "crew": [ - { - "adult": false, - "gender": 0, - "id": 1183636, - "known_for_department": "Directing", - "name": "Fenar Ahmad", - "original_name": "Fenar Ahmad", - "popularity": 1.646, - "profile_path": null, - "credit_id": "6429b673c04429026b13a94a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 1183636, - "known_for_department": "Directing", - "name": "Fenar Ahmad", - "original_name": "Fenar Ahmad", - "popularity": 1.646, - "profile_path": null, - "credit_id": "642ed070158c8501263ad755", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2405913, - "known_for_department": "Directing", - "name": "Behrouz Bigdeli", - "original_name": "Behrouz Bigdeli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642ed08058361b00f2f13338", - "department": "Writing", - "job": "Writer" - } - ] - }, - "videos": { "results": [] }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "da", - "file_path": "/4wVFtesa5YEWuAUHRcxoCN1Y1uN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/e8FyMnifoN5BMuRFE97fS1lJZ6S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1116, - "iso_639_1": null, - "file_path": "/tDT465D3JZiABgz2uug9jCgOUlw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - } - ], - "logos": [], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/A8EPXv3SV9qiNCIttIM4ezJRmhW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "da", - "file_path": "/A0cxUcMWBruPknr5ZSePIYFfe7z.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 2834, - "iso_639_1": "en", - "file_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.7, - "height": 2834, - "iso_639_1": "en", - "file_path": "/my1ve6HKygOVNYJBi3A0pRpPm2l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/1880.json b/examples/view-transitions/src/content/movies/1880.json deleted file mode 100644 index abfc5fd6f81e..000000000000 --- a/examples/view-transitions/src/content/movies/1880.json +++ /dev/null @@ -1,1547 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "belongs_to_collection": null, - "budget": 17000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" }, - { "id": 10752, "name": "War" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 1880, - "imdb_id": "tt0087985", - "original_language": "en", - "original_title": "Red Dawn", - "overview": "It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.", - "popularity": 579.024, - "poster_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "production_companies": [ - { "id": 774, "logo_path": null, "name": "Valkyrie Films", "origin_country": "" }, - { - "id": 60, - "logo_path": "/1SEj4nyG3JPBSKBbFhtdcHRaIF9.png", - "name": "United Artists", - "origin_country": "US" - }, - { - "id": 21, - "logo_path": "/5Va1Ie5c4sjfEYqixQ3L8qg7fKu.png", - "name": "Metro-Goldwyn-Mayer", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "1984-08-10", - "revenue": 38376497, - "runtime": 114, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Russian", "iso_639_1": "ru", "name": "Pусский" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "In our time, no foreign army has ever occupied American soil. Until now.", - "title": "Red Dawn", - "video": false, - "vote_average": 6.3, - "vote_count": 670, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 723, - "known_for_department": "Acting", - "name": "Patrick Swayze", - "original_name": "Patrick Swayze", - "popularity": 20.808, - "profile_path": "/md10KJbLxmOZMD9dvebySJR9qE7.jpg", - "cast_id": 1, - "character": "Jed", - "credit_id": "52fe431dc3a36847f803b5af", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 6952, - "known_for_department": "Acting", - "name": "Charlie Sheen", - "original_name": "Charlie Sheen", - "popularity": 11.152, - "profile_path": "/sxoSLhXPEL1Hp1yaTpejTLfd1As.jpg", - "cast_id": 5, - "character": "Matt", - "credit_id": "52fe431dc3a36847f803b5bf", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2878, - "known_for_department": "Acting", - "name": "C. Thomas Howell", - "original_name": "C. Thomas Howell", - "popularity": 15.73, - "profile_path": "/739YbFWpAYyo9neHvBGThgmT4YH.jpg", - "cast_id": 2, - "character": "Robert", - "credit_id": "52fe431dc3a36847f803b5b3", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 1063, - "known_for_department": "Acting", - "name": "Lea Thompson", - "original_name": "Lea Thompson", - "popularity": 14.015, - "profile_path": "/85E9NTEfkRdUdK4kTrrnk5of25w.jpg", - "cast_id": 3, - "character": "Erica", - "credit_id": "52fe431dc3a36847f803b5b7", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2884, - "known_for_department": "Acting", - "name": "Darren Dalton", - "original_name": "Darren Dalton", - "popularity": 1.142, - "profile_path": "/1wN9qopLWKS7PnJrRB0mR3XWwOQ.jpg", - "cast_id": 4, - "character": "Daryl", - "credit_id": "52fe431dc3a36847f803b5bb", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 722, - "known_for_department": "Acting", - "name": "Jennifer Grey", - "original_name": "Jennifer Grey", - "popularity": 13.838, - "profile_path": "/dY8mECHnrLvr4UQr61Ym78cakoA.jpg", - "cast_id": 12, - "character": "Toni", - "credit_id": "52fe431dc3a36847f803b5e7", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 6280, - "known_for_department": "Acting", - "name": "Powers Boothe", - "original_name": "Powers Boothe", - "popularity": 7.789, - "profile_path": "/dOwVFE10FgpLXrKhPdEAplpESjR.jpg", - "cast_id": 19, - "character": "Lt. Col. Andrew 'Andy' Tanner", - "credit_id": "52fe431dc3a36847f803b607", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 19737, - "known_for_department": "Acting", - "name": "Brad Savage", - "original_name": "Brad Savage", - "popularity": 1.086, - "profile_path": "/wmmtbypvyJQy26zrldTAXpWPrEF.jpg", - "cast_id": 13, - "character": "Danny", - "credit_id": "52fe431dc3a36847f803b5eb", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 8258, - "known_for_department": "Acting", - "name": "Ben Johnson", - "original_name": "Ben Johnson", - "popularity": 5.093, - "profile_path": "/VJYWJAOLcLE1WyG1v8W2h7TahA.jpg", - "cast_id": 16, - "character": "Mr. Mason", - "credit_id": "52fe431dc3a36847f803b5fb", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 5048, - "known_for_department": "Acting", - "name": "Harry Dean Stanton", - "original_name": "Harry Dean Stanton", - "popularity": 9.069, - "profile_path": "/197UiLVdxPOv8196sqmUpJzOQB5.jpg", - "cast_id": 17, - "character": "Mr. Eckert", - "credit_id": "52fe431dc3a36847f803b5ff", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 98102, - "known_for_department": "Acting", - "name": "William Smith", - "original_name": "William Smith", - "popularity": 15.42, - "profile_path": "/iyIc5xoLPzcy73nQWIZH2nlTarg.jpg", - "cast_id": 18, - "character": "Strelnikov", - "credit_id": "52fe431dc3a36847f803b603", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 55841, - "known_for_department": "Acting", - "name": "Ron O'Neal", - "original_name": "Ron O'Neal", - "popularity": 2.989, - "profile_path": "/aqcIHjX3MfbdViZlb4jPfzaDsEp.jpg", - "cast_id": 22, - "character": "Col Ernesto Bella", - "credit_id": "5830806192514162d8012131", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 39036, - "known_for_department": "Acting", - "name": "Vladek Sheybal", - "original_name": "Vladek Sheybal", - "popularity": 4.243, - "profile_path": "/1DT8AE1sD7ADGaoPxYvYo1EzrKz.jpg", - "cast_id": 23, - "character": "Bratchenko", - "credit_id": "5830807ac3a3685b93012039", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 1735, - "known_for_department": "Acting", - "name": "Frank McRae", - "original_name": "Frank McRae", - "popularity": 3.538, - "profile_path": "/tkEt3ACC46Zjm8pmPVBXva0p84Q.jpg", - "cast_id": 24, - "character": "Mr. Teasdale", - "credit_id": "5830809692514162c30129cf", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 65019, - "known_for_department": "Acting", - "name": "Lane Smith", - "original_name": "Lane Smith", - "popularity": 3.73, - "profile_path": "/stmbrf2qdq6umxt3Jh30IDhCfi3.jpg", - "cast_id": 25, - "character": "Mayor Bates", - "credit_id": "583080a892514162cf012b18", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 12298, - "known_for_department": "Acting", - "name": "Roy Jenson", - "original_name": "Roy Jenson", - "popularity": 2.577, - "profile_path": "/c0e49ddO1igeztMSrGPDmx4EyTo.jpg", - "cast_id": 26, - "character": "Samuel Morris", - "credit_id": "583080bcc3a3685ba10147e4", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1169, - "known_for_department": "Acting", - "name": "Pepe Serna", - "original_name": "Pepe Serna", - "popularity": 2.439, - "profile_path": "/6fEdr5dpXYjpudCtmvhpZXl9q2F.jpg", - "cast_id": 27, - "character": "Mr. Mondragón", - "credit_id": "583080d2c3a3685bb00120ea", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 1221566, - "known_for_department": "Acting", - "name": "Radames Pera", - "original_name": "Radames Pera", - "popularity": 3.999, - "profile_path": "/u0Wz324ZH2RxjbMNLuODyFRYsn0.jpg", - "cast_id": 28, - "character": "Gorsky", - "credit_id": "583080e7c3a3685ba101482e", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 44819, - "known_for_department": "Acting", - "name": "Judd Omen", - "original_name": "Judd Omen", - "popularity": 4.653, - "profile_path": "/6ZL0ztbCS2WmN4aVRdegl0Gq16I.jpg", - "cast_id": 30, - "character": "The Nicaraguan Captain", - "credit_id": "5ab4c5d10e0a265f2101a4b7", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 59352, - "known_for_department": "Acting", - "name": "Zitto Kazann", - "original_name": "Zitto Kazann", - "popularity": 1.792, - "profile_path": null, - "cast_id": 31, - "character": "Political Officer", - "credit_id": "5ab4c60a0e0a265f2101a4eb", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1850434, - "known_for_department": "Acting", - "name": "Doug Toby", - "original_name": "Doug Toby", - "popularity": 0.6, - "profile_path": null, - "cast_id": 72, - "character": "Aardvark", - "credit_id": "640ae365caaca200d7362828", - "order": 20 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 8328, - "known_for_department": "Writing", - "name": "John Milius", - "original_name": "John Milius", - "popularity": 6.639, - "profile_path": "/5e9PS8MtgEqpSAeqgUp7gaVU0gU.jpg", - "credit_id": "52fe431dc3a36847f803b5f1", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 8328, - "known_for_department": "Writing", - "name": "John Milius", - "original_name": "John Milius", - "popularity": 6.639, - "profile_path": "/5e9PS8MtgEqpSAeqgUp7gaVU0gU.jpg", - "credit_id": "52fe431dc3a36847f803b5d7", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 3719, - "known_for_department": "Art", - "name": "Adrian Gorton", - "original_name": "Adrian Gorton", - "popularity": 0.991, - "profile_path": null, - "credit_id": "62f87427cffeed00820e417c", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 375, - "known_for_department": "Sound", - "name": "Bub Asman", - "original_name": "Bub Asman", - "popularity": 1.14, - "profile_path": null, - "credit_id": "62f875321cac8c007a3031cb", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1728, - "known_for_department": "Camera", - "name": "Ric Waite", - "original_name": "Ric Waite", - "popularity": 0.862, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5dd", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 2874, - "known_for_department": "Production", - "name": "Janet Hirshenson", - "original_name": "Janet Hirshenson", - "popularity": 2.317, - "profile_path": null, - "credit_id": "62f8730c1750510084a33550", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 3275, - "known_for_department": "Production", - "name": "Jane Jenkins", - "original_name": "Jane Jenkins", - "popularity": 2.033, - "profile_path": "/aVOlC6UkKaxZpzvpdRxCjkMtJHI.jpg", - "credit_id": "62f873056f53e1007edc8819", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 4142, - "known_for_department": "Production", - "name": "Elisabeth Leustig", - "original_name": "Elisabeth Leustig", - "popularity": 2.744, - "profile_path": null, - "credit_id": "62f874c2258823007a7b3f91", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 2, - "id": 4434, - "known_for_department": "Camera", - "name": "Frederick Elmes", - "original_name": "Frederick Elmes", - "popularity": 1.153, - "profile_path": null, - "credit_id": "62f87448724de1007d214fb5", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 7716, - "known_for_department": "Art", - "name": "Jackson De Govia", - "original_name": "Jackson De Govia", - "popularity": 0.965, - "profile_path": null, - "credit_id": "5ab4c5789251417afb018c85", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 7728, - "known_for_department": "Sound", - "name": "Basil Poledouris", - "original_name": "Basil Poledouris", - "popularity": 3.777, - "profile_path": "/8itBIwQLzi9VkoMeKYreVpBO5QV.jpg", - "credit_id": "52fe431dc3a36847f803b5d1", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 8277, - "known_for_department": "Production", - "name": "Arne Schmidt", - "original_name": "Arne Schmidt", - "popularity": 2.036, - "profile_path": null, - "credit_id": "62f873a72faf4d00795d26a7", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 9972, - "known_for_department": "Crew", - "name": "Dale L. Martin", - "original_name": "Dale L. Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874b52faf4d00795d26ff", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 2, - "id": 12040, - "known_for_department": "Costume & Make-Up", - "name": "George L. Little", - "original_name": "George L. Little", - "popularity": 0.62, - "profile_path": null, - "credit_id": "62f874731cac8c007a30318a", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 12882, - "known_for_department": "Production", - "name": "Buzz Feitshans", - "original_name": "Buzz Feitshans", - "popularity": 0.713, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5cb", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 12884, - "known_for_department": "Production", - "name": "Elliot Schick", - "original_name": "Elliot Schick", - "popularity": 0.763, - "profile_path": null, - "credit_id": "62f8736ce323f3007bc9b7cb", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 16552, - "known_for_department": "Sound", - "name": "Fred J. Brown", - "original_name": "Fred J. Brown", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8751ecffeed007d9eedc4", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 16573, - "known_for_department": "Sound", - "name": "Denise Horta", - "original_name": "Denise Horta", - "popularity": 1.18, - "profile_path": null, - "credit_id": "62f8755bcffeed00820e41eb", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 17399, - "known_for_department": "Editing", - "name": "Thom Noble", - "original_name": "Thom Noble", - "popularity": 0.943, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5e3", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 19423, - "known_for_department": "Production", - "name": "Sidney Beckerman", - "original_name": "Sidney Beckerman", - "popularity": 0.84, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b613", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19567, - "known_for_department": "Crew", - "name": "Terry Leonard", - "original_name": "Terry Leonard", - "popularity": 3.096, - "profile_path": "/iRejgxxjuMXfLLYHXGCInX288B.jpg", - "credit_id": "62f873e06f53e1007b385dc2", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 19567, - "known_for_department": "Crew", - "name": "Terry Leonard", - "original_name": "Terry Leonard", - "popularity": 3.096, - "profile_path": "/iRejgxxjuMXfLLYHXGCInX288B.jpg", - "credit_id": "62f873f6e78687007ac8e228", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 19736, - "known_for_department": "Writing", - "name": "Barry Beckerman", - "original_name": "Barry Beckerman", - "popularity": 1.103, - "profile_path": null, - "credit_id": "52fe431dc3a36847f803b5c5", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 8300, - "known_for_department": "Directing", - "name": "Kevin Reynolds", - "original_name": "Kevin Reynolds", - "popularity": 3.26, - "profile_path": "/nLFx6wt9DVeYjTv2abGdY09ALsm.jpg", - "credit_id": "52fe431dc3a36847f803b5f7", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 8300, - "known_for_department": "Directing", - "name": "Kevin Reynolds", - "original_name": "Kevin Reynolds", - "popularity": 3.26, - "profile_path": "/nLFx6wt9DVeYjTv2abGdY09ALsm.jpg", - "credit_id": "52fe431dc3a36847f803b60d", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 55245, - "known_for_department": "Camera", - "name": "John R. Shannon", - "original_name": "John R. Shannon", - "popularity": 0.606, - "profile_path": null, - "credit_id": "62f874d97eb5f2007ea42e89", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 43010, - "known_for_department": "Acting", - "name": "Thomas Rosales Jr.", - "original_name": "Thomas Rosales Jr.", - "popularity": 5.1, - "profile_path": "/tlJzLctGc6UmB7JQrkFcdMEuRx3.jpg", - "credit_id": "6429a873a3e4ba1cb5eb0368", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 75127, - "known_for_department": "Costume & Make-Up", - "name": "Lance Anderson", - "original_name": "Lance Anderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874516f53e1007edc8873", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 75251, - "known_for_department": "Sound", - "name": "Harry V. Lojewski", - "original_name": "Harry V. Lojewski", - "popularity": 1.052, - "profile_path": null, - "credit_id": "62f875a325882300821fd105", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 79664, - "known_for_department": "Production", - "name": "Jim Behnke", - "original_name": "Jim Behnke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f873b67eb5f200830b1c2f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 91915, - "known_for_department": "Crew", - "name": "Ross Reynolds", - "original_name": "Ross Reynolds", - "popularity": 0.744, - "profile_path": null, - "credit_id": "5e9541dcaf58cb0014db943e", - "department": "Crew", - "job": "Pilot" - }, - { - "adult": false, - "gender": 0, - "id": 559903, - "known_for_department": "Costume & Make-Up", - "name": "Lola 'Skip' McNalley", - "original_name": "Lola 'Skip' McNalley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874646f53e10083f490cf", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 949558, - "known_for_department": "Costume & Make-Up", - "name": "Wes Dawn", - "original_name": "Wes Dawn", - "popularity": 1.252, - "profile_path": null, - "credit_id": "62f87458e78687007f12ef8f", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1116961, - "known_for_department": "Sound", - "name": "Joe Kenworthy", - "original_name": "Joe Kenworthy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874cfa313b80084e6e7f4", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1339183, - "known_for_department": "Art", - "name": "Vincent M. Cresciman", - "original_name": "Vincent M. Cresciman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874122faf4d00795d26cc", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1339319, - "known_for_department": "Sound", - "name": "Alex Bamattre", - "original_name": "Alex Bamattre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8753c724de1007d214ff9", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1339961, - "known_for_department": "Crew", - "name": "Terry Collis", - "original_name": "Terry Collis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f875aee78687009133c578", - "department": "Crew", - "job": "Transportation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1390233, - "known_for_department": "Production", - "name": "Joseph D'Agosta", - "original_name": "Joseph D'Agosta", - "popularity": 1.025, - "profile_path": null, - "credit_id": "62f8749a48333a008041bc2b", - "department": "Production", - "job": "Additional Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1394921, - "known_for_department": "Sound", - "name": "Carlos Delarios", - "original_name": "Carlos Delarios", - "popularity": 0.98, - "profile_path": null, - "credit_id": "62f8758c77d23b007b79c00c", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394922, - "known_for_department": "Sound", - "name": "Michael J. Kohut", - "original_name": "Michael J. Kohut", - "popularity": 0.932, - "profile_path": null, - "credit_id": "62f8756b48333a0083efcd82", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394924, - "known_for_department": "Sound", - "name": "Aaron Rochin", - "original_name": "Aaron Rochin", - "popularity": 0.652, - "profile_path": null, - "credit_id": "62f87574e78687007ac8e2a8", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1399146, - "known_for_department": "Directing", - "name": "Carline Davis-Dyer", - "original_name": "Carline Davis-Dyer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874eef92532007e9a5b60", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1434205, - "known_for_department": "Art", - "name": "Dennis J. Parrish", - "original_name": "Dennis J. Parrish", - "popularity": 0.979, - "profile_path": null, - "credit_id": "62f874a477d23b008b0dd2fa", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 1446537, - "known_for_department": "Crew", - "name": "Ed Pine", - "original_name": "Ed Pine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f874e32faf4d007c6c4373", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 0, - "id": 1538745, - "known_for_department": "Costume & Make-Up", - "name": "Julie Starr Dresner", - "original_name": "Julie Starr Dresner", - "popularity": 1.048, - "profile_path": null, - "credit_id": "62f87486f92532007e9a5b36", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 1550730, - "known_for_department": "Editing", - "name": "Bob Kaiser", - "original_name": "Bob Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f875b9a313b80084e6e846", - "department": "Editing", - "job": "Color Timer" - }, - { - "adult": false, - "gender": 1, - "id": 1564476, - "known_for_department": "Sound", - "name": "Michele Sharp", - "original_name": "Michele Sharp", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f87529f92532007bbdcf65", - "department": "Sound", - "job": "Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1745776, - "known_for_department": "Sound", - "name": "Stan Witt", - "original_name": "Stan Witt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f87596e267de007eb82c87", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1776971, - "known_for_department": "Sound", - "name": "Lauren Palmer", - "original_name": "Lauren Palmer", - "popularity": 0.606, - "profile_path": null, - "credit_id": "62f8754f7eb5f2007ea42eac", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1821435, - "known_for_department": "Art", - "name": "Lowell Chambers", - "original_name": "Lowell Chambers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8741d596a91009b0d5d48", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1896609, - "known_for_department": "Costume & Make-Up", - "name": "Dan Chichester", - "original_name": "Dan Chichester", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62f8747d389da1007b8b6560", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3333772, - "known_for_department": "Art", - "name": "Brandy Alexander", - "original_name": "Brandy Alexander", - "popularity": 0.698, - "profile_path": null, - "credit_id": "62f87432724de1007d214fb0", - "department": "Art", - "job": "Set Designer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | The Teens Set Up a Trap | MGM", - "key": "8F6hRiSBZ7A", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-05T20:00:02.000Z", - "id": "631f6f2d58efd300847368c6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | Dad's Goodbye: 'Avenge Me' Scene | MGM", - "key": "TSGD4lEUY-k", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-03T20:00:05.000Z", - "id": "6316053f0c125500923b0038" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "RED DAWN (1984) | Opening Scene: Paramilitary Invasion | MGM", - "key": "jooIG9BuEUk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2022-09-02T20:00:18.000Z", - "id": "6316054d02842000830dd1ea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Clip 2: The Wolverines (HD)", - "key": "d5b69FRBuLk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2017-03-14T20:38:07.000Z", - "id": "631f72c30b7316007dc440d5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "kZLLKwFpFG4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2017-03-14T20:38:06.000Z", - "id": "5dd47e258c40f70014bc2315" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Bonus Clip 1: Casting Lea Thompson and Jennifer Grey (HD)", - "key": "FaxDzk74q4Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2017-03-14T20:38:05.000Z", - "id": "631605a8d40d4c007ddd02d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Red Dawn (1984) - Bonus Clip 2: The Weapons (HD)", - "key": "b6PoKnBJyCU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2017-03-14T20:38:05.000Z", - "id": "631605ba7fcab30091dd706f" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5eU8WPfMg8uBhoGdza0gtPMr1t9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/gixMkOcooKLTITxht7xbkk59NN3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uXviGCQaCCUF9npPebz7AE9lv1p.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1036, - "iso_639_1": null, - "file_path": "/yAHggsTKuGHD7J3TvH6OkaFkfti.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1842 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/mX9bv5KzgZlVg9KqGD6DSGW2pPP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/gbXWRK5pJeddW0EeqoNaiY17lp1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/knCcHn1LX2mJIdcVOS7jGqwppL9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/wBvBxhQvEUqy62KHKa361BHwIYq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/5cWS9uuAoCQACzrO5xOjfZIQ4Hs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/fXuoRXwy8kVJW72lnlW7hOzlwSs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/8B4WsWTa6WDs5VWrLZOR55jFQwt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/lIpV7tyoxlJf1b3LNtk69WuMm2O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/vgFME1CQTIamz5fdH73HjHZQAXV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/A2cLxljNmHJK5DhiOg773tPqFoS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/jOc4ETdjQAGKknqGgFgNaxK43fE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/qkRsX8xVlEFXCUhE3mfLjzsCASL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - }, - { - "aspect_ratio": 1.778, - "height": 1040, - "iso_639_1": null, - "file_path": "/aQw6yys8i7ADgGGXYd8v0Qrgj4D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1849 - } - ], - "logos": [ - { - "aspect_ratio": 3.721, - "height": 233, - "iso_639_1": "pt", - "file_path": "/qQaDlU8pzTcEST6TpmmGshBrGsS.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 867 - }, - { - "aspect_ratio": 2.399, - "height": 296, - "iso_639_1": "en", - "file_path": "/aqj2NalzeqYy5xoX3upf3VrOF1S.png", - "vote_average": 0, - "vote_count": 0, - "width": 710 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.693, - "height": 1535, - "iso_639_1": "de", - "file_path": "/5GML4GCINRPpvYVxHriiEMAOKmF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1063 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/rSKaVidsftj7ttDRT0htsVA2gbO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/jseJLFUrANo0bvQrwELq62DtSsi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/p66hn6JWfBZe9kj2UdYp3p2LRsK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2864, - "iso_639_1": "en", - "file_path": "/5grYNTqeJSzIvTNMZ3lycDi2mXd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1909 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "fr", - "file_path": "/f60nY59ezmsHbPcmQV53T2DycfU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/czuLv6kLez43glyPtCjzCs7ocC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3LihAXYzvB5nrfSBJRmdYoFjUWT.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/p01KcZDk2pdwsvrsF58A1W9PrIP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.721, - "height": 2333, - "iso_639_1": "es", - "file_path": "/zWzkCNltVaYaa4veMlzsZEBQpy0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1681 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "fr", - "file_path": "/vkar6pw3cIe3D7d1OoJiuBbDpC2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gNj3AmfEecjuM9mjG6MOIr8bNsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.699, - "height": 1000, - "iso_639_1": "it", - "file_path": "/8W4OxkmQnzmeTHEUzz8ETcrZUU7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 699 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/tdwJa4r2G4jXwUMrPVNsuOouPjK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "es", - "file_path": "/7Z1NgiJ3cq5tasdfKVuAmcJpXyK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.702, - "height": 1000, - "iso_639_1": "pt", - "file_path": "/cmqaGAtKlcGsp1MmOfrxbeg66me.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 702 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/d3GIjSfR3qnQRbixGoROTnHQyBL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.68, - "height": 750, - "iso_639_1": "en", - "file_path": "/hHIjv3N80ii3UsOgxToZ4ODIt2n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 510 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "es", - "file_path": "/vTJTlAZ9jUYgcoxL7cxGHhal8fF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/f6Pp3cDp6Kobr9JSS3EoLTHDR3b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/4AvQjlcrB9uhoBSLEbe5xkGFf9Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2218, - "iso_639_1": "en", - "file_path": "/bII5crX676Sf2dbFpLx6RDO3brF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1479 - }, - { - "aspect_ratio": 0.667, - "height": 2560, - "iso_639_1": "en", - "file_path": "/v3fUiglaQlLLLVE82cHpEh3vq4c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1707 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/qLQt3U6RZCw8INf4bzfvkF3Fr6q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "de", - "file_path": "/ahbnUQyOwXgn1M5AQkP66BeJ0t7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/oMwdpLmRPBmglT7M1j1lNGeMhbk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/298618.json b/examples/view-transitions/src/content/movies/298618.json deleted file mode 100644 index 45b009956bd5..000000000000 --- a/examples/view-transitions/src/content/movies/298618.json +++ /dev/null @@ -1,5708 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "belongs_to_collection": null, - "budget": 300000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" }, - { "id": 878, "name": "Science Fiction" } - ], - "homepage": "https://www.dc.com/theflash", - "id": 298618, - "imdb_id": "tt0439572", - "original_language": "en", - "original_title": "The Flash", - "overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?", - "popularity": 561.181, - "poster_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "production_companies": [ - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { "id": 152809, "logo_path": null, "name": "Double Dream", "origin_country": "US" }, - { "id": 170335, "logo_path": null, "name": "The Disco Factory", "origin_country": "US" }, - { - "id": 128064, - "logo_path": "/13F3Jf7EFAcREU0xzZqJnVnyGXu.png", - "name": "DC Films", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-13", - "revenue": 268375616, - "runtime": 144, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "Russian", "iso_639_1": "ru", "name": "Pусский" } - ], - "status": "Released", - "tagline": "Worlds collide.", - "title": "The Flash", - "video": false, - "vote_average": 6.905, - "vote_count": 2872, - "credits": { - "cast": [ - { - "adult": false, - "gender": 3, - "id": 132157, - "known_for_department": "Acting", - "name": "Ezra Miller", - "original_name": "Ezra Miller", - "popularity": 20.833, - "profile_path": "/s6ulsRYtkaAArXsNC6cvinUiRNc.jpg", - "cast_id": 0, - "character": "Barry Allen / The Flash", - "credit_id": "5447bf27c3a3686e910022ec", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2542319, - "known_for_department": "Acting", - "name": "Sasha Calle", - "original_name": "Sasha Calle", - "popularity": 22.013, - "profile_path": "/1GOW1cejmE8D8T6PRikYlGmUae0.jpg", - "cast_id": 58, - "character": "Kara Zor-El / Supergirl", - "credit_id": "60300ad620ecaf003f149b47", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2232, - "known_for_department": "Acting", - "name": "Michael Keaton", - "original_name": "Michael Keaton", - "popularity": 37.781, - "profile_path": "/82rxrGxOqQW2NjKsIiNbDYHFfmb.jpg", - "cast_id": 49, - "character": "Bruce Wayne / Batman", - "credit_id": "5ef10418283ed900368eb76d", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 335, - "known_for_department": "Acting", - "name": "Michael Shannon", - "original_name": "Michael Shannon", - "popularity": 20.331, - "profile_path": "/6mMczfjM8CiS1WuBOgo5Xom1TcR.jpg", - "cast_id": 82, - "character": "General Zod", - "credit_id": "61c3399737b3a900c3459731", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 17402, - "known_for_department": "Acting", - "name": "Ron Livingston", - "original_name": "Ron Livingston", - "popularity": 16.602, - "profile_path": "/pr5CjWnkaf5WKTIYh8wtNufjmyb.jpg", - "cast_id": 66, - "character": "Henry Allen", - "credit_id": "605ba914a2d2e9002ae2deec", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 16971, - "known_for_department": "Acting", - "name": "Maribel Verdú", - "original_name": "Maribel Verdú", - "popularity": 9.302, - "profile_path": "/5ml5J9yDEV6ZLkinkS7vAHfE882.jpg", - "cast_id": 67, - "character": "Nora Allen", - "credit_id": "605bb0f6e4c9eb003d1da728", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 1253355, - "known_for_department": "Acting", - "name": "Kiersey Clemons", - "original_name": "Kiersey Clemons", - "popularity": 21.087, - "profile_path": "/iZD6EzMGnuHFjFgmO8G1wyiLrTy.jpg", - "cast_id": 61, - "character": "Iris West", - "credit_id": "6042cd788813e40059ddc8ef", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 43202, - "known_for_department": "Acting", - "name": "Antje Traue", - "original_name": "Antje Traue", - "popularity": 17.582, - "profile_path": "/xEwHBfAtcDCKGvo2lAD9xc55X7O.jpg", - "cast_id": 83, - "character": "Faora-Ul", - "credit_id": "61c339af0102c90065a50a04", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1660888, - "known_for_department": "Acting", - "name": "Saoirse-Monica Jackson", - "original_name": "Saoirse-Monica Jackson", - "popularity": 11.659, - "profile_path": "/5CSLLbQS59BlUPOqaxABQKfnnkz.jpg", - "cast_id": 88, - "character": "Patty Spivot", - "credit_id": "62822d1bfb3f6112716c46e2", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1727045, - "known_for_department": "Acting", - "name": "Rudy Mancuso", - "original_name": "Rudy Mancuso", - "popularity": 3.252, - "profile_path": "/6PtUsjNCYOIN7PjvQin8ck4vfjd.jpg", - "cast_id": 89, - "character": "Albert Desmond", - "credit_id": "62adc3d7944a5703e5b954d7", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 2651020, - "known_for_department": "Acting", - "name": "Ed Wade", - "original_name": "Ed Wade", - "popularity": 0.6, - "profile_path": "/j4Cs33ES3ocdG6jNTOEtP0bjx4w.jpg", - "cast_id": 154, - "character": "Court Reporter", - "credit_id": "648fc2c90f0da500c5f5a5b2", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 16940, - "known_for_department": "Acting", - "name": "Jeremy Irons", - "original_name": "Jeremy Irons", - "popularity": 27.261, - "profile_path": "/w8Ct1q02Ht3sWdOSqfp3B85TzT.jpg", - "cast_id": 119, - "character": "Alfred Pennyworth", - "credit_id": "646c31bc2bcf67011bf4c802", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 7242, - "known_for_department": "Acting", - "name": "Temuera Morrison", - "original_name": "Temuera Morrison", - "popularity": 19.565, - "profile_path": "/1ckHDFgKXJ8pazmvLCW7DeOKqA0.jpg", - "cast_id": 138, - "character": "Thomas Curry", - "credit_id": "648af14542bf0100c7f9e762", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 145997, - "known_for_department": "Acting", - "name": "Sanjeev Bhaskar", - "original_name": "Sanjeev Bhaskar", - "popularity": 10.657, - "profile_path": "/gPFoGWj5VPm4IZVn9sMdBicVh2E.jpg", - "cast_id": 141, - "character": "David Singh", - "credit_id": "648b9828c2ff3d011cb7ffee", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2519858, - "known_for_department": "Acting", - "name": "Sean Rogers", - "original_name": "Sean Rogers", - "popularity": 1.178, - "profile_path": "/hYZiDuFNriFbLvKoQh0PL5h8Gvc.jpg", - "cast_id": 139, - "character": "Gary", - "credit_id": "648b1671c3c891014ebc1ace", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1300306, - "known_for_department": "Acting", - "name": "Kieran Hodgson", - "original_name": "Kieran Hodgson", - "popularity": 1.567, - "profile_path": "/wGm7GopyPDAwSbDbFTPRKCl0xEd.jpg", - "cast_id": 155, - "character": "Sandwich Guy", - "credit_id": "648fc336c2ff3d0139aefedb", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 59096, - "known_for_department": "Acting", - "name": "Luke Brandon Field", - "original_name": "Luke Brandon Field", - "popularity": 2.545, - "profile_path": "/oFxfxwnJAZ6JSSpXWNuAt9ffW8W.jpg", - "cast_id": 113, - "character": "Al Falcone", - "credit_id": "644b9141596a9102fc57c661", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 3023721, - "known_for_department": "Acting", - "name": "Ian Loh", - "original_name": "Ian Loh", - "popularity": 1.286, - "profile_path": "/7NtafmntpvtYbF6bRMEvZDHx7VK.jpg", - "cast_id": 70, - "character": "Kid Barry", - "credit_id": "605bd3863081310053e9d753", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 193356, - "known_for_department": "Acting", - "name": "Karl Collins", - "original_name": "Karl Collins", - "popularity": 3.617, - "profile_path": "/xmKa1IZN5H4TUflTsUZzIAdApMp.jpg", - "cast_id": 156, - "character": "Henry's Lawyer", - "credit_id": "648fc36f263462012d4afbb8", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 12795, - "known_for_department": "Acting", - "name": "Nikolaj Coster-Waldau", - "original_name": "Nikolaj Coster-Waldau", - "popularity": 24.63, - "profile_path": "/rpFOERbHkj7GWxkinUNiQ76sSGk.jpg", - "cast_id": 157, - "character": "Pizza Guy", - "credit_id": "648fc37f45765d00e358623c", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 3951800, - "known_for_department": "Acting", - "name": "Poppy Shepherd", - "original_name": "Poppy Shepherd", - "popularity": 0.6, - "profile_path": null, - "cast_id": 158, - "character": "Flash Fan", - "credit_id": "648fc38cc2ff3d00c59ad428", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 3443007, - "known_for_department": "Acting", - "name": "Nina Barker-Francis", - "original_name": "Nina Barker-Francis", - "popularity": 1.4, - "profile_path": "/cxLvNLHY13Bj5Gr8ZOBYqs4KM0o.jpg", - "cast_id": 159, - "character": "Flash Fan", - "credit_id": "648fc397c2ff3d00ad02d0d1", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4119378, - "known_for_department": "Acting", - "name": "Ava Hamada", - "original_name": "Ava Hamada", - "popularity": 0.6, - "profile_path": null, - "cast_id": 160, - "character": "Flash Fan", - "credit_id": "648fc39f0f0da5011c2b3012", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4119379, - "known_for_department": "Acting", - "name": "Maurice Chung", - "original_name": "Maurice Chung", - "popularity": 0.6, - "profile_path": null, - "cast_id": 161, - "character": "Flash Fan", - "credit_id": "648fc3a52f8d0900c6668e28", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 4119380, - "known_for_department": "Acting", - "name": "Florence Wright", - "original_name": "Florence Wright", - "popularity": 0.6, - "profile_path": null, - "cast_id": 162, - "character": "Baby Nurse", - "credit_id": "648fc40e559d220139be9cd4", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 3144892, - "known_for_department": "Acting", - "name": "Bastian Antonio Fuentes", - "original_name": "Bastian Antonio Fuentes", - "popularity": 1.654, - "profile_path": "/u7SDAocZ7ZCMOCejLRZtZFdb2Bl.jpg", - "cast_id": 163, - "character": "Tony's Son", - "credit_id": "648fc41942bf0100e49f729e", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 240759, - "known_for_department": "Acting", - "name": "Andoni Gracia", - "original_name": "Andoni Gracia", - "popularity": 1.498, - "profile_path": "/xppbj7Or7Ziyi533FascluSLro8.jpg", - "cast_id": 164, - "character": "Tony", - "credit_id": "648fc42626346200ae1c9d68", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4119381, - "known_for_department": "Acting", - "name": "Alex Hank", - "original_name": "Alex Hank", - "popularity": 0.6, - "profile_path": null, - "cast_id": 165, - "character": "Security Guard", - "credit_id": "648fc440c2ff3d00e2e125cb", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4119382, - "known_for_department": "Acting", - "name": "Miki Muschietti", - "original_name": "Miki Muschietti", - "popularity": 0.6, - "profile_path": null, - "cast_id": 166, - "character": "Crying Toddler", - "credit_id": "648fc44f559d2200c57765c7", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 4119383, - "known_for_department": "Acting", - "name": "Rebecca Hiller", - "original_name": "Rebecca Hiller", - "popularity": 0.6, - "profile_path": null, - "cast_id": 167, - "character": "Toddler's Mother", - "credit_id": "648fc47042bf01011e744df9", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 2160754, - "known_for_department": "Crew", - "name": "Rob Hunt", - "original_name": "Rob Hunt", - "popularity": 0.848, - "profile_path": null, - "cast_id": 168, - "character": "Falcone's Crew", - "credit_id": "648fc47b0f0da500c5f5a6d0", - "order": 30 - }, - { - "adult": false, - "gender": 0, - "id": 2752028, - "known_for_department": "Crew", - "name": "Jonny Stockwell", - "original_name": "Jonny Stockwell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 169, - "character": "Falcone's Crew", - "credit_id": "648fc48226346200ca1aef25", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2270892, - "known_for_department": "Crew", - "name": "Michael Byrch", - "original_name": "Michael Byrch", - "popularity": 2.235, - "profile_path": null, - "cast_id": 170, - "character": "Falcone's Crew", - "credit_id": "648fc48a45765d010016d5b6", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 931013, - "known_for_department": "Acting", - "name": "Bret Jones", - "original_name": "Bret Jones", - "popularity": 0.6, - "profile_path": null, - "cast_id": 171, - "character": "Neighbour with Dog", - "credit_id": "648fc49e0f0da500ffa8d61d", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 1793943, - "known_for_department": "Acting", - "name": "Sue Maund", - "original_name": "Sue Maund", - "popularity": 1.689, - "profile_path": "/drwHdpBinA6eweQQ3Yyb0amkPnu.jpg", - "cast_id": 172, - "character": "Neighbour with Dog", - "credit_id": "648fc4a50f0da5011c2b30f3", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 4119385, - "known_for_department": "Acting", - "name": "Alex Batareanu", - "original_name": "Alex Batareanu", - "popularity": 0.986, - "profile_path": "/n8Ieg0jn33pTlnNPmWE9rE0ORQ8.jpg", - "cast_id": 173, - "character": "Russian Captain", - "credit_id": "648fc4f1c2ff3d00c59ad51e", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1654741, - "known_for_department": "Acting", - "name": "Andrei Nova", - "original_name": "Andrei Nova", - "popularity": 1.614, - "profile_path": "/qW4RfbmHffTdiwmuEIQv3oyJ8YA.jpg", - "cast_id": 174, - "character": "Russian Guard", - "credit_id": "648fc4ffc2ff3d00ffbc5494", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1459975, - "known_for_department": "Acting", - "name": "Gabriel Constantin", - "original_name": "Gabriel Constantin", - "popularity": 1.774, - "profile_path": "/zwTHzcYGoho4gbVdYVfMqF5Wxq3.jpg", - "cast_id": 175, - "character": "Head Scientist", - "credit_id": "648fc50cc3c89100cadb19a5", - "order": 37 - }, - { - "adult": false, - "gender": 2, - "id": 1599253, - "known_for_department": "Acting", - "name": "Oleg Mirochnikov", - "original_name": "Oleg Mirochnikov", - "popularity": 2.549, - "profile_path": "/eWfA64TAF7xsGVfxL9KCqf12FEg.jpg", - "cast_id": 176, - "character": "Scientist", - "credit_id": "648fc5140f0da50139039ea8", - "order": 38 - }, - { - "adult": false, - "gender": 1, - "id": 1620249, - "known_for_department": "Acting", - "name": "Katia Elizarova", - "original_name": "Katia Elizarova", - "popularity": 3.209, - "profile_path": "/bQBgjTNlhEDiObJJuEo2NVkLE7W.jpg", - "cast_id": 177, - "character": "Scientist", - "credit_id": "648fc51b45765d00e3586345", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 1347131, - "known_for_department": "Acting", - "name": "Denis Khoroshko", - "original_name": "Denis Khoroshko", - "popularity": 1.4, - "profile_path": "/rbvHeDJ4fYUoJd43ajxQ38h2ZB3.jpg", - "cast_id": 178, - "character": "Scientist", - "credit_id": "648fc52245765d011dbfec86", - "order": 40 - }, - { - "adult": false, - "gender": 1, - "id": 4119386, - "known_for_department": "Acting", - "name": "Zsuzsa Magyar", - "original_name": "Zsuzsa Magyar", - "popularity": 0.618, - "profile_path": "/oUU2DMVEO6p9HFs5ifPNZMxuYn0.jpg", - "cast_id": 179, - "character": "Scientist", - "credit_id": "648fc531559d2200e207162e", - "order": 41 - }, - { - "adult": false, - "gender": 2, - "id": 1563756, - "known_for_department": "Directing", - "name": "Michael Lerman", - "original_name": "Michael Lerman", - "popularity": 2.598, - "profile_path": "/kztQ2HnT4Hl3IbyrS9PGFcVmqsQ.jpg", - "cast_id": 180, - "character": "Scientist", - "credit_id": "648fc54f42bf0100e49f737b", - "order": 42 - }, - { - "adult": false, - "gender": 1, - "id": 1737976, - "known_for_department": "Acting", - "name": "Rosie Ede", - "original_name": "Rosie Ede", - "popularity": 1.231, - "profile_path": "/h6HTwvixLAq9HMGVyoAlWwahuA0.jpg", - "cast_id": 140, - "character": "Thomas Curry's Wife", - "credit_id": "648b16bf559d220139bbf32b", - "order": 43 - }, - { - "adult": false, - "gender": 2, - "id": 1113116, - "known_for_department": "Directing", - "name": "Andy Muschietti", - "original_name": "Andy Muschietti", - "popularity": 2.746, - "profile_path": "/mzOMGWzqFFLqIqa2WkDv5I1IxHE.jpg", - "cast_id": 130, - "character": "Hot Dog Reporter", - "credit_id": "6488cb28d2b209014e0b05b1", - "order": 44 - }, - { - "adult": false, - "gender": 1, - "id": 3107464, - "known_for_department": "Acting", - "name": "Ellie Rawnsley", - "original_name": "Ellie Rawnsley", - "popularity": 1.558, - "profile_path": null, - "cast_id": 181, - "character": "Metropolis Reporter", - "credit_id": "648fc69526346200eb76f7f9", - "order": 45 - }, - { - "adult": false, - "gender": 2, - "id": 1503079, - "known_for_department": "Acting", - "name": "Greg Lockett", - "original_name": "Greg Lockett", - "popularity": 1.597, - "profile_path": "/p2OeDF1ssTV4plTILk5O5pbevMJ.jpg", - "cast_id": 182, - "character": "Gotham Reporter", - "credit_id": "648fc69c45765d00ac6aa46c", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4119388, - "known_for_department": "Acting", - "name": "Chelsea Leigh Macleod", - "original_name": "Chelsea Leigh Macleod", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Gotham Reporter", - "credit_id": "648fc6a8c3c891014ebe8e03", - "order": 47 - }, - { - "adult": false, - "gender": 0, - "id": 4119389, - "known_for_department": "Acting", - "name": "Leslie Soo", - "original_name": "Leslie Soo", - "popularity": 0.6, - "profile_path": null, - "cast_id": 184, - "character": "Staff Nurse", - "credit_id": "648fc6b145765d013be9e518", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 2593001, - "known_for_department": "Acting", - "name": "Freya Evans", - "original_name": "Freya Evans", - "popularity": 0.605, - "profile_path": null, - "cast_id": 185, - "character": "Woman in Park", - "credit_id": "648fc6bf0f0da500c5f5a880", - "order": 49 - }, - { - "adult": false, - "gender": 1, - "id": 1191890, - "known_for_department": "Acting", - "name": "Sue Moore", - "original_name": "Sue Moore", - "popularity": 0.737, - "profile_path": "/o2JxGDlAvZskFYaUAxv2Zu76uaV.jpg", - "cast_id": 186, - "character": "Woman with Shopping Cart", - "credit_id": "648fc6d2c2ff3d00ffbc5629", - "order": 50 - }, - { - "adult": false, - "gender": 1, - "id": 1220072, - "known_for_department": "Acting", - "name": "Lynn Farleigh", - "original_name": "Lynn Farleigh", - "popularity": 4.273, - "profile_path": "/mb4jBY5OcGl8WGiP1wQce7Khffk.jpg", - "cast_id": 187, - "character": "Judge", - "credit_id": "648fc6db263462012d4afdd0", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 123507, - "known_for_department": "Acting", - "name": "Martin Pemberton", - "original_name": "Martin Pemberton", - "popularity": 2.798, - "profile_path": null, - "cast_id": 188, - "character": "Ambulance Driver", - "credit_id": "648fc6e445765d010016d76c", - "order": 52 - }, - { - "adult": false, - "gender": 0, - "id": 4119391, - "known_for_department": "Acting", - "name": "Sarah Lawn", - "original_name": "Sarah Lawn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 189, - "character": "Magician", - "credit_id": "648fc6ec45765d013be9e553", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 3339507, - "known_for_department": "Acting", - "name": "David Calvitto", - "original_name": "David Calvitto", - "popularity": 0.6, - "profile_path": null, - "cast_id": 190, - "character": "Batman Suit Performer", - "credit_id": "648fc6f7559d2200ff11b167", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 880, - "known_for_department": "Acting", - "name": "Ben Affleck", - "original_name": "Ben Affleck", - "popularity": 25.682, - "profile_path": "/u525jeDOzg9hVdvYfeehTGnw7Aa.jpg", - "cast_id": 59, - "character": "Bruce Wayne / Batman (uncredited)", - "credit_id": "60300ae444ea540040426820", - "order": 55 - }, - { - "adult": false, - "gender": 1, - "id": 90633, - "known_for_department": "Acting", - "name": "Gal Gadot", - "original_name": "Gal Gadot", - "popularity": 57.901, - "profile_path": "/qCJB1ACi5VjtY4ypXuv3hjAvbSu.jpg", - "cast_id": 112, - "character": "Diana Prince / Wonder Woman (uncredited)", - "credit_id": "644b90560c125505d47ae713", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 2963, - "known_for_department": "Acting", - "name": "Nicolas Cage", - "original_name": "Nicolas Cage", - "popularity": 94.247, - "profile_path": "/ar33qcWbEgREn07ZpXv5Pbj8hbM.jpg", - "cast_id": 223, - "character": "Superman (uncredited)", - "credit_id": "6492bf5b43cd54012598aeee", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 1461, - "known_for_department": "Acting", - "name": "George Clooney", - "original_name": "George Clooney", - "popularity": 26.005, - "profile_path": "/4s3wI0bqOP7K3hhcmKqV6m3GYiQ.jpg", - "cast_id": 122, - "character": "Bruce Wayne (uncredited)", - "credit_id": "648872a199259c01392d04b5", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 117642, - "known_for_department": "Acting", - "name": "Jason Momoa", - "original_name": "Jason Momoa", - "popularity": 55.838, - "profile_path": "/6dEFBpZH8C8OijsynkSajQT99Pb.jpg", - "cast_id": 121, - "character": "Arthur Curry / Aquaman (uncredited)", - "credit_id": "6480032099259c011c3e1a92", - "order": 59 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 2293, - "known_for_department": "Writing", - "name": "Frank Miller", - "original_name": "Frank Miller", - "popularity": 3.715, - "profile_path": "/2eqqLG9Sv4i1ZlM14wY2LTTEbld.jpg", - "credit_id": "648fc94842bf01013bbdebdb", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3794, - "known_for_department": "Writing", - "name": "Bob Kane", - "original_name": "Bob Kane", - "popularity": 2.716, - "profile_path": "/vuXwrlqaUydA4t5SFVdQkK9KsZL.jpg", - "credit_id": "648fc82345765d013be9e631", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 9161, - "known_for_department": "Costume & Make-Up", - "name": "Carmel Jackson", - "original_name": "Carmel Jackson", - "popularity": 0.848, - "profile_path": null, - "credit_id": "63e9a49363aad2007a64f92f", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10788, - "known_for_department": "Art", - "name": "Steven Lawrence", - "original_name": "Steven Lawrence", - "popularity": 0.6, - "profile_path": null, - "credit_id": "60f290254c2592005e619a0c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 40694, - "known_for_department": "Crew", - "name": "Talila Craig", - "original_name": "Talila Craig", - "popularity": 1.22, - "profile_path": null, - "credit_id": "64a0b72c81da39010b8b094e", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 40712, - "known_for_department": "Crew", - "name": "Eunice Huthart", - "original_name": "Eunice Huthart", - "popularity": 1.663, - "profile_path": null, - "credit_id": "64a0b73bc390c5014e3c59c4", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 40825, - "known_for_department": "Sound", - "name": "Benjamin Wallfisch", - "original_name": "Benjamin Wallfisch", - "popularity": 1.541, - "profile_path": "/dWcshjk0OUi3stGFFrwZIsYKZfQ.jpg", - "credit_id": "607dd7b9031deb00599c9f5f", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 12795, - "known_for_department": "Acting", - "name": "Nikolaj Coster-Waldau", - "original_name": "Nikolaj Coster-Waldau", - "popularity": 24.63, - "profile_path": "/rpFOERbHkj7GWxkinUNiQ76sSGk.jpg", - "credit_id": "648fc888c3c891012d5e832e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 13009, - "known_for_department": "Costume & Make-Up", - "name": "Alexandra Byrne", - "original_name": "Alexandra Byrne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "608d4c107b7b4d0057dc100d", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 13611, - "known_for_department": "Acting", - "name": "Jack White", - "original_name": "Jack White", - "popularity": 3.843, - "profile_path": "/cqn3AKfLGtzKBsXHqHM3W5HNVeI.jpg", - "credit_id": "648fc897c2ff3d0139af02b3", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 18330, - "known_for_department": "Production", - "name": "Rob Cowan", - "original_name": "Rob Cowan", - "popularity": 1.332, - "profile_path": null, - "credit_id": "648fc86cc3c89100cadb1c1b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 10830, - "known_for_department": "Production", - "name": "Toby Emmerich", - "original_name": "Toby Emmerich", - "popularity": 2.314, - "profile_path": "/mfkHPnmazcxDcjyVovNPzhUX1JN.jpg", - "credit_id": "63e9da73a2e60200b5eee572", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 23422, - "known_for_department": "Camera", - "name": "Henry Braham", - "original_name": "Henry Braham", - "popularity": 2.5, - "profile_path": "/8dyRB2OQn2wtHEqWbjpqkARBifk.jpg", - "credit_id": "60d20b7c95c0af0075dee45c", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 23490, - "known_for_department": "Art", - "name": "Julia Dehoff", - "original_name": "Julia Dehoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4219512e1008cb7f1d9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 40835, - "known_for_department": "Art", - "name": "Paul D. Austerberry", - "original_name": "Paul D. Austerberry", - "popularity": 0.959, - "profile_path": "/t9SHWHFPB5YAdvD5dJ5GP7ebTOO.jpg", - "credit_id": "5f0cef1ad5dbc20036e3e05f", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 47365, - "known_for_department": "Production", - "name": "Walter Hamada", - "original_name": "Walter Hamada", - "popularity": 3.224, - "profile_path": "/cykm5UtrpVYMY6gc5CfFt6eXZXG.jpg", - "credit_id": "5b6dd4be0e0a267ef4150939", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 52935, - "known_for_department": "Directing", - "name": "John Francis Daley", - "original_name": "John Francis Daley", - "popularity": 18.483, - "profile_path": "/rKZL3e8gI2tQD6Kv0QojXK5sG4u.jpg", - "credit_id": "61c378402ac49900191c8933", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 59930, - "known_for_department": "Editing", - "name": "Jason Ballantine", - "original_name": "Jason Ballantine", - "popularity": 2.615, - "profile_path": "/9gl7jGZpFeoepsFmb7Vi6vvFOKr.jpg", - "credit_id": "60f28ff8f5f1c50073e08a67", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 1, - "id": 112656, - "known_for_department": "Costume & Make-Up", - "name": "Victoria Down", - "original_name": "Victoria Down", - "popularity": 1.48, - "profile_path": null, - "credit_id": "63e9a47d6c849200c77373b8", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "648cdb51559d2200ad81853f", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 87172, - "known_for_department": "Writing", - "name": "Mark Millar", - "original_name": "Mark Millar", - "popularity": 2.147, - "profile_path": "/oK9I2KfVM7zZZd6dD1gKBH8WrsX.jpg", - "credit_id": "648fcab3c3c891010ca5be32", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 135520, - "known_for_department": "Writing", - "name": "Marv Wolfman", - "original_name": "Marv Wolfman", - "popularity": 2.881, - "profile_path": "/rf9tFlKXpqsm7uHILuFgRzoBNs6.jpg", - "credit_id": "648fcae1c2ff3d00e2e12afc", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 175475, - "known_for_department": "Writing", - "name": "Cary Bates", - "original_name": "Cary Bates", - "popularity": 3.352, - "profile_path": null, - "credit_id": "648fca0e0f0da500ad25bd6d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 198034, - "known_for_department": "Writing", - "name": "Bill Finger", - "original_name": "Bill Finger", - "popularity": 5.236, - "profile_path": "/jxdEBHtODH7OFEYXYIaYZEhB5ak.jpg", - "credit_id": "648fc829559d2200ad830632", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 211962, - "known_for_department": "Writing", - "name": "Geoff Johns", - "original_name": "Geoff Johns", - "popularity": 4.171, - "profile_path": "/1hiQjkIkeFoiwvD4yIk2Dq6tnOa.jpg", - "credit_id": "648fcaa80f0da500ffa8daf9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 928272, - "known_for_department": "Production", - "name": "Rich Delia", - "original_name": "Rich Delia", - "popularity": 3.755, - "profile_path": "/UiNvcLDmStXxpEmx6JrGKRI7UF.jpg", - "credit_id": "648cd9a9263462014e573113", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 957353, - "known_for_department": "Directing", - "name": "Jeffrey Wetzel", - "original_name": "Jeffrey Wetzel", - "popularity": 1.8, - "profile_path": null, - "credit_id": "648fc874559d2200ad83066e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 962164, - "known_for_department": "Art", - "name": "Jason Knox-Johnston", - "original_name": "Jason Knox-Johnston", - "popularity": 2.451, - "profile_path": null, - "credit_id": "60f29015635e78007cbefdc9", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 966721, - "known_for_department": "Art", - "name": "Dominic Capon", - "original_name": "Dominic Capon", - "popularity": 1.066, - "profile_path": null, - "credit_id": "63e9a4d5a2e60200b5eeb223", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 969705, - "known_for_department": "Editing", - "name": "Paul Machliss", - "original_name": "Paul Machliss", - "popularity": 0.885, - "profile_path": "/we1Y7sF1O4XPLoO4WywQ2YwcmlJ.jpg", - "credit_id": "60f2900362fcd30027ec9f83", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1072762, - "known_for_department": "Writing", - "name": "Otto Binder", - "original_name": "Otto Binder", - "popularity": 1.576, - "profile_path": null, - "credit_id": "648fcaa3c2ff3d00e2e12ac9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1072763, - "known_for_department": "Writing", - "name": "Al Plastino", - "original_name": "Al Plastino", - "popularity": 0.734, - "profile_path": null, - "credit_id": "648fcad545765d00c61bb35d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 1094761, - "known_for_department": "Production", - "name": "Bárbara Muschietti", - "original_name": "Bárbara Muschietti", - "popularity": 2.08, - "profile_path": "/3VieMn9ekZX4I1BdwxhJePzpYk8.jpg", - "credit_id": "604c42bc1065d30029360adf", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1113116, - "known_for_department": "Directing", - "name": "Andy Muschietti", - "original_name": "Andy Muschietti", - "popularity": 2.746, - "profile_path": "/mzOMGWzqFFLqIqa2WkDv5I1IxHE.jpg", - "credit_id": "5d1bad0555b0c031756ab9bf", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1202850, - "known_for_department": "Costume & Make-Up", - "name": "Mike Smithson", - "original_name": "Mike Smithson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4aca2e602007bb802e2", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1222597, - "known_for_department": "Writing", - "name": "Mort Weisinger", - "original_name": "Mort Weisinger", - "popularity": 2.227, - "profile_path": "/czoIFxONXNoWee6hPgcLXMCbGLc.jpg", - "credit_id": "648fca9d263462014e58cd61", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1236448, - "known_for_department": "Writing", - "name": "William Moulton Marston", - "original_name": "William Moulton Marston", - "popularity": 2.97, - "profile_path": "/o5wbY2yg6RDAC9VXoQKGpN2YeBP.jpg", - "credit_id": "648fc830263462014e58cbb9", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 1236679, - "known_for_department": "Directing", - "name": "Jonathan Goldstein", - "original_name": "Jonathan Goldstein", - "popularity": 3.655, - "profile_path": "/s1fwSaxlYvw3KdmRvT1ZSYhsEkJ.jpg", - "credit_id": "61c3784e0102c9001d1e32e1", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 1263443, - "known_for_department": "Sound", - "name": "Brandon Jones", - "original_name": "Brandon Jones", - "popularity": 1.469, - "profile_path": null, - "credit_id": "63e9a5429512e100a97e20db", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1286900, - "known_for_department": "Acting", - "name": "Andy Kubert", - "original_name": "Andy Kubert", - "popularity": 1.171, - "profile_path": null, - "credit_id": "648fcaae42bf010101bf6381", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 1342656, - "known_for_department": "Sound", - "name": "Nancy Nugent", - "original_name": "Nancy Nugent", - "popularity": 0.942, - "profile_path": null, - "credit_id": "63e9a57b1277780081a46134", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1356195, - "known_for_department": "Acting", - "name": "Jerry Robinson", - "original_name": "Jerry Robinson", - "popularity": 2.124, - "profile_path": "/606OVQrzUFksbBERMiNxsm8MQtL.jpg", - "credit_id": "648fca972f8d0900e38651ec", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1368162, - "known_for_department": "Creator", - "name": "Gardner Fox", - "original_name": "Gardner Fox", - "popularity": 1.054, - "profile_path": null, - "credit_id": "5844b6fcc3a368478d00f67e", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1384722, - "known_for_department": "Art", - "name": "Marco Anton Restivo", - "original_name": "Marco Anton Restivo", - "popularity": 0.618, - "profile_path": null, - "credit_id": "60f2903a7d5db500458b730c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1394357, - "known_for_department": "Acting", - "name": "Kenny Knight", - "original_name": "Kenny Knight", - "popularity": 0.6, - "profile_path": "/o23Emg1L3Dstu3GgvnifuLNvM2J.jpg", - "credit_id": "64a0b752c390c500aeb0dacc", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1394766, - "known_for_department": "Crew", - "name": "Brad Minnich", - "original_name": "Brad Minnich", - "popularity": 7.256, - "profile_path": null, - "credit_id": "6457ff9e77d23b0119e01c1b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1397011, - "known_for_department": "Production", - "name": "Michael Disco", - "original_name": "Michael Disco", - "popularity": 1.4, - "profile_path": null, - "credit_id": "604c42af4f9a99003c5ea958", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1401362, - "known_for_department": "Visual Effects", - "name": "John 'D.J.' Des Jardin", - "original_name": "John 'D.J.' Des Jardin", - "popularity": 1.114, - "profile_path": null, - "credit_id": "648cd96cc2ff3d00ad01404a", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1404845, - "known_for_department": "Visual Effects", - "name": "Tamara Watts Kent", - "original_name": "Tamara Watts Kent", - "popularity": 1.708, - "profile_path": null, - "credit_id": "648cd989559d22011c4b7b16", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1413508, - "known_for_department": "Visual Effects", - "name": "Bryan Hirota", - "original_name": "Bryan Hirota", - "popularity": 1.266, - "profile_path": null, - "credit_id": "6457ff941b70ae01260bacce", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1417828, - "known_for_department": "Visual Effects", - "name": "Andrew Lockley", - "original_name": "Andrew Lockley", - "popularity": 1.135, - "profile_path": "/5K5XTIK5ny3qZAn3SzLWehVRqyL.jpg", - "credit_id": "6457ff306c849200e35d1950", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1433721, - "known_for_department": "Sound", - "name": "Greg ten Bosch", - "original_name": "Greg ten Bosch", - "popularity": 1.684, - "profile_path": null, - "credit_id": "63e9a55bd388ae00b63a6d39", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1440664, - "known_for_department": "Crew", - "name": "Isaac Hamon", - "original_name": "Isaac Hamon", - "popularity": 0.739, - "profile_path": "/yBGcINj11twiOoR4vckwd5VqBnY.jpg", - "credit_id": "64a0b73f81da39010b8b0957", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1446082, - "known_for_department": "Visual Effects", - "name": "Scott Vosbury", - "original_name": "Scott Vosbury", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6457ffa877d23b00e2f4d346", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1448221, - "known_for_department": "Writing", - "name": "Christina Hodson", - "original_name": "Christina Hodson", - "popularity": 5.366, - "profile_path": "/2Y4wDj55n9UOEaaSwDPu9Nso0qH.jpg", - "credit_id": "5d1bad184dc34a000f9fe928", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1460124, - "known_for_department": "Art", - "name": "Paul Savulescu", - "original_name": "Paul Savulescu", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63e9a521d388ae00806274f5", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 1486198, - "known_for_department": "Production", - "name": "Kate Ringsell", - "original_name": "Kate Ringsell", - "popularity": 0.716, - "profile_path": null, - "credit_id": "648cd9b0c3c891012d5cf4ca", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1563756, - "known_for_department": "Directing", - "name": "Michael Lerman", - "original_name": "Michael Lerman", - "popularity": 2.598, - "profile_path": "/kztQ2HnT4Hl3IbyrS9PGFcVmqsQ.jpg", - "credit_id": "648cd927559d2200ad8184ae", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1564101, - "known_for_department": "Production", - "name": "Marianne Jenkins", - "original_name": "Marianne Jenkins", - "popularity": 1.436, - "profile_path": null, - "credit_id": "604c42c81d538600727621eb", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1645448, - "known_for_department": "Crew", - "name": "Lee Millham", - "original_name": "Lee Millham", - "popularity": 1.057, - "profile_path": null, - "credit_id": "64a0b76381da3900ad2bb699", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1717345, - "known_for_department": "Sound", - "name": "Randy Torres", - "original_name": "Randy Torres", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63e9a54e63aad200e05dcc78", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1718184, - "known_for_department": "Writing", - "name": "Paul Norris", - "original_name": "Paul Norris", - "popularity": 1.704, - "profile_path": "/rHDHSx4g4nHU2BzXIB8LuMBx7Qk.jpg", - "credit_id": "648fca43559d2200e20719e1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1718424, - "known_for_department": "Writing", - "name": "Harry Lampert", - "original_name": "Harry Lampert", - "popularity": 1.223, - "profile_path": null, - "credit_id": "5844b6d0c3a368478d00f65d", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 1726488, - "known_for_department": "Writing", - "name": "George Pérez", - "original_name": "George Pérez", - "popularity": 1.18, - "profile_path": "/9FBgan1WokYEBYglMnY7bMy8q1H.jpg", - "credit_id": "648fc94e0f0da5013903a1ff", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1726489, - "known_for_department": "Writing", - "name": "John Broome", - "original_name": "John Broome", - "popularity": 1.149, - "profile_path": null, - "credit_id": "648fc9162f8d0900e38650be", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1738711, - "known_for_department": "Writing", - "name": "Carmine Infantino", - "original_name": "Carmine Infantino", - "popularity": 1.4, - "profile_path": "/rd7rptOdCetoLkITsPWyyxhHwEF.jpg", - "credit_id": "648cd8fac3c891012d5cf497", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1753309, - "known_for_department": "Crew", - "name": "Joel Conlan", - "original_name": "Joel Conlan", - "popularity": 0.754, - "profile_path": null, - "credit_id": "64a0b70a8c0a48010176904b", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1771001, - "known_for_department": "Art", - "name": "Will Houghton-Connell", - "original_name": "Will Houghton-Connell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4e663aad2008f864df1", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1821154, - "known_for_department": "Costume & Make-Up", - "name": "Emmy Beech", - "original_name": "Emmy Beech", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4729512e100e3d15ef9", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1873714, - "known_for_department": "Costume & Make-Up", - "name": "Marzenna Fus-Mickiewicz", - "original_name": "Marzenna Fus-Mickiewicz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63e9a487a2e60200b5eeb1e3", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1931606, - "known_for_department": "Costume & Make-Up", - "name": "Gabor Kerekes", - "original_name": "Gabor Kerekes", - "popularity": 0.612, - "profile_path": null, - "credit_id": "63e9a49f9512e100e3d15f19", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2137200, - "known_for_department": "Crew", - "name": "Robert Kanigher", - "original_name": "Robert Kanigher", - "popularity": 2.725, - "profile_path": "/6jmF1hZXhwMTf1C1Pb2HSEwTkWI.jpg", - "credit_id": "648cd8f42f8d0900e384c87c", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 2137704, - "known_for_department": "Crew", - "name": "Curt Swan", - "original_name": "Curt Swan", - "popularity": 0.668, - "profile_path": "/nlLfbl0s3O6E4qyn4oPawtMRX2Y.jpg", - "credit_id": "648fc975559d2200c57769b1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 2137803, - "known_for_department": "Crew", - "name": "Dick Sprang", - "original_name": "Dick Sprang", - "popularity": 0.704, - "profile_path": "/3zg7AdfXx05Ra2M2S6aPw4pudLs.jpg", - "credit_id": "648fcadb26346200ae1ca24e", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 2236047, - "known_for_department": "Crew", - "name": "Paul Bailey", - "original_name": "Paul Bailey", - "popularity": 0.733, - "profile_path": null, - "credit_id": "64a0b70f4a52f800af12250a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2243625, - "known_for_department": "Crew", - "name": "Elizabeth Donker Curtius", - "original_name": "Elizabeth Donker Curtius", - "popularity": 0.798, - "profile_path": "/jbZuxzXUL6IwG56NjS4LHKDBpG1.jpg", - "credit_id": "64a6258fc3bffe00e78e059c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2292187, - "known_for_department": "Crew", - "name": "Matt Sherren", - "original_name": "Matt Sherren", - "popularity": 0.621, - "profile_path": null, - "credit_id": "64a0b76fd5191f01393e02a2", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2341498, - "known_for_department": "Art", - "name": "Felicity Hickman", - "original_name": "Felicity Hickman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4c89512e1008462b639", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 2423282, - "known_for_department": "Crew", - "name": "Aidan Brindle", - "original_name": "Aidan Brindle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b6edd5191f00ac925686", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2441054, - "known_for_department": "Production", - "name": "Matías Lértora", - "original_name": "Matías Lértora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc84345765d00ac6aa596", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2475246, - "known_for_department": "Production", - "name": "Galen Vaisman", - "original_name": "Galen Vaisman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61c37807a93d250061a82202", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2476295, - "known_for_department": "Crew", - "name": "Liam Coote", - "original_name": "Liam Coote", - "popularity": 0.6, - "profile_path": "/e4Wj17jM6hoVmmT0ocd8cmFHNck.jpg", - "credit_id": "64a0b6f18c0a4800c76403e0", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2698446, - "known_for_department": "Visual Effects", - "name": "Leonardo Costa", - "original_name": "Leonardo Costa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6457ff436aa8e00139baadf0", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2752091, - "known_for_department": "Crew", - "name": "Adam Bowman", - "original_name": "Adam Bowman", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64a0b700c390c500eb34e41a", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 1, - "id": 2890978, - "known_for_department": "Crew", - "name": "Claudia Heinz", - "original_name": "Claudia Heinz", - "popularity": 0.662, - "profile_path": "/xEhjy00x5NAC7Hluo93vIf80rfQ.jpg", - "credit_id": "64a0b725d5191f01393e0290", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2916185, - "known_for_department": "Writing", - "name": "David Mazzucchelli", - "original_name": "David Mazzucchelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fca2d42bf0100e49f7706", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2921418, - "known_for_department": "Acting", - "name": "Joseph Paxton", - "original_name": "Joseph Paxton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b75e4a52f800c9948367", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3043167, - "known_for_department": "Art", - "name": "Dominique Law", - "original_name": "Dominique Law", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a5099512e100a97e20b4", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3149571, - "known_for_department": "Art", - "name": "Laura Mickiewicz", - "original_name": "Laura Mickiewicz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a43aa2e60200932a9b59", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3291297, - "known_for_department": "Crew", - "name": "Ramona Fradon", - "original_name": "Ramona Fradon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fca14c2ff3d011cba510c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3300601, - "known_for_department": "Crew", - "name": "Scott Kolins", - "original_name": "Scott Kolins", - "popularity": 1.229, - "profile_path": null, - "credit_id": "648fca1c559d2200ad83078d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3362393, - "known_for_department": "Costume & Make-Up", - "name": "Katie Jones", - "original_name": "Katie Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a59d63aad200e05dccae", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 3371264, - "known_for_department": "Crew", - "name": "Irv Novick", - "original_name": "Irv Novick", - "popularity": 0.745, - "profile_path": null, - "credit_id": "648fcac1559d2200ff11b422", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3452999, - "known_for_department": "Crew", - "name": "Francis Manapul", - "original_name": "Francis Manapul", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc942559d2200e207193b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3500848, - "known_for_department": "Crew", - "name": "Harry G. Peter", - "original_name": "Harry G. Peter", - "popularity": 0.77, - "profile_path": null, - "credit_id": "648fca4f559d220139bea1d2", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3557752, - "known_for_department": "Crew", - "name": "Ashley Beck", - "original_name": "Ashley Beck", - "popularity": 2.179, - "profile_path": null, - "credit_id": "64a0b6fb8c0a480101769044", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3559077, - "known_for_department": "Crew", - "name": "Rick English", - "original_name": "Rick English", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0b71fd5191f01393e028d", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 3611367, - "known_for_department": "Crew", - "name": "Mike Baron", - "original_name": "Mike Baron", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc8a90f0da5011c2b3402", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3793729, - "known_for_department": "Art", - "name": "Christine Lois", - "original_name": "Christine Lois", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a4f8a2e60200853568a9", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3918499, - "known_for_department": "Art", - "name": "Sian Midgley", - "original_name": "Sian Midgley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63e9a5146c84920097fffa04", - "department": "Art", - "job": "Standby Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 4116185, - "known_for_department": "Sound", - "name": "Kim Baum", - "original_name": "Kim Baum", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648cd955263462012d497b5f", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4119399, - "known_for_department": "Crew", - "name": "Dave Johnson", - "original_name": "Dave Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc93b2f8d0900c666920a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4119400, - "known_for_department": "Crew", - "name": "Joe Quinones", - "original_name": "Joe Quinones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648fc96d0f0da500e2b2a7f5", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fighting Dark Flash Behind The Scenes", - "key": "8YV2hzjGjJw", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-29T16:00:05.000Z", - "id": "64ee1d405258ae012ca6d2ed" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Flash Suit", - "key": "Rt33T_hykfs", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-15T16:30:05.000Z", - "id": "64e35a5eb77d4b11434a2a88" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Supergirl vs. Zod", - "key": "DTUcaDb-2r0", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-11T18:30:13.000Z", - "id": "64e35237076ce843ba73aa88" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spaghetti Theory", - "key": "7U6QLXDivv4", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-04T17:00:05.000Z", - "id": "64d3482ddd926a01e627061f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let's Get Nuts: Batman Returns... Again", - "key": "Y9RfhbH0GEQ", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-21T16:45:02.000Z", - "id": "64c456accadb6b00c828eec0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "a7LknNfORNI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-18T17:00:00.000Z", - "id": "64b6e9d837806200e2acf168" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Abbey Road Recording Sessions - \"Baby Shower\"", - "key": "p1Fafb702Vo", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-01T16:00:36.000Z", - "id": "64a590a25a991500c604089d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Abbey Road Recording Sessions - \"Worlds Collide\"", - "key": "2OiqqiG3pyM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-24T16:00:02.000Z", - "id": "649a28b67e348300e237683f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "London Projection", - "key": "GRAkxHVNu9s", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T16:18:29.000Z", - "id": "649021f52f8d090100ab5173" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Supergirl Featurette", - "key": "ZFQ7pYcbbis", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T11:39:16.000Z", - "id": "647c19a993828e011624ca51" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "jprhe-cWKGs", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-24T00:00:24.000Z", - "id": "646d5c05d185720140330a6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Flashback Fridays: Batman Returns..Again!", - "key": "obwv4OEKjyg", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-19T22:00:22.000Z", - "id": "64682a7933a376013b3daefc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "r51cYVZWKdY", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-25T19:00:18.000Z", - "id": "644823dec51acd0566a95dcc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser", - "key": "xMxUg7IV_dk", - "site": "YouTube", - "size": 720, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T01:15:37.000Z", - "id": "63eafaea813cb600dc066760" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game TV Spot", - "key": "M0zdJOM_5Vg", - "site": "YouTube", - "size": 2160, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T00:23:56.000Z", - "id": "63e983cb9512e1008cb7dbbf" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "hebWYacbdvc", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-02-12T22:59:38.000Z", - "id": "63e973b01277780079f29a92" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "vote_average": 5.638, - "vote_count": 12, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xGIeqQunSj5dxGZVKzNNr9W4vps.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/s2JS5hUBiHlz1Mlxi4XNpIzcUAW.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/5oZ8tazqOfPjh4H2dhAlAMDvncq.jpg", - "vote_average": 5.334, - "vote_count": 11, - "width": 2764 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/1YaWl2oHo61HWraD7dKW5OAjrL4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/beJrLpub7UwBStu038mJFiApZ3o.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/x1WErt8qjP2mQO6LB8odT3bpUCe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/e5SxkGcTf8djmgFjlwVDMMpojb1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1943, - "iso_639_1": null, - "file_path": "/5YsXVCX3AMJhW85yuEXzqYBvXfF.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3455 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/kIX6VS5FTMURcK3WlNNkPss60e4.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9lL3VVktfy8ny774XP00tJHXGvP.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jJaXsmmwz6SlEY2lOPrzf0huwpy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zcngBdcbbH1rL1IzS0gsAEjAnWk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mI3SPntNSu6KlrSZB0ysKHKiKuS.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jPJiK5PiiVllJ7IMvJZ72FazXlD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sP5S6AZykc6SNt54XOoIfP3wG3n.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/e327y7QWR3a9fDKLUkgLPJavvkW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ux6528axisPMMVOrlYELdmVjffq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/fEe2csLOUsTyaLdCccVJfFeJzhx.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 2764 - }, - { - "aspect_ratio": 1.78, - "height": 1154, - "iso_639_1": "en", - "file_path": "/mLY3oqwFkNZ65ZMtI5CTKFFz60i.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2054 - }, - { - "aspect_ratio": 1.778, - "height": 1365, - "iso_639_1": "en", - "file_path": "/aaxyTDpFyjFTVlBUssKUkXdhPEO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2427 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qhsumJrFkYhjwksPFKJNcZjgKva.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1ucy86ZFVbzx3LBzYNvins1e4Gl.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oEE9ogPgZT7D3zcGAKVIjAG6QGB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/imrDnp8TE0InS4D8sULYKeAxyVF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1280 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/u0Idv93k1EPYahn1QjJXexbT2g2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2764 - }, - { - "aspect_ratio": 1.779, - "height": 1138, - "iso_639_1": null, - "file_path": "/cJDqNlTnqo1xBORIrILhtDib53w.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2024 - }, - { - "aspect_ratio": 1.778, - "height": 1650, - "iso_639_1": null, - "file_path": "/fUVK7iUF0k9dU3MwV5MIKWMKGys.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2934 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wToCyYiclGdNF2uARIygZXWVeVf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/21TjCM0B20nxwksMoYkC5H9qoun.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6GIpI3X65J6DT2nSTSga9LnanGJ.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 917, - "iso_639_1": null, - "file_path": "/l9h3XiVH38ZWnEmR8VokTXz5cGB.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1631 - }, - { - "aspect_ratio": 1.777, - "height": 1555, - "iso_639_1": null, - "file_path": "/eVOLW3JnHh9dIeoCwI2PzDmWTdg.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2764 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mDmWLL1IzXf0jv1Cla174fR7FlF.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/hnsSBrfQ0mSSB68Q9ZTJVhyJ9N1.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1280 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/7e9MVGg8efOhoA2R9XhZcGWTC5Z.jpg", - "vote_average": 5.022, - "vote_count": 10, - "width": 3000 - }, - { - "aspect_ratio": 1.776, - "height": 1010, - "iso_639_1": null, - "file_path": "/3RzSfGddAlv6hIFD165xsZu8BcI.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1794 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/94ivMfHXaMOlIDvhNaXbeYLKMnO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zuqKAc34OxYtwmX0wuD3y0jl7RB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/npHNtWirLpcjl1umS7DVGh6XZhj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/aEMflEUniBJ9KpEFKDtwsaq3oyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1200, - "iso_639_1": "th", - "file_path": "/qlEEBD3jPxjj1Gp9DNTHqF6XPcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2133 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/1h4aKG7ZJ3q4SoIO7hfdwzGFIzC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/kYOpy1v0lk7VOrJouq40jckwbXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/v6qts7V0xRcuT5cR0L2wEQMIh9H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tZ439Os5dyYkKKJ7XjyMAGJkT0J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/8vgRcm246X2QAqaBPPHAfTM4T93.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/sIzQKVbwgR6iEEHlaIZVbsaUqmo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/fiXlA8hQqjjjhCIN6H1SaKtCQ9D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2ltG8wDai3N3VALmSZRAOQ35q72.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fsTH1oJHEqNRfvAKfCsZIrfCwQB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/pO4CWB3dyBivXR0014RtQFi2U5R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2qPOe3mDuYvaubJbLLa3iiAhvdW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9va6rgBIsmr6XozMFDtjFReS2Qv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/cYjOePqDeGM2P49LiEAaQ39H7Ot.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/hZnHUTHFONsT5Wj36i35L2EkdwS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/a2j9j9z0O0sZGpRgCQDDt2eVMl3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pgOD7rSmFOBrzTFN2n79hXYxYqQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/AtOfqLMpIAvTBw6faGaSi0pGNwr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sk", - "file_path": "/76WBsH0LvB8c7J7whHhrBwNjKKJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/fPSoIGT9rQp9EHk7KTWXBphMDOS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8JPtI7YLeUQLOD05Gf1ZwRFw0ay.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/81Go51vzsQKiMEHxvrJYwr4ryFn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1631, - "iso_639_1": null, - "file_path": "/l7lgs45dFZOI2PEwUItPO9ZlTPp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2899 - } - ], - "logos": [ - { - "aspect_ratio": 2.647, - "height": 295, - "iso_639_1": "en", - "file_path": "/caIauyJYJzoGYORxekr4FzxbaVZ.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 781 - }, - { - "aspect_ratio": 2.521, - "height": 1287, - "iso_639_1": "en", - "file_path": "/uc0c80tcRls7YOBTL9LPAn9068Q.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 3245 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/cwKD6pHmuqYXwKyvp3WRQQ52ZWH.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2460 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/9DvA4oKaco5b0DlZOIkEXKAGinj.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2460 - }, - { - "aspect_ratio": 1.433, - "height": 1298, - "iso_639_1": "th", - "file_path": "/1zNeboYeLPy0eJZfeqSvxRtKNKN.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1860 - }, - { - "aspect_ratio": 1.898, - "height": 1288, - "iso_639_1": "en", - "file_path": "/tc5roQaVPWRe0eVZPeCisBapUTC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2444 - }, - { - "aspect_ratio": 1.425, - "height": 200, - "iso_639_1": "zh", - "file_path": "/8NYibp44Qkr6rpYNjp0YBaiyHaa.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 285 - }, - { - "aspect_ratio": 1.613, - "height": 2439, - "iso_639_1": "en", - "file_path": "/eEgk99bEnrF2tur0tGvxpT70tEC.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 3935 - }, - { - "aspect_ratio": 1.895, - "height": 1298, - "iso_639_1": "en", - "file_path": "/u92O7uc5qwFCrdEU6J5jVVjB8JN.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 2460 - }, - { - "aspect_ratio": 2.316, - "height": 294, - "iso_639_1": "en", - "file_path": "/458LMSgCkQXdvrAD1trdf69myOe.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 681 - }, - { - "aspect_ratio": 1.537, - "height": 296, - "iso_639_1": "en", - "file_path": "/2bXd3J6SH8l00brPew6YmuuSN1o.png", - "vote_average": 0, - "vote_count": 0, - "width": 455 - }, - { - "aspect_ratio": 4.245, - "height": 184, - "iso_639_1": "en", - "file_path": "/2hIQxiFtXEd6BtOt6bb60NGvurK.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 2.656, - "height": 294, - "iso_639_1": "en", - "file_path": "/itWRXWxoCJnSZMUfJk4dohtv6QY.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 1.455, - "height": 536, - "iso_639_1": "uk", - "file_path": "/sSnZEYzXX2yS3Ebttaqz715YgcO.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 1.004, - "height": 254, - "iso_639_1": "th", - "file_path": "/u6FgmFZEtTeCMjMp0A1zmIbTxYG.png", - "vote_average": 0, - "vote_count": 0, - "width": 255 - }, - { - "aspect_ratio": 1.636, - "height": 357, - "iso_639_1": "ko", - "file_path": "/eBqhurROk9QTAujlxbcetYu1rdt.png", - "vote_average": 0, - "vote_count": 0, - "width": 584 - }, - { - "aspect_ratio": 1.622, - "height": 957, - "iso_639_1": "cn", - "file_path": "/94xqdD3arBNaNypTY4ND2sUjo6F.png", - "vote_average": 0, - "vote_count": 0, - "width": 1552 - }, - { - "aspect_ratio": 1.39, - "height": 692, - "iso_639_1": "zh", - "file_path": "/lUfZ7oXNKFypgR3qfL4i8pn6PtP.png", - "vote_average": 0, - "vote_count": 0, - "width": 962 - }, - { - "aspect_ratio": 5.174, - "height": 92, - "iso_639_1": "en", - "file_path": "/n1Ph6J5XSSJlBwsQTRvWzpMf0vF.png", - "vote_average": 0, - "vote_count": 0, - "width": 476 - }, - { - "aspect_ratio": 2.056, - "height": 746, - "iso_639_1": "ru", - "file_path": "/r8qJcffhKaoOOr3ptNqiu8eM19Y.png", - "vote_average": 0, - "vote_count": 0, - "width": 1534 - }, - { - "aspect_ratio": 1.899, - "height": 1298, - "iso_639_1": "hu", - "file_path": "/e5wAgtD8Gs0sDECX9stdJfFB7Hh.png", - "vote_average": 0, - "vote_count": 0, - "width": 2465 - }, - { - "aspect_ratio": 3.361, - "height": 1285, - "iso_639_1": "th", - "file_path": "/tp7rckRtkwhPu72gYx93lwblcnR.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 4.234, - "height": 171, - "iso_639_1": "en", - "file_path": "/jiGrO9MDRh0jKKC5tkJ0WY3cCqw.png", - "vote_average": 0, - "vote_count": 0, - "width": 724 - }, - { - "aspect_ratio": 2.34, - "height": 1296, - "iso_639_1": "ko", - "file_path": "/6xEz7nO0c8XuL66pYzY8ecPG47R.png", - "vote_average": 0, - "vote_count": 0, - "width": 3033 - }, - { - "aspect_ratio": 1.396, - "height": 1299, - "iso_639_1": "ko", - "file_path": "/nGNHkCtYVfuAGL0koIhtGKLWYlH.png", - "vote_average": 0, - "vote_count": 0, - "width": 1813 - }, - { - "aspect_ratio": 1.703, - "height": 960, - "iso_639_1": "bg", - "file_path": "/kAFIiVg9R0B5218k6iovB2dSRtE.png", - "vote_average": 0, - "vote_count": 0, - "width": 1635 - }, - { - "aspect_ratio": 1.417, - "height": 357, - "iso_639_1": "zh", - "file_path": "/rB1G6TybmKm7taUd95JNeDqNk7F.png", - "vote_average": 0, - "vote_count": 0, - "width": 506 - }, - { - "aspect_ratio": 1.427, - "height": 267, - "iso_639_1": "zh", - "file_path": "/j7pFDLcqmMNfpHB5Tp0ZJdKdleX.png", - "vote_average": 0, - "vote_count": 0, - "width": 381 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "vote_average": 5.308, - "vote_count": 53, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4vjKJRcO1LO36JZYMbbjbx421YN.jpg", - "vote_average": 5.832, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/mlNNmAfyHU8hSiHs8PO4GajMnIK.jpg", - "vote_average": 5.61, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/6bDHQPVP0kXvxgHf7uvKzsDWrch.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x9Qc86JEyYkAKsdzjDpS5kbaAB7.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "vi", - "file_path": "/cmjiTVMuyRj3Bp8Dg306UksHBDc.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cLqyz8aMgR0veS3U1ESKeIwD0TA.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/oOpqVIBaQ5tg8ZBdNUg3mKPF56W.jpg", - "vote_average": 5.398, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/b1YUXJ0Crdf0xywYFNlHHaQjixI.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cAtFJxmHL4PCIpueQhwMIDi0ij1.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/gNbZNuZ2fBferjJspfmvnskODGc.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/vjEZrx9vSP40NKXhNxAGxvHxL9y.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/muD7qu9UagO08dZBout1YXwdE6a.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/lp0EFLwAjJ4JC3CxWo30E6ARSzk.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/a2eLoc3HOXE23SQjLrRqCRl73AE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/itYONYDHpJqTuu8BCXAtHxgpglq.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/os4an6H5zgZ1LUFvYiH4yuV6kvK.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/1Skp4ZD2pzE1Qp7wOn2hNTGKQxT.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/ojO2JW9h4ORSkjRZv5gpU4lAzA.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 830 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "id", - "file_path": "/yrrsBUQzBYkPn9btngf5DTHOSyA.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/ghW33P7hV4RVSrLMBkMBgZh13ym.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.676, - "height": 2880, - "iso_639_1": "sk", - "file_path": "/3739cpiE6vFakm6LQd600wbUFtp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1948 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/z8AbUqkTE5CsCtL39LTnymuBAcw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": null, - "file_path": "/f21vip58dhwB0rF31j9AYYvC8Xa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8uI3sF8V9AqleQY5r779rrEzQ9Z.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jiNlu6UKYfqa9gckFjzhB9x4sdQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fFe8CWZQTVtOACKtJ8sBDWj7pXq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/93FsGzjoyQOFlsIEaM6uVZPOs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/7ssevlDIjihqwCHuOcIAZUYK9t2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/ovzKOC84zEn42lO6Se6T28d0fVQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ipkmsv0yUMuTFscTIZAQfZKGV70.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/54QHzHr7SSDkCAVb6QGBHehzz6t.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1ZUtbI9WdcOjgriNAME3As1WgaT.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/6iIBctlKo47wHXHgAjYeJoz9OlO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1978 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/6gw2C8CseveOvtTmwJcABx5KIsh.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bqqI73fAaAtgQTYzRTaJAYss45A.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/2fQLeZXEIdE80RVtq7yaCEq9eur.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1FmASTsiOP9ylJEbySms5bPgliR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/azio74W2qw7bNg7ePqzkWywwK1n.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "fr", - "file_path": "/kKYDeFvoe0PAkMHQjHYMoETX9K9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/egk71eSgc3oT5ZCmtIhXRwUo8li.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/kZLd5S1u7PcRKfQPmAo2pFO4lqn.jpg", - "vote_average": 5.292, - "vote_count": 18, - "width": 1186 - }, - { - "aspect_ratio": 0.675, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/dJxOAjnqOQC0xI3NJ6N5fB8JGPz.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1458 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/3GYBkfoRePXlBoLf2HDLqUScO5q.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1291 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/83C4IDpnK7gCMzKXLjpWtxNiSP5.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qo7vMEtBemFMpkmABYHaukRPZxG.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "id", - "file_path": "/zKEJ2tvAbBtZdhKglD9gYpxbxno.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qTXa7CJAj2RzAgxzuplEemPb87b.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/A6PQxKm9D0ndYYw0Up7Xu3XV3rN.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/mftHmdslz5BaAyrcZ1TTR0JZWpD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/kIHEPNYLWnG2fSwsAPmJkHdwce6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1291 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "it", - "file_path": "/iSrDzA2PtYvSpl6IS8QJwajJe3b.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 666 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/lJELFWjiK9ijAUJl7fzYUScooEf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qYOo3uJHfBmxEzGwEyyje0qOdEX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/i4FChXSm2TFcNJNCfqB7IfmUw8I.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rBTMtui3uNou2xyHlYmTgqcGPbR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oQawaiEJOqWSinryksJejYZst5r.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/51FXgqdrak8w4ZhKkhzDtup758Z.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1264 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tuPAjzS42xDG0LHxTTr4Kma0KOo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 945, - "iso_639_1": "ar", - "file_path": "/abT8jngvBDk31BsVgMMNrP4OTIY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/1EhxqgGBfkqjRYVExalJpd4swOk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/r4r599MfyohaKAFwGZdcnEp5ts9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dQIOyTGjJe9xqSk0M7tWbfQVaOk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/e7AUG4IArMWRw4Ji5pXRB0miRqD.jpg", - "vote_average": 5.238, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/cevSI3w2xSWvqnjQodvDCjw76vG.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/vhOJQV7KM2ycaodhy9AUpfuxh8a.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1936, - "iso_639_1": "pt", - "file_path": "/gCp4ATDNhhZyxZiLYkpQlMEiWWG.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1290 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/andOxWauD5cx4zIhqabfAJ4qBDo.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qDK4Ty1b4rayzbSbXz6bS4OcWMl.jpg", - "vote_average": 5.194, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/oT6EkLKQLzbSpVJViRefDVElVcs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.665, - "height": 2560, - "iso_639_1": "en", - "file_path": "/wtxQcQxqIVStja6DFksiwC1tER8.jpg", - "vote_average": 5.186, - "vote_count": 20, - "width": 1703 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vGKUK1nMLgARiLVKHByTkURRvoC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mN8TsVWd01qjnz9f4DYkw2LPJH6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/gZEqh3vVcHhPBmBHdkprePuMgWn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/hVikDCRC7SrgXwc4c8sVKDNvZmN.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/mbRXvNdL2zRGR82s0CXhiEiSAP2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1240 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/dRI3uPdBSinF5VbaGXRftB1APz7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/24Om4ZTUoxyZZi5IRbwanDWCiqg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fcAzXjAKN8DVC8cLvpUvdx8JWke.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/qAmdUdcXDvF3V90cbx2srydAEfq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/n9mxOXXL1nJulD7KCdWdjFu4R3i.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fREVr1bocjvnKw1Cd32QCKG0a0h.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dy3ytt1zXNo40HkwvQRzXcBNGhv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a5yUY5g9IiD8LDhRhXH3vmVva74.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wnovSDu1NLtT5cW2NIzwS7CixKA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/1wC6LPhZW4962ifYB5013HAS7E0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/wZ51QNzkiztSZd75wiNcAzoFSv0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hXH1Qd2ipMrJlovLYFJxJwR4jgk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "ar", - "file_path": "/hLsJGpCVRf7MtVTGXKwCsBcswsJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1291 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/ijCUTdB9P7WenxkCnkeAiV7lNOt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/o2NzHxNSc7sYqpBB27vcMMl6AMH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1772, - "iso_639_1": "es", - "file_path": "/jF6xKawyXPsT5E4I0bzjbo4Tc0Y.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.717, - "height": 2048, - "iso_639_1": null, - "file_path": "/mj5GMi6NaPN3ao5OVwtxIAMYXlV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1469 - }, - { - "aspect_ratio": 0.664, - "height": 2880, - "iso_639_1": "zh", - "file_path": "/n0VOJbONtWD9HvGvGJS9Gx7ZCiY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1911 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/6iXYiRZtmhML13pqowMpVvK5eIS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/3482tBuPuFW5afyhUl8crNoueig.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/7rsSoUD5vzOIKcXkGEDUlomrxZC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/9xK9BNnsnaiFxlVdqBMzYSUv3O2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/9UInyKOyE56T5WfsSTxiWzwEFwJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/y7cIexqprBa3tI7M7xRBiW5TIud.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/bmNhOhmAJhUcKxx42TDgTcr9OzT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/3aXVaoEMIYXim3hsEVIr9uRHmM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/67PmbAViFCW3obXxr5Utm9wArIP.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/g6UvbzX4yvOJAv9fRMjjUuzXhQt.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kJ6EAjzwPeL0ajayhQ7vA8XssN7.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/eOlrbKNEs10Nz8oFNHilMaQNKj7.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jxoh5U7uG9nUuXEMzCpF5UfatI9.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1728, - "iso_639_1": "en", - "file_path": "/a0rSS8Z42r0BGoM2yiV5fu0WZ7X.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1166 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eOAWLYnOxEGFrIAMR5DeGDGNiuj.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/p6sgN148uUiaWqxRjdVqVgeODfV.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/9AIoAUYvkuLpN8uYbebCN0ndacC.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/hfAoyPr5XGE6Iy0SW9aI31akfqW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/l8302j9ko6rtjlrQLo3szvsaXCS.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1584, - "iso_639_1": "en", - "file_path": "/xdGlTUVfcik9RToAsDNnSlMTkfc.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1056 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/negzF1YDTfkb0GjO76DexkiEeWY.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9wbmAQ3AzA1WND0U5aCY1BItFrE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/41bJKBns4mdU8K3sGlVnIIpIkmE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/a7wD5izhzxP70qDvCHbVrQ94RP2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wuT1WkzeulEdkgx5ghwFIw5OJPE.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iq4R9VhqN61q4604MR7zKOeu8RU.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pw7aU5IJ79IA3wmj78XDOZI6ZD7.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 850, - "iso_639_1": "en", - "file_path": "/mdQyHR8EyjJmHwHW9PTKErfgX4S.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 567 - }, - { - "aspect_ratio": 0.716, - "height": 2048, - "iso_639_1": "en", - "file_path": "/6vNNj2gZF3NNfJdwdJRpmBeeSQw.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 1466 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lM3Kh2sBDrJdGprjyCxwBZw3Xjt.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/tOTG7AfJRTTxzpXFoiIEAdcqkOS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/xv03cwRdvC8znnbtmqdwT7f165M.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/qk3V5O45JkOD08ULLda9gifZdMP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/9EvU5naGzYrkVo4FNKR6amjXkxX.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 2560, - "iso_639_1": "he", - "file_path": "/uxdPgL4QL8hnr9TDuXxIMHQuVwR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1780 - }, - { - "aspect_ratio": 0.667, - "height": 1728, - "iso_639_1": "en", - "file_path": "/yyFUUIEfkO0lvNsaP3CGmhBT63u.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1152 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pexmqcugG1yMZm1IcyvaASNwqv.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/j2F9uqMB9NGhYtigoowXHIF37MT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.666, - "height": 1196, - "iso_639_1": "en", - "file_path": "/d5FySUeozWrqbiGPvNtE7ufsIF7.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 797 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zPETeuTZNtHALv9KZRcmnS8sdOf.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5VlAD162XyYnA4PFzrGFG7g9w01.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bOqMWEYxRajbF4QreFl61DUi0M6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5aZoKcR8VxYWhiENYOUg6ooGbc8.jpg", - "vote_average": 5.104, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hMs0FtNLuVWLsBm26ZKUovIs5RM.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vOWMMreZURRblhgmxkdqr7yBTyt.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/eqWznn1nwpvUjqsr2EwaDZtPdMa.jpg", - "vote_average": 4.994, - "vote_count": 15, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ywZXIZroU4G6Lki7PkeSmechcaa.jpg", - "vote_average": 4.968, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/pDYjNlDoN61F39qgJQE3MSK3PmD.jpg", - "vote_average": 4.942, - "vote_count": 16, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/63veS0OYDTLjnfJ58PLEiOqe9Hq.jpg", - "vote_average": 4.942, - "vote_count": 16, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/5mmd0cqjIljjRet8xsT3J3Sf4Gd.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/noQ30As2LOZ5EGBWJBVYyN08Hyh.jpg", - "vote_average": 4.928, - "vote_count": 14, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vRI1SWcQvoaPdLJmYtR8cFULy8B.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2y8SJsAam9MvUjWjXdzjay5cD4f.jpg", - "vote_average": 4.892, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3lXvxiJ5J9rvK6ntAL7521ea9Hc.jpg", - "vote_average": 4.892, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mqx6Z5pSVtpWLOXAYFKx5rVKktb.jpg", - "vote_average": 4.888, - "vote_count": 24, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2355, - "iso_639_1": "en", - "file_path": "/8Dvb5Gll4mJcE6gF0nViVbBVXoD.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1570 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/58quDLcapkNuptBmaZlgKBEeWRO.jpg", - "vote_average": 4.878, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/5YazGPXVLHX5W5YQDBZ2Rol2Lqd.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/niNPebld658yLbCP6VsXZDI1btD.jpg", - "vote_average": 4.862, - "vote_count": 13, - "width": 1186 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8OxGxEzoaRscEZzlUIwMZABsRgE.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/i9vdA8SNEZiRReaifayx6hfT2j9.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yNJN3NutKIkMJt9txMHMi78RLpK.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6QBJs1e2jWSJSMLVxpMnsfilEuM.jpg", - "vote_average": 4.828, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/u920pVQ12cFBwWu7XJM3x23OSmV.jpg", - "vote_average": 4.81, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3HUlW6bgiyZNhHAbt1rmKXNu3my.jpg", - "vote_average": 4.796, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/nc6RCGaavLeYpRgJ6N9puiyWZDW.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/5Ezl7rXuMQ9MhvhBRfcqqKZWcHL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/lpzuo8skMWVJ2WE2zLyySYQZuTo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/Atn6rxgtZXz9zhvZw3JqjGmnGTr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/pkQGRQTRx1w6YSHHz6bAAD8gqoj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/A4FULF75gu2lyTpRE4vs6sRxI7Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/bC8ieYsOn1OmqvVRX7ofWTroNN2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/1um4RgzHQ5r0pKPrQryPmqwk1iS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.707, - "height": 1828, - "iso_639_1": "ja", - "file_path": "/yFVOi2Nh69q3AW5bdYtcA3UJ7xb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1292 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/mFuN3FRHFHYFRIWutQHCt6c7AeQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 830 - }, - { - "aspect_ratio": 0.675, - "height": 1229, - "iso_639_1": "ja", - "file_path": "/m7JmDO29sw6ilGXdpHnzjVi3naO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 830 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hi", - "file_path": "/pntSXRuIyf2yWUFwr29OJhcVAbd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ta", - "file_path": "/gUcFzawXZr2Msc2Jn83FbzAHeOX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "te", - "file_path": "/2jKAHVYGLOyzjjEhgbTWzjFwcMj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.674, - "height": 1170, - "iso_639_1": "th", - "file_path": "/sqRKcM0S2eF5HpC2vX4EslLpnjU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 789 - }, - { - "aspect_ratio": 0.666, - "height": 2003, - "iso_639_1": "pt", - "file_path": "/89GrfnscTLQJZDPwo2XewBfAF9x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/vkGRvmBc4nKGvvTRBLE0pgt84vA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/63k4iNpSfK6eRigyDGkAwgYmm0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/v2n3LrUU0LpsVHKAwMoYAUBLoC1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/bm0S637Esk0o47rzpfLBMzVQ5sl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.714, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/yDioRiSs1mZwhwmGudpglbGczoU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 771 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/3BIBsht3RcHYlb6D2uIUPkFHmLV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/t0BYa6yRrPBqK51YkgHsSzjARZu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/4gzKJBgHqxvyIAL2D6qo9hPXqEV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "uk", - "file_path": "/jyRFs1YLCDWtAzmIYNHazoOi9w0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/53GZj6TYAGoJCx3pb9BCZeRVqqU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 1600, - "iso_639_1": "en", - "file_path": "/1qFoCxXNcBxLWGuvqIy1Hv7AV4T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1112 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "fi", - "file_path": "/89FLXgirGJQaG4cHqND57sY40dE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ozBz6PcTfyhcrci6ZygzVJgPHxO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/3hU0Yo0qCFu48DFFBJt104Yg4VO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/lWnCplu42E3g2GVqxSWaWloHrba.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.665, - "height": 2000, - "iso_639_1": "th", - "file_path": "/nUaHAg6FBfTJ0aDTzbo1v61Fuw4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1330 - }, - { - "aspect_ratio": 0.7, - "height": 1600, - "iso_639_1": "he", - "file_path": "/12e9ZH6VhrgZ4KpzzBSxP527UUi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1120 - }, - { - "aspect_ratio": 0.67, - "height": 2048, - "iso_639_1": "th", - "file_path": "/6f4assESPRDCzjv9bxAor4pMh19.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1373 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/a9B01YPxwg4ZZ3pZjW4nRhnPpU7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/iOd0ca59wf17FlMbQKzVC3B23U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5ZCgfxJXBkAwMH9WHm26qKoo8f2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "he", - "file_path": "/4Xzs7wNDdP7kRDT1KT7DNeEyygM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "he", - "file_path": "/ngnlT76Y1sZbm99ye9qlw6UFXMx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "en", - "file_path": "/izdTRghIGNXIxncAawgfrfJ30A7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/llwC7JUQH2hMIoYaEFidx3C8NjR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/lJy30nnPvyYbvRpf6hsrQhO172Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.669, - "height": 1237, - "iso_639_1": "en", - "file_path": "/wBuYonRatcekja5VjCgRApEDlUK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 828 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "th", - "file_path": "/2XzohjcLG7fWrvl8bzxSkLkyjS0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1z01PJ2WgT4wYghIQsgRXmHxA7V.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/e66isruPcwIKzqhS0KW6e6kccnq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s7JLVKGJk0l9OLrdRevdFAe6Iwc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "en", - "file_path": "/ld9FcnEHXoubLH0XuAQUsBU33z5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/geKWtsrGshMNSwJEdwlQUcH37yV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/1DJ5GdtV0oRUOkmGnzcibQfUqyH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": null, - "file_path": "/6oWqmktdu4kEhZdfCwjste1iVXb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/7ZAqwgXsRJLXm5L4zmJKLNLVvM0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ad0Ywt0XW4sfCKecFBM6dY4j327.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 1479, - "iso_639_1": "en", - "file_path": "/msTmhHRce2BT8bWFXAUEt48SFPL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 986 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cd8vh8o3XFWkZRSrVLAaeQbsAjb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/epuC7I0r4GEtf4owrUOUTjywJmS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/ff0GEhkUc78kNCkNCxrzQdr1l2R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/lp5BmNBE4FbR7stpnrtFxsyy6Hq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1492, - "iso_639_1": "en", - "file_path": "/skZb8aVBArBR7ygD0llAMq6AOsQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 995 - }, - { - "aspect_ratio": 0.667, - "height": 2397, - "iso_639_1": "en", - "file_path": "/35eGTVNtbRFCKvYpErgNCKWWx8s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1598 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/hDm63sQZl52Gmuy9Z9c9W1xI4TE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/7ubKKEFs5UOSDcNrPWMEfm6eaMr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "sk", - "file_path": "/aQVnNVPh6I22JhnvEgarh7W2mWF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vfLLahvUd1FR0tohGsjpbTPpTcg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/6HwhQpZ12oQdpYUoL5w64Vt7Fxc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/em8uKwvyK6svvVKEaktptyRyahQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vHcFC9VwmIB1N8cdkHswmhONKCq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ndFGMkiIyMk9ylIy67MLnxJj5sU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eOiNR6Dmq9L9n5TKpZPB0eBOVnd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uVd78P4ORSWJDqYgsP0hTqLhWTN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "ab", - "file_path": "/yxawUE8b2uX1qPQHYOz2MHPzr0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/eyWSDhorgWMqcMbvUrw75iRisMZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m4TKuI67a6MjLbsbAWmBQdlIpuj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8Ab7oHCqgzzjE9mjl4DKWSkuXVs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/xgwIymBeMGqahopiiB33q6zLJWF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/bf1AVpoLJ4UlupRwsYXceJqzdRa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/txIxCIi8SbQRPwEvX8f5XBfnb4X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/p7gz7AWLfMkLdUsxqwxJWkA6xun.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jxtRekz99z6AXCJ9pbtc9hX5KkV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/jm2okNjLIuSQq3td1KJ5OMcbul.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/aGDItH8A1rISeBr8Pbc98igGH8J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/8v8roezG4bQJulxXjBTSaAdSsUo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/oou43rblr9Si3kakefIQP66lNvc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rV3JzCqIplAFn5zeAbdcU6XuWJH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/srcfwYIN8qvv6UfDIJab2IQYjgi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/p50pEVhpyd0C0711WO0fs9KyjUt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": null, - "file_path": "/3YJHHmlTwCQP0ZcnBo3TBbLo7Gu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": null, - "file_path": "/kKQseKCjQVFLi5vLETPTutrHnqe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 2868, - "iso_639_1": null, - "file_path": "/esEadiRc4lQdF9i2p7AREbkFTdp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1912 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/o0LdJIKP9TgWPZseqfVhIUthIKx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gugniGmKliqPGPHLs7cjgKwzEaR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": null, - "file_path": "/4VF8IHzmtiGw5SmKbwIdI9PfQ3n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/5tsA2Bkn5lFYhQLN4C7k1bFNPYf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/kBU0YJ6hAuCmnOBWKX6xiGDCefM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/zJd7OcYvWc8IvLVfcQHI8ZMKFLk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/9ic9pGNafUoDHYyBJLKvXAUMNDL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/9bVw3O7EadQkV7hk299BWOc5ezT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1978 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/bfOpFxj61t9tGgxxZY2ZR9ZVi7j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/qSG0bSLKkYFAfLAonTfRjaBQyIp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/foZAnzrCY6TNDiGxyPSZebRPrWn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.696, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/4HUgY00z7vThmOmZbBuH74pNfdj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 835 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/gr5PiNwf71moV1NvKXB6E6Z53hM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/U5TKwn2d2SxLDpw4oNs1YWVnFh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "hr", - "file_path": "/lkc0kLuCLltoRGhcIR5Sv6etsTt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/gYkQmAqObF1sr4lEaMGjDpHHSAD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gng4p0wAiGzTJAovBCwm8ZF2o3R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/bqpzgKmaC8H4DHY3CArxvZGDAhn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/uqi4MfGomZnmtWhvCesXMUEmvNd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/pvVGtqZmBh9iaID86e1BZXbAo3T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pk37evZ2x46YlwueYAZ5FFJg2PW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.75, - "height": 1269, - "iso_639_1": "de", - "file_path": "/qWcb2tZFP9Lhn4nuzFQwrbHaN9b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 952 - }, - { - "aspect_ratio": 0.704, - "height": 2136, - "iso_639_1": "de", - "file_path": "/kWNaF0rtekNZ9fOvaEqcmtxnHah.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1504 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/335977.json b/examples/view-transitions/src/content/movies/335977.json deleted file mode 100644 index aaac6cb59c31..000000000000 --- a/examples/view-transitions/src/content/movies/335977.json +++ /dev/null @@ -1,7685 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "belongs_to_collection": { - "id": 84, - "name": "Indiana Jones Collection", - "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", - "backdrop_path": "/6kh59mZizZsttZPR0HAdXk6Ve2n.jpg" - }, - "budget": 294700000, - "genres": [ - { "id": 878, "name": "Science Fiction" }, - { "id": 12, "name": "Adventure" }, - { "id": 28, "name": "Action" }, - { "id": 14, "name": "Fantasy" } - ], - "homepage": "https://movies.disney.com/indiana-jones-and-the-dial-of-destiny", - "id": 335977, - "imdb_id": "tt1462764", - "original_language": "en", - "original_title": "Indiana Jones and the Dial of Destiny", - "overview": "Finding himself in a new era, and approaching retirement, Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival, Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.", - "popularity": 804.982, - "poster_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "production_companies": [ - { - "id": 1, - "logo_path": "/o86DbpburjxrqAzEDhXZcyE8pDb.png", - "name": "Lucasfilm Ltd.", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-28", - "revenue": 382336037, - "runtime": 155, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "A legend will face his destiny.", - "title": "Indiana Jones and the Dial of Destiny", - "video": false, - "vote_average": 6.676, - "vote_count": 1650, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 3, - "known_for_department": "Acting", - "name": "Harrison Ford", - "original_name": "Harrison Ford", - "popularity": 30.392, - "profile_path": "/5M7oN3sznp99hWYQ9sX0xheswWX.jpg", - "cast_id": 0, - "character": "Indiana Jones", - "credit_id": "56e8490ec3a368408f003646", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1023483, - "known_for_department": "Acting", - "name": "Phoebe Waller-Bridge", - "original_name": "Phoebe Waller-Bridge", - "popularity": 12.635, - "profile_path": "/ppRIfUYcl0RWlxp5gSmdzIFFLAS.jpg", - "cast_id": 19, - "character": "Helena", - "credit_id": "60707c53924ce5003f3416e0", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1019, - "known_for_department": "Acting", - "name": "Mads Mikkelsen", - "original_name": "Mads Mikkelsen", - "popularity": 48.578, - "profile_path": "/ntwPvV4GKGGHO3I7LcHMwhXfsw9.jpg", - "cast_id": 21, - "character": "Dr. Voller", - "credit_id": "60786bcafbe36f0029a80c9b", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 467645, - "known_for_department": "Acting", - "name": "Boyd Holbrook", - "original_name": "Boyd Holbrook", - "popularity": 19.399, - "profile_path": "/zKYA9XfK5jtCpBgTr62jm4xVS79.jpg", - "cast_id": 29, - "character": "Klaber", - "credit_id": "609ea6af5b370d0028e76da3", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2074238, - "known_for_department": "Acting", - "name": "Olivier Richters", - "original_name": "Olivier Richters", - "popularity": 11.705, - "profile_path": "/8Zz5WYE1Muc3AX9daxCxgNTRE5.jpg", - "cast_id": 33, - "character": "Hauke", - "credit_id": "61b5c4de9d893900403f90c2", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 3810691, - "known_for_department": "Acting", - "name": "Ethann Isidore", - "original_name": "Ethann Isidore", - "popularity": 2.236, - "profile_path": "/64mNpiPrraEUjwSHLJzLfFxjXwT.jpg", - "cast_id": 39, - "character": "Teddy", - "credit_id": "638923e3229ae21572ab05fa", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 13014, - "known_for_department": "Acting", - "name": "Toby Jones", - "original_name": "Toby Jones", - "popularity": 21.504, - "profile_path": "/1qNisdp4f1KstdfvAgYXMdrhwfk.jpg", - "cast_id": 31, - "character": "Basil Shaw", - "credit_id": "60c3d8e618864b006e27dc45", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 3131, - "known_for_department": "Acting", - "name": "Antonio Banderas", - "original_name": "Antonio Banderas", - "popularity": 36.607, - "profile_path": "/n8YlGookYzgD3cmpMP45BYRNIoh.jpg", - "cast_id": 32, - "character": "Renaldo", - "credit_id": "60f13a85097c490046569131", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 650, - "known_for_department": "Acting", - "name": "Karen Allen", - "original_name": "Karen Allen", - "popularity": 22.418, - "profile_path": "/eJszpndpRzrXbSlz7RUlApoTykn.jpg", - "cast_id": 92, - "character": "Marion", - "credit_id": "64783abb17497301186f65c2", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 655, - "known_for_department": "Acting", - "name": "John Rhys-Davies", - "original_name": "John Rhys-Davies", - "popularity": 19.372, - "profile_path": "/bfn4WvhGo2QKYtv5ynk7tKu7NnL.jpg", - "cast_id": 38, - "character": "Sallah", - "credit_id": "63207365b87aec0082842f26", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1787399, - "known_for_department": "Acting", - "name": "Shaunette Renée Wilson", - "original_name": "Shaunette Renée Wilson", - "popularity": 6.738, - "profile_path": "/fPjeTxxE2sB0bQUcAoO13mKsKK5.jpg", - "cast_id": 30, - "character": "Mason", - "credit_id": "609ea6b9a275020029640e62", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 3491, - "known_for_department": "Acting", - "name": "Thomas Kretschmann", - "original_name": "Thomas Kretschmann", - "popularity": 12.488, - "profile_path": "/7M0P39a3CVA22dJyv5YQEkTThU7.jpg", - "cast_id": 25, - "character": "Colonel Weber", - "credit_id": "6081d67a8390180058714085", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 36901, - "known_for_department": "Acting", - "name": "Martin McDougall", - "original_name": "Martin McDougall", - "popularity": 5.347, - "profile_path": "/sqosciocBl1OgQmnBXjSOafDvpt.jpg", - "cast_id": 35, - "character": "Durkin", - "credit_id": "61e19d9f196757008b48d70d", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 126802, - "known_for_department": "Acting", - "name": "Alaa Safi", - "original_name": "Alaa Safi", - "popularity": 9.01, - "profile_path": "/11R1c4UOSMsj1advqUmFQj6sTe1.jpg", - "cast_id": 68, - "character": "Rahim", - "credit_id": "638a62546dc6c000af11ddda", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1867299, - "known_for_department": "Acting", - "name": "Francis Chapman", - "original_name": "Francis Chapman", - "popularity": 2.152, - "profile_path": "/yMLhKYHITI3wA57ctG1Vfr06FZj.jpg", - "cast_id": 101, - "character": "Young SS Officer", - "credit_id": "648138a0bf31f20100334855", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 4102339, - "known_for_department": "Acting", - "name": "Alfonso Rosario Mandia", - "original_name": "Alfonso Rosario Mandia", - "popularity": 0.6, - "profile_path": null, - "cast_id": 102, - "character": "Italian Ticket Seller", - "credit_id": "648138bad2b209012dfb64e3", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 4102340, - "known_for_department": "Acting", - "name": "Chase Brown", - "original_name": "Chase Brown", - "popularity": 1.052, - "profile_path": null, - "cast_id": 103, - "character": "Larry - Beat Poet Guy", - "credit_id": "648138dfe272600128783b62", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 946350, - "known_for_department": "Acting", - "name": "Nasser Memarzia", - "original_name": "Nasser Memarzia", - "popularity": 6.515, - "profile_path": "/pugV3fpgTJg98JmVLoPAHxpDAwE.jpg", - "cast_id": 71, - "character": "Archimedes", - "credit_id": "638a62b215376c00b5056efa", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4102341, - "known_for_department": "Acting", - "name": "Amedeo Bianchimano", - "original_name": "Amedeo Bianchimano", - "popularity": 0.6, - "profile_path": null, - "cast_id": 104, - "character": "Milanese Suit Man", - "credit_id": "6481390fe2726000afc0e9eb", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 1320746, - "known_for_department": "Acting", - "name": "Anna Francolini", - "original_name": "Anna Francolini", - "popularity": 1.567, - "profile_path": "/zkfIJehMXE8jSzbClQsILZqddM5.jpg", - "cast_id": 105, - "character": "Mandy", - "credit_id": "648139ed99259c00e2f3282c", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 2654393, - "known_for_department": "Acting", - "name": "Gabby Wong", - "original_name": "Gabby Wong", - "popularity": 2.506, - "profile_path": "/8ja0TBklf82kOD5ASE3SXwaEVvK.jpg", - "cast_id": 106, - "character": "Chinese Hat Bidder", - "credit_id": "64813a03bf31f2010033496a", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 225705, - "known_for_department": "Acting", - "name": "Adolfo Margiotta", - "original_name": "Adolfo Margiotta", - "popularity": 0.875, - "profile_path": "/y5FiYFuFogq0oHr1PPGklAyNjIr.jpg", - "cast_id": 107, - "character": "Hector - Salty Diver", - "credit_id": "64813a0de375c000ff46d841", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 1746388, - "known_for_department": "Acting", - "name": "Niccolo Cancellieri", - "original_name": "Niccolo Cancellieri", - "popularity": 0.68, - "profile_path": null, - "cast_id": 108, - "character": "Sirene Deck Hand", - "credit_id": "64813a17d2b20900ebbedcd9", - "order": 22 - }, - { - "adult": true, - "gender": 0, - "id": 2136480, - "known_for_department": "Acting", - "name": "Antonio Iorio", - "original_name": "Antonio Iorio", - "popularity": 0.6, - "profile_path": null, - "cast_id": 109, - "character": "Popeye - Lead Scuba Diver", - "credit_id": "64813a3ae2726000afc0eac2", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 53166, - "known_for_department": "Acting", - "name": "Manuel Klein", - "original_name": "Manuel Klein", - "popularity": 1.4, - "profile_path": "/2Fzai7q0oGAccXQWnxMruloCwbL.jpg", - "cast_id": 110, - "character": "SS Stormtrooper", - "credit_id": "64813a44e2726000c92ef1b1", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 2675526, - "known_for_department": "Acting", - "name": "Holly Lawton", - "original_name": "Holly Lawton", - "popularity": 0.615, - "profile_path": null, - "cast_id": 111, - "character": "Young Helena", - "credit_id": "64813a52e375c00139be7c99", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 1809454, - "known_for_department": "Acting", - "name": "Guy Paul", - "original_name": "Guy Paul", - "popularity": 0.779, - "profile_path": null, - "cast_id": 112, - "character": "Prof. Plimpton", - "credit_id": "64813a8964765400e6801da0", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 2480853, - "known_for_department": "Acting", - "name": "Harriet Slater", - "original_name": "Harriet Slater", - "popularity": 1.626, - "profile_path": "/5AnOyNfZ6doZWueuHo7unYE3lMI.jpg", - "cast_id": 113, - "character": "Fran", - "credit_id": "64813a92bf31f200aec6a643", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1990962, - "known_for_department": "Acting", - "name": "Alton Fitzgerald White", - "original_name": "Alton Fitzgerald White", - "popularity": 2.097, - "profile_path": "/j6tlSWT0VFa8lSTnFaphDuCuzAP.jpg", - "cast_id": 114, - "character": "Hotel Porter", - "credit_id": "64813a9ee272600107208714", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 59085, - "known_for_department": "Acting", - "name": "Ian Porter", - "original_name": "Ian Porter", - "popularity": 1.587, - "profile_path": "/qmTTaWGp5OO5rTFey9EFfo0dH5n.jpg", - "cast_id": 115, - "character": "Bob - Bartender", - "credit_id": "64813aaa99259c00e2f328c5", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 987009, - "known_for_department": "Acting", - "name": "Daniel Anderson", - "original_name": "Daniel Anderson", - "popularity": 6.135, - "profile_path": "/iwyzD7tcNVeXY7py6qTk3INlY7F.jpg", - "cast_id": 116, - "character": "Kommando Commander", - "credit_id": "64813ab5d2b20900ca1d4175", - "order": 30 - }, - { - "adult": false, - "gender": 0, - "id": 232979, - "known_for_department": "Acting", - "name": "Cory Peterson", - "original_name": "Cory Peterson", - "popularity": 4.68, - "profile_path": "/rJBVo64hhSdmAJS7raAT0L9nJcS.jpg", - "cast_id": 117, - "character": "Gov PR Man", - "credit_id": "64813ac6e2726000c92ef203", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 4102344, - "known_for_department": "Acting", - "name": "Charles Hagerty", - "original_name": "Charles Hagerty", - "popularity": 1.279, - "profile_path": "/FPYghZNwfWsgdCUxQ8gMrIsFSE.jpg", - "cast_id": 118, - "character": "Reporter - St Regis", - "credit_id": "64813ad899259c00e2f328f8", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 2947788, - "known_for_department": "Acting", - "name": "Ali Saleh", - "original_name": "Ali Saleh", - "popularity": 0.706, - "profile_path": null, - "cast_id": 119, - "character": "Jabari - Sallah's Grandson", - "credit_id": "64813aeae272600147b83ded", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4102345, - "known_for_department": "Acting", - "name": "Amara Khan", - "original_name": "Amara Khan", - "popularity": 0.618, - "profile_path": null, - "cast_id": 120, - "character": "Alia - Sallah's Granddaughter", - "credit_id": "64813b06e375c000c525d907", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 1474690, - "known_for_department": "Acting", - "name": "Jill Winternitz", - "original_name": "Jill Winternitz", - "popularity": 2.96, - "profile_path": "/bBfmth2C93OkyYir6w8qxjmHpiR.jpg", - "cast_id": 121, - "character": "Pan Am Stewardess", - "credit_id": "64813b10bf31f200e3fb7ad1", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1642036, - "known_for_department": "Acting", - "name": "Billy Postlethwaite", - "original_name": "Billy Postlethwaite", - "popularity": 2.685, - "profile_path": "/cpHNAqOBP8SIcml1A8ODmtuEyNh.jpg", - "cast_id": 122, - "character": "Prof. Donner", - "credit_id": "64813b1cd2b20900ebbedd83", - "order": 36 - }, - { - "adult": false, - "gender": 0, - "id": 3855450, - "known_for_department": "Acting", - "name": "Clara Greco", - "original_name": "Clara Greco", - "popularity": 0.6, - "profile_path": null, - "cast_id": 123, - "character": "Italian Tour Guide", - "credit_id": "64813b25e272600107208773", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 2669776, - "known_for_department": "Acting", - "name": "Joe Gallina", - "original_name": "Joe Gallina", - "popularity": 1.089, - "profile_path": "/bw0oa1SXhNXlZPKjLxHPkS978s.jpg", - "cast_id": 124, - "character": "Mounted Cop", - "credit_id": "64813b3264765400ad814937", - "order": 38 - }, - { - "adult": false, - "gender": 0, - "id": 4102346, - "known_for_department": "Acting", - "name": "Nicholas Bendall", - "original_name": "Nicholas Bendall", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Filthy Guitar Guy", - "credit_id": "64813b4ae272600107208796", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 4102348, - "known_for_department": "Acting", - "name": "Thulani Storm", - "original_name": "Thulani Storm", - "popularity": 0.6, - "profile_path": null, - "cast_id": 126, - "character": "Filthy Guitar Guy", - "credit_id": "64813b6a64765400c7b70659", - "order": 40 - }, - { - "adult": false, - "gender": 0, - "id": 2410286, - "known_for_department": "Acting", - "name": "Edoardo Strano", - "original_name": "Edoardo Strano", - "popularity": 0.6, - "profile_path": null, - "cast_id": 127, - "character": "Archimedes Servant", - "credit_id": "64813b79bf31f200e3fb7b12", - "order": 41 - }, - { - "adult": false, - "gender": 2, - "id": 3102373, - "known_for_department": "Acting", - "name": "Angelo Spagnoletti", - "original_name": "Angelo Spagnoletti", - "popularity": 2.03, - "profile_path": "/4NtUvdYzUaL0WTE57mciOGGedEZ.jpg", - "cast_id": 128, - "character": "Archimedes Servant", - "credit_id": "64813b8599259c011c3ea158", - "order": 42 - }, - { - "adult": false, - "gender": 0, - "id": 4102350, - "known_for_department": "Acting", - "name": "Hicham Ouaraqa", - "original_name": "Hicham Ouaraqa", - "popularity": 0.6, - "profile_path": null, - "cast_id": 129, - "character": "Moroccan Policeman", - "credit_id": "64813ba4e272600147b83e5d", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 4102351, - "known_for_department": "Acting", - "name": "Adil Louchgui", - "original_name": "Adil Louchgui", - "popularity": 0.6, - "profile_path": null, - "cast_id": 130, - "character": "Moroccan Policeman", - "credit_id": "64813bb3e2726001072087d9", - "order": 44 - }, - { - "adult": false, - "gender": 2, - "id": 1679369, - "known_for_department": "Acting", - "name": "David Mills", - "original_name": "David Mills", - "popularity": 1.051, - "profile_path": null, - "cast_id": 131, - "character": "TV Reporter", - "credit_id": "64813bc3d2b209010c176dd2", - "order": 45 - }, - { - "adult": false, - "gender": 0, - "id": 3020800, - "known_for_department": "Acting", - "name": "Rhyanna Alexander-Davis", - "original_name": "Rhyanna Alexander-Davis", - "popularity": 0.765, - "profile_path": "/p1lfGT7SU0BDjfWLljRx4vSnWpR.jpg", - "cast_id": 132, - "character": "Hippie Girl", - "credit_id": "64813bd0647654012496c98b", - "order": 46 - }, - { - "adult": false, - "gender": 2, - "id": 1599257, - "known_for_department": "Acting", - "name": "Gary Fannin", - "original_name": "Gary Fannin", - "popularity": 0.6, - "profile_path": "/93KIHd00iHFotZz3uTdCugNke7o.jpg", - "cast_id": 133, - "character": "Armed Intelligence Officer", - "credit_id": "64813bddbf31f200e3fb7b4c", - "order": 47 - }, - { - "adult": false, - "gender": 2, - "id": 1953482, - "known_for_department": "Acting", - "name": "Gunnar Cauthery", - "original_name": "Gunnar Cauthery", - "popularity": 0.63, - "profile_path": "/as93zqZlUUM3UgfJdLuVdDRdrC3.jpg", - "cast_id": 134, - "character": "Pilot - Heinkel 111", - "credit_id": "64813bead2b20900ebbede06", - "order": 48 - }, - { - "adult": false, - "gender": 2, - "id": 3091617, - "known_for_department": "Writing", - "name": "Aron von Andrian", - "original_name": "Aron von Andrian", - "popularity": 2.417, - "profile_path": "/zK7lumC8gfsldg9rtLS42RzxJ4u.jpg", - "cast_id": 135, - "character": "Navigator - Heinkel 111", - "credit_id": "64813bf4e272600147b83e87", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 3335477, - "known_for_department": "Acting", - "name": "Nikola Trifunovic", - "original_name": "Nikola Trifunovic", - "popularity": 0.6, - "profile_path": null, - "cast_id": 136, - "character": "SS Kommando", - "credit_id": "64813c10d2b209014e0744c5", - "order": 50 - }, - { - "adult": false, - "gender": 2, - "id": 125719, - "known_for_department": "Acting", - "name": "Henry Garrett", - "original_name": "Henry Garrett", - "popularity": 8.551, - "profile_path": "/uVmFDIaaBNvMYC0iBCr3dFoMdfK.jpg", - "cast_id": 137, - "character": "Louis - Drunk Airline Pilot", - "credit_id": "64813c1ae375c0011c7e4561", - "order": 51 - }, - { - "adult": false, - "gender": 1, - "id": 2218975, - "known_for_department": "Acting", - "name": "Elena Saurel", - "original_name": "Elena Saurel", - "popularity": 5.377, - "profile_path": "/j9QlZakIhoGAPmXHbwlH3wHYDbG.jpg", - "cast_id": 138, - "character": "Drunk Airline Stewardess", - "credit_id": "64813c23e375c00139be7db0", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 1530091, - "known_for_department": "Crew", - "name": "Mike Massa", - "original_name": "Mike Massa", - "popularity": 2.478, - "profile_path": null, - "cast_id": 139, - "character": "1944 Indiana Jones Double", - "credit_id": "64813c2ee375c000ff46d99e", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1207282, - "known_for_department": "Acting", - "name": "Anthony Ingruber", - "original_name": "Anthony Ingruber", - "popularity": 2.549, - "profile_path": "/fUTCd1jGGQHn912czglHg28v4gR.jpg", - "cast_id": 36, - "character": "1944 Indiana Jones Double / Dutch Prince - Bidder", - "credit_id": "61e19de1eec4f3001ca42c96", - "order": 54 - }, - { - "adult": false, - "gender": 0, - "id": 4102352, - "known_for_department": "Acting", - "name": "Christian Sacha Mehja-Stokes", - "original_name": "Christian Sacha Mehja-Stokes", - "popularity": 0.84, - "profile_path": null, - "cast_id": 140, - "character": "Rich Kid", - "credit_id": "64813c7dd2b20900ca1d42f7", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 3115612, - "known_for_department": "Acting", - "name": "Angus Yellowlees", - "original_name": "Angus Yellowlees", - "popularity": 1.4, - "profile_path": "/lNsKu31s7FSohLIhmrlVgTLeYVS.jpg", - "cast_id": 141, - "character": "Hippie Student", - "credit_id": "64813c896476540143338849", - "order": 56 - }, - { - "adult": false, - "gender": 0, - "id": 3578285, - "known_for_department": "Acting", - "name": "Matthew Staite", - "original_name": "Matthew Staite", - "popularity": 0.627, - "profile_path": null, - "cast_id": 142, - "character": "SS Guard/Comms Officer", - "credit_id": "64813c9564765400e6801eed", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 105869, - "known_for_department": "Acting", - "name": "Corrado Invernizzi", - "original_name": "Corrado Invernizzi", - "popularity": 5.66, - "profile_path": "/eT0noHS5TtUTr0O1bcE8yqWkRoI.jpg", - "cast_id": 74, - "character": "Luigi - Italian Engineer", - "credit_id": "638a62fa0e64af00deaa6d2c", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 12838, - "known_for_department": "Acting", - "name": "Joerg Stadler", - "original_name": "Joerg Stadler", - "popularity": 2.261, - "profile_path": "/c442cR10gEk6CWXNJQUdf3rUFgk.jpg", - "cast_id": 143, - "character": "Gestapo Officer", - "credit_id": "64813cb3bf31f200c612f89c", - "order": 59 - }, - { - "adult": false, - "gender": 2, - "id": 1434488, - "known_for_department": "Acting", - "name": "Thorston Manderlay", - "original_name": "Thorston Manderlay", - "popularity": 2.353, - "profile_path": "/2VHGWiwsWtV3st16pj088KVtDzS.jpg", - "cast_id": 144, - "character": "Staff Car Officer", - "credit_id": "64813cc2647654014333886f", - "order": 60 - }, - { - "adult": false, - "gender": 2, - "id": 1858594, - "known_for_department": "Acting", - "name": "Basil Eidenbenz", - "original_name": "Basil Eidenbenz", - "popularity": 2.71, - "profile_path": "/fvT27dKBe0mLouXE6xa0oCgIAta.jpg", - "cast_id": 145, - "character": "Sentry", - "credit_id": "64813cd0d2b209010c176e8b", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 4102353, - "known_for_department": "Acting", - "name": "Johann Heske", - "original_name": "Johann Heske", - "popularity": 0.63, - "profile_path": null, - "cast_id": 146, - "character": "Sentry", - "credit_id": "64813ce264765400ad814a33", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4102354, - "known_for_department": "Acting", - "name": "Joshua Broadstone", - "original_name": "Joshua Broadstone", - "popularity": 0.6, - "profile_path": null, - "cast_id": 147, - "character": "Overalls", - "credit_id": "64813cf564765400ad814a4b", - "order": 63 - }, - { - "adult": false, - "gender": 2, - "id": 2622652, - "known_for_department": "Acting", - "name": "Bruce Lester-Johnson", - "original_name": "Bruce Lester-Johnson", - "popularity": 3.714, - "profile_path": "/qcDYGUloUe2thCpaBWHJ1yOWqWY.jpg", - "cast_id": 148, - "character": "Screaming Cabbie", - "credit_id": "64813d01e375c0011c7e45f2", - "order": 64 - }, - { - "adult": false, - "gender": 2, - "id": 1094667, - "known_for_department": "Acting", - "name": "Martin Sherman", - "original_name": "Martin Sherman", - "popularity": 2.015, - "profile_path": "/6i4EIOrnaHvytOxUsh0LLH0M4wf.jpg", - "cast_id": 149, - "character": "Drunk - Appliance Store", - "credit_id": "64813d1699259c0139299575", - "order": 65 - }, - { - "adult": false, - "gender": 0, - "id": 1865779, - "known_for_department": "Acting", - "name": "Allon Sylvain", - "original_name": "Allon Sylvain", - "popularity": 1.096, - "profile_path": "/ajW5apLv666aoh6UeCpe6MLRk5G.jpg", - "cast_id": 150, - "character": "L'Atlantique Maître D", - "credit_id": "64813d22e2726000c92ef395", - "order": 66 - }, - { - "adult": false, - "gender": 2, - "id": 122344, - "known_for_department": "Acting", - "name": "William Meredith", - "original_name": "William Meredith", - "popularity": 1.4, - "profile_path": "/vLiHlMF7IPZ0bNQzN0MV8RKw992.jpg", - "cast_id": 151, - "character": "Con Ed Van Driver", - "credit_id": "64813d2cbf31f200aec6a836", - "order": 67 - }, - { - "adult": false, - "gender": 1, - "id": 3053187, - "known_for_department": "Acting", - "name": "Kate Doherty", - "original_name": "Kate Doherty", - "popularity": 0.622, - "profile_path": null, - "cast_id": 164, - "character": "Basil's Housekeeper", - "credit_id": "64813e9abf31f20100334cbb", - "order": 68 - }, - { - "adult": false, - "gender": 2, - "id": 1623272, - "known_for_department": "Acting", - "name": "Duran Fulton Brown", - "original_name": "Duran Fulton Brown", - "popularity": 1.774, - "profile_path": null, - "cast_id": 153, - "character": "Barricade Cop", - "credit_id": "64813d4999259c011c3ea28c", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 4102355, - "known_for_department": "Acting", - "name": "Eliza Mae Kyffin", - "original_name": "Eliza Mae Kyffin", - "popularity": 0.706, - "profile_path": null, - "cast_id": 154, - "character": "Screaming Beauty Queen", - "credit_id": "64813d5b99259c01392995ab", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 3665696, - "known_for_department": "Acting", - "name": "Mauro Cardinali", - "original_name": "Mauro Cardinali", - "popularity": 0.6, - "profile_path": null, - "cast_id": 155, - "character": "Maximus", - "credit_id": "64813d80bf31f2011d41b30d", - "order": 71 - }, - { - "adult": false, - "gender": 2, - "id": 142290, - "known_for_department": "Acting", - "name": "Mark Killeen", - "original_name": "Mark Killeen", - "popularity": 6.712, - "profile_path": "/dcsHqbZXmCsQE8Vcw3jufx8C8FX.jpg", - "cast_id": 34, - "character": "Pontimus", - "credit_id": "61e19d885f622b00422e50c6", - "order": 72 - }, - { - "adult": false, - "gender": 1, - "id": 2707907, - "known_for_department": "Acting", - "name": "Bharat Doshi", - "original_name": "Bharat Doshi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Miss Jaffrey", - "credit_id": "64813d95d2b209014e0745d1", - "order": 73 - }, - { - "adult": false, - "gender": 2, - "id": 1094218, - "known_for_department": "Acting", - "name": "Aïssam Bouali", - "original_name": "Aïssam Bouali", - "popularity": 1.4, - "profile_path": "/bUsUqtF4tjXDMytMggMAx5xUJvv.jpg", - "cast_id": 157, - "character": "Henchman", - "credit_id": "64813d9ed2b20900ebbedee1", - "order": 74 - }, - { - "adult": false, - "gender": 0, - "id": 1405566, - "known_for_department": "Acting", - "name": "Douglas Robson", - "original_name": "Douglas Robson", - "popularity": 1.01, - "profile_path": null, - "cast_id": 158, - "character": "Gunther", - "credit_id": "64813da764765400c7b707c9", - "order": 75 - }, - { - "adult": false, - "gender": 0, - "id": 3988344, - "known_for_department": "Acting", - "name": "Mohammed R. Kamel", - "original_name": "Mohammed R. Kamel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 159, - "character": "Hotel Security", - "credit_id": "64813db199259c00c5b2fff6", - "order": 76 - }, - { - "adult": false, - "gender": 1, - "id": 2001428, - "known_for_department": "Acting", - "name": "Bryony Miller", - "original_name": "Bryony Miller", - "popularity": 4.079, - "profile_path": "/b8j1QLDHlRqG6fq4SkSCK1ayaGW.jpg", - "cast_id": 160, - "character": "Confused Student", - "credit_id": "64813dbce375c000c525daf5", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 4102357, - "known_for_department": "Acting", - "name": "Tiwa Lade", - "original_name": "Tiwa Lade", - "popularity": 0.6, - "profile_path": null, - "cast_id": 161, - "character": "Bubblegum Student", - "credit_id": "64813dd064765400c7b707f5", - "order": 78 - }, - { - "adult": false, - "gender": 0, - "id": 4102358, - "known_for_department": "Acting", - "name": "Brodie Husband", - "original_name": "Brodie Husband", - "popularity": 0.6, - "profile_path": null, - "cast_id": 162, - "character": "Sketching Student", - "credit_id": "64813de6e375c000c525db16", - "order": 79 - }, - { - "adult": false, - "gender": 1, - "id": 3260026, - "known_for_department": "Acting", - "name": "Hannah Onslow", - "original_name": "Hannah Onslow", - "popularity": 1.4, - "profile_path": "/tGSdGZRoWRSMgihgRD5SQ8vxrQ3.jpg", - "cast_id": 163, - "character": "Student", - "credit_id": "64813df6e2726001072089ad", - "order": 80 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1, - "known_for_department": "Directing", - "name": "George Lucas", - "original_name": "George Lucas", - "popularity": 17.686, - "profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg", - "credit_id": "63892422d388ae00961ac9d8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1, - "known_for_department": "Directing", - "name": "George Lucas", - "original_name": "George Lucas", - "popularity": 17.686, - "profile_path": "/WCSZzWdtPmdRxH9LUCVi2JPCSJ.jpg", - "credit_id": "6082562867825900570e8120", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "575b68959251410504000dc8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "64bc942aac617c00e6bbcdaa", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 491, - "known_for_department": "Sound", - "name": "John Williams", - "original_name": "John Williams", - "popularity": 3.347, - "profile_path": "/KFyMqUWeiBdP9tJcZyGWOqnrgK.jpg", - "credit_id": "64bc9431eb79c200c5d9df25", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 1, - "id": 8384, - "known_for_department": "Art", - "name": "Anna Pinnock", - "original_name": "Anna Pinnock", - "popularity": 0.891, - "profile_path": null, - "credit_id": "638a5f077d5db500c89b83f2", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 366, - "known_for_department": "Directing", - "name": "James Mangold", - "original_name": "James Mangold", - "popularity": 14.362, - "profile_path": "/pk0GDjn99crNwR4qgCCEokDYd71.jpg", - "credit_id": "5e574108a6d93100145c82c6", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 366, - "known_for_department": "Directing", - "name": "James Mangold", - "original_name": "James Mangold", - "popularity": 14.362, - "profile_path": "/pk0GDjn99crNwR4qgCCEokDYd71.jpg", - "credit_id": "64800861e375c000e24d1e55", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 432, - "known_for_department": "Camera", - "name": "Phedon Papamichael", - "original_name": "Phedon Papamichael", - "popularity": 4.494, - "profile_path": null, - "credit_id": "605ea61f8c315900294626e2", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 433, - "known_for_department": "Editing", - "name": "Michael McCusker", - "original_name": "Michael McCusker", - "popularity": 0.854, - "profile_path": null, - "credit_id": "64686810d1857201802c982e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 488, - "known_for_department": "Directing", - "name": "Steven Spielberg", - "original_name": "Steven Spielberg", - "popularity": 26.915, - "profile_path": "/tZxcg19YQ3e8fJ0pOs7hjlnmmr6.jpg", - "credit_id": "585e94c392514115c700f680", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 489, - "known_for_department": "Production", - "name": "Kathleen Kennedy", - "original_name": "Kathleen Kennedy", - "popularity": 9.143, - "profile_path": "/ndgYlie0PHkyqEiEBGM8SqrPOkr.jpg", - "credit_id": "56ec87d69251415e59003568", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 498, - "known_for_department": "Costume & Make-Up", - "name": "Joanna Johnston", - "original_name": "Joanna Johnston", - "popularity": 2.48, - "profile_path": "/xuCe7ZgtqOCaY6MUvXpG7buckXO.jpg", - "credit_id": "638a5f250e64af00c25d127f", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 508, - "known_for_department": "Writing", - "name": "David Koepp", - "original_name": "David Koepp", - "popularity": 5.807, - "profile_path": "/is3t4k8OMX0KNCD3EilDWOucYZG.jpg", - "credit_id": "6480084fd2b20900ca1ca6dd", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 648, - "known_for_department": "Writing", - "name": "Philip Kaufman", - "original_name": "Philip Kaufman", - "popularity": 2.737, - "profile_path": "/AtTB8qM4UsifYsKtEPgQSCibP5s.jpg", - "credit_id": "6082561f7776f00058228a40", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 664, - "known_for_department": "Directing", - "name": "Frank Marshall", - "original_name": "Frank Marshall", - "popularity": 5.083, - "profile_path": "/lt2aBdnfDRJI4hvBu4733ZPGaCa.jpg", - "credit_id": "56e8a51e9251417bb70009c0", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2216, - "known_for_department": "Sound", - "name": "Gary Rydstrom", - "original_name": "Gary Rydstrom", - "popularity": 2.919, - "profile_path": "/1DoKaxoJlz6hV9bai43e07GxGQf.jpg", - "credit_id": "638a608ce93e950211134101", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2216, - "known_for_department": "Sound", - "name": "Gary Rydstrom", - "original_name": "Gary Rydstrom", - "popularity": 2.919, - "profile_path": "/1DoKaxoJlz6hV9bai43e07GxGQf.jpg", - "credit_id": "6481371ce2726000afc0e879", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 5338, - "known_for_department": "Sound", - "name": "Kyrsten Mate", - "original_name": "Kyrsten Mate", - "popularity": 2.076, - "profile_path": null, - "credit_id": "638a605e0e64af009e8eadb7", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 8163, - "known_for_department": "Sound", - "name": "Jana Vance", - "original_name": "Jana Vance", - "popularity": 1.411, - "profile_path": null, - "credit_id": "64ecbbafe894a6011ef9910c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 8166, - "known_for_department": "Sound", - "name": "Juan Peralta", - "original_name": "Juan Peralta", - "popularity": 0.706, - "profile_path": "/e89pv3PlTiauZHa1CuC9i8M34Wl.jpg", - "credit_id": "64ecaf69c3c89101007e2a53", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 8684, - "known_for_department": "Crew", - "name": "Dan Bradley", - "original_name": "Dan Bradley", - "popularity": 5.31, - "profile_path": "/hrnm0T93g6yd5WBiZ59Aoff0c2F.jpg", - "credit_id": "64a0e75981da3900c9ed1fc5", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 11166, - "known_for_department": "Sound", - "name": "William Ross", - "original_name": "William Ross", - "popularity": 1.06, - "profile_path": null, - "credit_id": "64bc9437e9da69012e0dfebf", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 11166, - "known_for_department": "Sound", - "name": "William Ross", - "original_name": "William Ross", - "popularity": 1.06, - "profile_path": null, - "credit_id": "64a0e9bc4a52f8012694cd07", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 11354, - "known_for_department": "Crew", - "name": "Ben Cooke", - "original_name": "Ben Cooke", - "popularity": 5.686, - "profile_path": "/tuMetGw8QNRbWEEtMP3SITwBFc2.jpg", - "credit_id": "64a0e7e14a52f800c994b826", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 40796, - "known_for_department": "Camera", - "name": "David Appleby", - "original_name": "David Appleby", - "popularity": 0.989, - "profile_path": "/b8zskcykOOugn31axyHn5qB8hdn.jpg", - "credit_id": "64ecb669e894a600e4e7cba0", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 2, - "id": 15017, - "known_for_department": "Costume & Make-Up", - "name": "Bill Corso", - "original_name": "Bill Corso", - "popularity": 3.51, - "profile_path": "/gY3zqmfv2kNYpQBnIgFormVU829.jpg", - "credit_id": "64c7292163e6fb0138da5853", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 16363, - "known_for_department": "Production", - "name": "Nina Gold", - "original_name": "Nina Gold", - "popularity": 3.728, - "profile_path": "/emeKuabMDN3C8x8ibby7FNtjRgu.jpg", - "credit_id": "64c72785eec5b50139006437", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 21122, - "known_for_department": "Sound", - "name": "Ramiro Belgardt", - "original_name": "Ramiro Belgardt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecafd606f98400ae4a5f1f", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 21339, - "known_for_department": "Writing", - "name": "Jez Butterworth", - "original_name": "Jez Butterworth", - "popularity": 5.832, - "profile_path": "/fCdknBtQMVoIEW0VfKiL2yMZqgW.jpg", - "credit_id": "6480082be2726000afc05ed7", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 113041, - "known_for_department": "Sound", - "name": "David Betancourt", - "original_name": "David Betancourt", - "popularity": 2.1, - "profile_path": null, - "credit_id": "64ecbca41feac100c4700f60", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 113046, - "known_for_department": "Sound", - "name": "David Giammarco", - "original_name": "David Giammarco", - "popularity": 1.801, - "profile_path": null, - "credit_id": "64ecaf8806f98400eb6110b3", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 113054, - "known_for_department": "Sound", - "name": "Warren Hendriks", - "original_name": "Warren Hendriks", - "popularity": 1.677, - "profile_path": null, - "credit_id": "64ecb723c613ce00eaaa14e9", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 113073, - "known_for_department": "Sound", - "name": "Paul Massey", - "original_name": "Paul Massey", - "popularity": 1.477, - "profile_path": "/tWhvSEIPMJVrxeWZ1deVGbMxZLY.jpg", - "credit_id": "64ecaf555258ae00add5d37f", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 113087, - "known_for_department": "Sound", - "name": "Erin Michael Rettig", - "original_name": "Erin Michael Rettig", - "popularity": 0.614, - "profile_path": null, - "credit_id": "64ecb953458199011d2c214a", - "department": "Sound", - "job": "Sound Engineer" - }, - { - "adult": false, - "gender": 2, - "id": 71148, - "known_for_department": "Editing", - "name": "Dirk Westervelt", - "original_name": "Dirk Westervelt", - "popularity": 0.974, - "profile_path": null, - "credit_id": "638a5ea51283e900861e6817", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 77511, - "known_for_department": "Production", - "name": "Zakaria Alaoui", - "original_name": "Zakaria Alaoui", - "popularity": 0.816, - "profile_path": "/wOAZpt31Rv2EMazldNNcMPEheNW.jpg", - "credit_id": "64c72828eec5b501390064a6", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 82133, - "known_for_department": "Production", - "name": "David Webb", - "original_name": "David Webb", - "popularity": 0.73, - "profile_path": null, - "credit_id": "64a0e6df4a52f80145de8af9", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 95835, - "known_for_department": "Sound", - "name": "Eric A. Norris", - "original_name": "Eric A. Norris", - "popularity": 1.606, - "profile_path": null, - "credit_id": "64ecbad706f984014e69a684", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 120254, - "known_for_department": "Writing", - "name": "John-Henry Butterworth", - "original_name": "John-Henry Butterworth", - "popularity": 2.904, - "profile_path": null, - "credit_id": "6480083ebf31f2013adc2f91", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 927696, - "known_for_department": "Sound", - "name": "George Hart", - "original_name": "George Hart", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb9a4e894a60101227204", - "department": "Sound", - "job": "Sound Engineer" - }, - { - "adult": false, - "gender": 0, - "id": 1023711, - "known_for_department": "Art", - "name": "Adam Stockhausen", - "original_name": "Adam Stockhausen", - "popularity": 2.351, - "profile_path": "/i0Pjdf3nfXcMyJmKTmR8fCT9JOt.jpg", - "credit_id": "5e500485a76ac50013a0584d", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1073372, - "known_for_department": "Art", - "name": "Oli van der Vijver", - "original_name": "Oli van der Vijver", - "popularity": 1.106, - "profile_path": null, - "credit_id": "64c7287741aac40fb3e5be3d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1078710, - "known_for_department": "Visual Effects", - "name": "Berj Bannayan", - "original_name": "Berj Bannayan", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64a0e949d5191f011cabb91d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1174045, - "known_for_department": "Production", - "name": "Simon Emanuel", - "original_name": "Simon Emanuel", - "popularity": 1.668, - "profile_path": "/clw3K31l1TKmoDoSPSBu1F8rVNc.jpg", - "credit_id": "6070bbc0498bc20029457af7", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1319120, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Finlay", - "original_name": "Charlotte Finlay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e8178c0a4800e478c3c4", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1326396, - "known_for_department": "Art", - "name": "Kate Grimble", - "original_name": "Kate Grimble", - "popularity": 1.8, - "profile_path": null, - "credit_id": "638a5fa91283e9007c73c5e5", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1337040, - "known_for_department": "Visual Effects", - "name": "Laurens Ehrmann", - "original_name": "Laurens Ehrmann", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6481377abf31f2010033479d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1360099, - "known_for_department": "Sound", - "name": "Lee Gilmore", - "original_name": "Lee Gilmore", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64ecbaeae894a600c729d61d", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1367505, - "known_for_department": "Sound", - "name": "Ted Caplan", - "original_name": "Ted Caplan", - "popularity": 0.763, - "profile_path": null, - "credit_id": "64ecaff745819900c6f988ce", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1379940, - "known_for_department": "Acting", - "name": "Joel Adrian", - "original_name": "Joel Adrian", - "popularity": 1.921, - "profile_path": null, - "credit_id": "64ceaba5614c6d00acb19469", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1388850, - "known_for_department": "Art", - "name": "Peter Dorme", - "original_name": "Peter Dorme", - "popularity": 1.074, - "profile_path": null, - "credit_id": "638a5f416dc6c00097baf59f", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1388851, - "known_for_department": "Art", - "name": "Oliver Goodier", - "original_name": "Oliver Goodier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a5f968a84d200c9c9034d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1388865, - "known_for_department": "Sound", - "name": "David Chrastka", - "original_name": "David Chrastka", - "popularity": 0.776, - "profile_path": null, - "credit_id": "64ecbb28839018011f8e8138", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1399300, - "known_for_department": "Crew", - "name": "John Berri", - "original_name": "John Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb7b383901800e5d12757", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1399300, - "known_for_department": "Crew", - "name": "John Berri", - "original_name": "John Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb69fc613ce014dfd7993", - "department": "Editing", - "job": "Additional Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1400540, - "known_for_department": "Directing", - "name": "Sheila Waldron", - "original_name": "Sheila Waldron", - "popularity": 1.635, - "profile_path": null, - "credit_id": "64a0e78b81da3900ad2be58b", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1401690, - "known_for_department": "Sound", - "name": "Polly McKinnon", - "original_name": "Polly McKinnon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb91e06f984012d740379", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1403427, - "known_for_department": "Production", - "name": "Candice D. Campos", - "original_name": "Candice D. Campos", - "popularity": 0.631, - "profile_path": null, - "credit_id": "64c72813d7a70a0139dc50e3", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1404553, - "known_for_department": "Crew", - "name": "Moira Houlihan", - "original_name": "Moira Houlihan", - "popularity": 1.097, - "profile_path": null, - "credit_id": "64ecbe08594c9400ffe77c16", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 2, - "id": 1406873, - "known_for_department": "Sound", - "name": "Josh Gold", - "original_name": "Josh Gold", - "popularity": 1.38, - "profile_path": null, - "credit_id": "64ecb70d5258ae012ca669b4", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1408329, - "known_for_department": "Visual Effects", - "name": "Kathy Siegel", - "original_name": "Kathy Siegel", - "popularity": 0.615, - "profile_path": null, - "credit_id": "648b6346076ce800c8b964fa", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1414187, - "known_for_department": "Crew", - "name": "Robert Weaver", - "original_name": "Robert Weaver", - "popularity": 0.635, - "profile_path": null, - "credit_id": "64a0e7b44a52f80145de8bcf", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1416153, - "known_for_department": "Sound", - "name": "Donald Sylvester", - "original_name": "Donald Sylvester", - "popularity": 0.713, - "profile_path": null, - "credit_id": "638a60a91283e90097662e0a", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1426327, - "known_for_department": "Crew", - "name": "Nicolas Hernandez", - "original_name": "Nicolas Hernandez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a616115376c00c834be59", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb3c8594c9400ffe7790f", - "department": "Costume & Make-Up", - "job": "Hair Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb3b91feac100c4700c1e", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430408, - "known_for_department": "Costume & Make-Up", - "name": "Frances Hannon", - "original_name": "Frances Hannon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7295395ce24011e59b95b", - "department": "Costume & Make-Up", - "job": "Prosthetic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1430472, - "known_for_department": "Costume & Make-Up", - "name": "Chiara Ugolini", - "original_name": "Chiara Ugolini", - "popularity": 0.682, - "profile_path": null, - "credit_id": "64c72adecadb6b01440e5346", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1434643, - "known_for_department": "Crew", - "name": "Waldo Mason", - "original_name": "Waldo Mason", - "popularity": 0.895, - "profile_path": null, - "credit_id": "64c72a57cadb6b01440e52ea", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1437621, - "known_for_department": "Costume & Make-Up", - "name": "Sarah Nuth", - "original_name": "Sarah Nuth", - "popularity": 0.659, - "profile_path": null, - "credit_id": "64c72a6c30f79c013bd2c836", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1437622, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Rogers", - "original_name": "Charlotte Rogers", - "popularity": 1.197, - "profile_path": null, - "credit_id": "64c7299563e6fb00e12b805b", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1450955, - "known_for_department": "Production", - "name": "Lex Donovan", - "original_name": "Lex Donovan", - "popularity": 0.632, - "profile_path": null, - "credit_id": "64a0e8b0d5191f00c506811e", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1453243, - "known_for_department": "Costume & Make-Up", - "name": "Lorraine Hill", - "original_name": "Lorraine Hill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7296763aad2020d09ee95", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 1, - "id": 1459645, - "known_for_department": "Sound", - "name": "Christine Sirois", - "original_name": "Christine Sirois", - "popularity": 0.829, - "profile_path": null, - "credit_id": "64ecbd24839018013cdbb4c1", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 1459864, - "known_for_department": "Art", - "name": "Quinn Robinson", - "original_name": "Quinn Robinson", - "popularity": 0.836, - "profile_path": null, - "credit_id": "638a60220e64af00c25d12af", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1461368, - "known_for_department": "Sound", - "name": "Mark Appleby", - "original_name": "Mark Appleby", - "popularity": 0.683, - "profile_path": null, - "credit_id": "64ecbd56594c9400e26117fa", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1463393, - "known_for_department": "Sound", - "name": "Chris Manning", - "original_name": "Chris Manning", - "popularity": 0.729, - "profile_path": "/epR2FpCWyqUZV4rkdKBe0wAoSYE.jpg", - "credit_id": "64ecbc225258ae014df3b186", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1463477, - "known_for_department": "Acting", - "name": "Michael DeBeer", - "original_name": "Michael DeBeer", - "popularity": 2.896, - "profile_path": null, - "credit_id": "64a0e908d5191f011cabb8e5", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1470167, - "known_for_department": "Camera", - "name": "Jonathan Olley", - "original_name": "Jonathan Olley", - "popularity": 1.719, - "profile_path": null, - "credit_id": "64ecbde2c3c891011da00eaa", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 1473164, - "known_for_department": "Visual Effects", - "name": "Andrew Whitehurst", - "original_name": "Andrew Whitehurst", - "popularity": 0.823, - "profile_path": null, - "credit_id": "648b6331c2ff3d00ad008ace", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1487710, - "known_for_department": "Art", - "name": "Martin Foley", - "original_name": "Martin Foley", - "popularity": 2.479, - "profile_path": null, - "credit_id": "638a5f6fe93e9501c466a20b", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1530091, - "known_for_department": "Crew", - "name": "Mike Massa", - "original_name": "Mike Massa", - "popularity": 2.478, - "profile_path": null, - "credit_id": "64ecb35f5258ae00add5d485", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1533060, - "known_for_department": "Editing", - "name": "Andrew Buckland", - "original_name": "Andrew Buckland", - "popularity": 2.36, - "profile_path": null, - "credit_id": "64686824c3514c015779be2a", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1534821, - "known_for_department": "Art", - "name": "Gabriel Hardman", - "original_name": "Gabriel Hardman", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64ecb3955258ae00c94d9898", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1534987, - "known_for_department": "Sound", - "name": "Tom Williams", - "original_name": "Tom Williams", - "popularity": 1.103, - "profile_path": null, - "credit_id": "64bc947d85c0a200c897f0f0", - "department": "Sound", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1542378, - "known_for_department": "Costume & Make-Up", - "name": "Emma J. Slater", - "original_name": "Emma J. Slater", - "popularity": 0.854, - "profile_path": null, - "credit_id": "64c72aaf95ce24011e59ba55", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1546028, - "known_for_department": "Art", - "name": "Andrew Palmer", - "original_name": "Andrew Palmer", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64c728b830f79c00c781d3ff", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1548696, - "known_for_department": "Editing", - "name": "Skip Kimball", - "original_name": "Skip Kimball", - "popularity": 1.118, - "profile_path": null, - "credit_id": "64a0ea7ec390c500cafffbaa", - "department": "Editing", - "job": "Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 1550636, - "known_for_department": "Costume & Make-Up", - "name": "Karen Asano-Myers", - "original_name": "Karen Asano-Myers", - "popularity": 1.221, - "profile_path": null, - "credit_id": "64c728f463aad2020b7b715f", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 1561360, - "known_for_department": "Sound", - "name": "Brian Chumney", - "original_name": "Brian Chumney", - "popularity": 1.742, - "profile_path": "/hioKZVbtglGhL0rdI9mjqf2AwEe.jpg", - "credit_id": "64a0e9a2d5191f00e26401c4", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1564540, - "known_for_department": "Editing", - "name": "Sandra Grubb", - "original_name": "Sandra Grubb", - "popularity": 1.64, - "profile_path": null, - "credit_id": "64ecb883e894a600c729d55e", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1568519, - "known_for_department": "Sound", - "name": "Stuart Wilson", - "original_name": "Stuart Wilson", - "popularity": 0.789, - "profile_path": null, - "credit_id": "64ecaf27c3c891013ab36d6f", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1572873, - "known_for_department": "Sound", - "name": "Ronni Brown", - "original_name": "Ronni Brown", - "popularity": 2.18, - "profile_path": "/ivUg96HtBHsyIMJ5dLq64KNxsrM.jpg", - "credit_id": "64ecbbd15258ae010bdab218", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1591559, - "known_for_department": "Costume & Make-Up", - "name": "Adrian Rigby", - "original_name": "Adrian Rigby", - "popularity": 1.321, - "profile_path": null, - "credit_id": "64c72981eec5b5011cb12b8b", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1614071, - "known_for_department": "Lighting", - "name": "Tom O'Sullivan", - "original_name": "Tom O'Sullivan", - "popularity": 0.676, - "profile_path": null, - "credit_id": "64a0e9dd4a52f800af1253a2", - "department": "Lighting", - "job": "Rigging Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1615149, - "known_for_department": "Sound", - "name": "Simon Diggins", - "original_name": "Simon Diggins", - "popularity": 1.245, - "profile_path": null, - "credit_id": "64ecbd6ac3c891013ab3724b", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1616064, - "known_for_department": "Costume & Make-Up", - "name": "Karen Cohen", - "original_name": "Karen Cohen", - "popularity": 1.084, - "profile_path": null, - "credit_id": "64a0e82f81da3900c9ed2099", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1616064, - "known_for_department": "Costume & Make-Up", - "name": "Karen Cohen", - "original_name": "Karen Cohen", - "popularity": 1.084, - "profile_path": null, - "credit_id": "64a0e8278c0a48013b3d94ef", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1635006, - "known_for_department": "Costume & Make-Up", - "name": "Chris Lyons", - "original_name": "Chris Lyons", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64c72a4563aad20209a5b43c", - "department": "Costume & Make-Up", - "job": "Special Effects Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1669139, - "known_for_department": "Sound", - "name": "Samson Neslund", - "original_name": "Samson Neslund", - "popularity": 0.979, - "profile_path": null, - "credit_id": "64ecbafe458199013a7f4a76", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1697626, - "known_for_department": "Lighting", - "name": "Dave Brennan", - "original_name": "Dave Brennan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9d0c390c500eb35186c", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 0, - "id": 1714911, - "known_for_department": "Costume & Make-Up", - "name": "Sally Crouch", - "original_name": "Sally Crouch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7293ed7a70a00ad654159", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1730428, - "known_for_department": "Costume & Make-Up", - "name": "Angie Mudge", - "original_name": "Angie Mudge", - "popularity": 0.76, - "profile_path": null, - "credit_id": "64c7297263e6fb00acdcc09c", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1757613, - "known_for_department": "Visual Effects", - "name": "Keith Sellers", - "original_name": "Keith Sellers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9540cb3350138fcfab9", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1757647, - "known_for_department": "Editing", - "name": "Daniel M. Nussbaum", - "original_name": "Daniel M. Nussbaum", - "popularity": 0.66, - "profile_path": null, - "credit_id": "64ecb8a706f984014e69a5b7", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1759658, - "known_for_department": "Costume & Make-Up", - "name": "Jo Barrass-Short", - "original_name": "Jo Barrass-Short", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729b1db8a0000ad4b423b", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 1769100, - "known_for_department": "Editing", - "name": "Christopher Rucinski", - "original_name": "Christopher Rucinski", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb8c51feac100c4700def", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1775689, - "known_for_department": "Art", - "name": "Jake Hall", - "original_name": "Jake Hall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7288acadb6b0125707742", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1784629, - "known_for_department": "Sound", - "name": "Mike Tehrani", - "original_name": "Mike Tehrani", - "popularity": 0.601, - "profile_path": null, - "credit_id": "64ecbd8a458199010099c491", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1789575, - "known_for_department": "Art", - "name": "Isona Rigau", - "original_name": "Isona Rigau", - "popularity": 0.988, - "profile_path": "/9QKjIf1jmemge0tnREL811kPKmB.jpg", - "credit_id": "638a60116dc6c00097baf5d3", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1797894, - "known_for_department": "Production", - "name": "Simon Mills", - "original_name": "Simon Mills", - "popularity": 1.102, - "profile_path": null, - "credit_id": "64ecb46083901800c88b8585", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1918598, - "known_for_department": "Art", - "name": "Charlotte Malynn", - "original_name": "Charlotte Malynn", - "popularity": 1.799, - "profile_path": null, - "credit_id": "638a5fe815376c007b36f62d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1922321, - "known_for_department": "Costume & Make-Up", - "name": "Amy Haida", - "original_name": "Amy Haida", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729f841aac40fb2da742a", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1931606, - "known_for_department": "Costume & Make-Up", - "name": "Gabor Kerekes", - "original_name": "Gabor Kerekes", - "popularity": 0.612, - "profile_path": null, - "credit_id": "64c72a29db8a0000ad4b428d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 1967858, - "known_for_department": "Sound", - "name": "Richard Duarte", - "original_name": "Richard Duarte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbbf5c613ce010b8e0cff", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1971073, - "known_for_department": "Costume & Make-Up", - "name": "Sophie Ashworth", - "original_name": "Sophie Ashworth", - "popularity": 0.621, - "profile_path": null, - "credit_id": "64c7290bd7a70a00e2f6d9c4", - "department": "Costume & Make-Up", - "job": "Prosthetic Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1974609, - "known_for_department": "Art", - "name": "Elicia Scales", - "original_name": "Elicia Scales", - "popularity": 0.666, - "profile_path": null, - "credit_id": "64c728cdeec5b500ff529216", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 2009105, - "known_for_department": "Art", - "name": "Sam Leake", - "original_name": "Sam Leake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c728a063aad20209a5b334", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2016737, - "known_for_department": "Visual Effects", - "name": "Julien Martins", - "original_name": "Julien Martins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e9914a52f8012694cce3", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2095251, - "known_for_department": "Camera", - "name": "Nic Cupac", - "original_name": "Nic Cupac", - "popularity": 1.543, - "profile_path": null, - "credit_id": "64813f2599259c00c5b300ef", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 2157866, - "known_for_department": "Crew", - "name": "Hanin Ouidder", - "original_name": "Hanin Ouidder", - "popularity": 0.932, - "profile_path": null, - "credit_id": "638a60d87d5db5007cdb9681", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2177238, - "known_for_department": "Visual Effects", - "name": "Matt Blouin", - "original_name": "Matt Blouin", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64ecb7cf594c9400c554d6c8", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2357879, - "known_for_department": "Costume & Make-Up", - "name": "Leanne Alison White", - "original_name": "Leanne Alison White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72af1cadb6b01440e5359", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 2437985, - "known_for_department": "Crew", - "name": "Adam Basil", - "original_name": "Adam Basil", - "popularity": 5.03, - "profile_path": "/nFacpuhpaOl013z9cUqL1dSFxtj.jpg", - "credit_id": "64ceac02303c85013a14d49f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2438109, - "known_for_department": "Acting", - "name": "Fredrik T. Hiebert", - "original_name": "Fredrik T. Hiebert", - "popularity": 1.005, - "profile_path": null, - "credit_id": "64a0eb1481da39012c6f4d50", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 2441460, - "known_for_department": "Visual Effects", - "name": "Alistair Williams", - "original_name": "Alistair Williams", - "popularity": 0.898, - "profile_path": null, - "credit_id": "64a0e7fc0cb3350138fcf963", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2503997, - "known_for_department": "Crew", - "name": "Abdelaaziz Attougui", - "original_name": "Abdelaaziz Attougui", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabfa85090f00e796c258", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2650623, - "known_for_department": "Costume & Make-Up", - "name": "Andrew Whiteoak", - "original_name": "Andrew Whiteoak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72b06db8a0000e328979d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 2, - "id": 2808013, - "known_for_department": "Visual Effects", - "name": "Reetu Aggarwal", - "original_name": "Reetu Aggarwal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64813757bf31f2011d41af01", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2827126, - "known_for_department": "Production", - "name": "Matthew Wells", - "original_name": "Matthew Wells", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64686837c3514c015779be37", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2846579, - "known_for_department": "Crew", - "name": "Matthew Bell", - "original_name": "Matthew Bell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceac0b85090f00c87ce465", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2849340, - "known_for_department": "Costume & Make-Up", - "name": "Clementine Ollerenshaw", - "original_name": "Clementine Ollerenshaw", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a7f30f79c00c781d4f4", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2851511, - "known_for_department": "Crew", - "name": "Dan Adams", - "original_name": "Dan Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceab876d4c9700afadb371", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2886344, - "known_for_department": "Costume & Make-Up", - "name": "Olivia Jerrard", - "original_name": "Olivia Jerrard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a1663e6fb011b3aefbc", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2891049, - "known_for_department": "Crew", - "name": "Roman Neso Laupmaa", - "original_name": "Roman Neso Laupmaa", - "popularity": 0.6, - "profile_path": "/k2oeQpPqlZtRAwZbQ5k0XlKmbaI.jpg", - "credit_id": "64ceab97fa27f400c50af42f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2969854, - "known_for_department": "Crew", - "name": "Alex King", - "original_name": "Alex King", - "popularity": 0.642, - "profile_path": null, - "credit_id": "64bc9384af85de00c662c9fe", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 2972694, - "known_for_department": "Sound", - "name": "Greg J. Peterson", - "original_name": "Greg J. Peterson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbc401feac100c4700f38", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3129337, - "known_for_department": "Editing", - "name": "A.R. Björklund", - "original_name": "A.R. Björklund", - "popularity": 0.725, - "profile_path": "/v5HcsF9bHB3GTuALC0ItrT40ZKx.jpg", - "credit_id": "6481356dd2b20900ca1d3d30", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 3129337, - "known_for_department": "Editing", - "name": "A.R. Björklund", - "original_name": "A.R. Björklund", - "popularity": 0.725, - "profile_path": "/v5HcsF9bHB3GTuALC0ItrT40ZKx.jpg", - "credit_id": "6468684b006b01018958588e", - "department": "Production", - "job": "Post Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3162828, - "known_for_department": "Costume & Make-Up", - "name": "Mona Turnbull", - "original_name": "Mona Turnbull", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72acd63e6fb00e12b812d", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3344658, - "known_for_department": "Costume & Make-Up", - "name": "Madeleine Drewell", - "original_name": "Madeleine Drewell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729e863aad20209a5b3f8", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3446430, - "known_for_department": "Crew", - "name": "James Apps", - "original_name": "James Apps", - "popularity": 1.105, - "profile_path": null, - "credit_id": "64ceabb46d4c97014f4222c2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3477194, - "known_for_department": "Directing", - "name": "Blake Simon", - "original_name": "Blake Simon", - "popularity": 0.6, - "profile_path": "/3Af4Gn0ECRmONJ8dysANHq5sKuS.jpg", - "credit_id": "64ecb29d83901801021de41c", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3491105, - "known_for_department": "Costume & Make-Up", - "name": "Samuel James", - "original_name": "Samuel James", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a08eec5b500c5f2579a", - "department": "Costume & Make-Up", - "job": "Wigmaker" - }, - { - "adult": false, - "gender": 2, - "id": 3505011, - "known_for_department": "Crew", - "name": "Mehrzad Asgi-Kermani", - "original_name": "Mehrzad Asgi-Kermani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabe74d679100acf0593d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3548737, - "known_for_department": "Art", - "name": "Tim Dutton", - "original_name": "Tim Dutton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "638a5f58e93e9501e208c18d", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3553794, - "known_for_department": "Crew", - "name": "Emma Sawyer", - "original_name": "Emma Sawyer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecba6345819900c6f98c46", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3580287, - "known_for_department": "Crew", - "name": "Luciano Bacheta", - "original_name": "Luciano Bacheta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabf0549dda0139328f1c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3652887, - "known_for_department": "Costume & Make-Up", - "name": "Jean Carlos de Blas", - "original_name": "Jean Carlos de Blas", - "popularity": 0.6, - "profile_path": "/zpQPINZtUNKwu4f6UOchnW2ewk.jpg", - "credit_id": "64c729d995ce2400af1c145f", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3831786, - "known_for_department": "Costume & Make-Up", - "name": "Hazel d Smith", - "original_name": "Hazel d Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72abedb8a000100c4a5a7", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 3837119, - "known_for_department": "Costume & Make-Up", - "name": "Emma Leigh Porter", - "original_name": "Emma Leigh Porter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a8ddb8a00013a05e0aa", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3892435, - "known_for_department": "Costume & Make-Up", - "name": "Debbie Black", - "original_name": "Debbie Black", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c729c430f79c011e0682b9", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 4104274, - "known_for_department": "Crew", - "name": "Fiona Cousins", - "original_name": "Fiona Cousins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0ea0b81da3900c9ed21fd", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141523, - "known_for_department": "Production", - "name": "Nathan Woods", - "original_name": "Nathan Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64bc93ea85c0a200ad602fac", - "department": "Crew", - "job": "Production Controller" - }, - { - "adult": false, - "gender": 0, - "id": 4141523, - "known_for_department": "Production", - "name": "Nathan Woods", - "original_name": "Nathan Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e71a0cb33500ab977973", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4141524, - "known_for_department": "Production", - "name": "Kirsty Barham", - "original_name": "Kirsty Barham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0e8628c0a4800ae244a24", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141525, - "known_for_department": "Art", - "name": "Siobhan Walsh", - "original_name": "Siobhan Walsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0ea6581da39010b8b3b7a", - "department": "Art", - "job": "Construction Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4141526, - "known_for_department": "Crew", - "name": "Edoardo Martino", - "original_name": "Edoardo Martino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a0eadc81da3900c9ed228f", - "department": "Crew", - "job": "Animal Wrangler" - }, - { - "adult": false, - "gender": 0, - "id": 4189264, - "known_for_department": "Production", - "name": "Anthony Dixon", - "original_name": "Anthony Dixon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c7280163e6fb00acdcbfcd", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4189272, - "known_for_department": "Costume & Make-Up", - "name": "Lucy Rowley", - "original_name": "Lucy Rowley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c72a9ecadb6b01066dd4be", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 4199357, - "known_for_department": "Crew", - "name": "Miguel Arregui", - "original_name": "Miguel Arregui", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceabdd85090f0125bc658a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 4225447, - "known_for_department": "Visual Effects", - "name": "Lily-May Licorish", - "original_name": "Lily-May Licorish", - "popularity": 0.6, - "profile_path": "/6MUH6x4M3WsAgXCl8q37gItrYN3.jpg", - "credit_id": "64e2a1869463180102cb4660", - "department": "Visual Effects", - "job": "Visual Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4239323, - "known_for_department": "Production", - "name": "Kelly Lee", - "original_name": "Kelly Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb5a4c613ce012cc69be5", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4239377, - "known_for_department": "Sound", - "name": "Rich Danhakl", - "original_name": "Rich Danhakl", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbb68c3c89100c6842056", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4239382, - "known_for_department": "Sound", - "name": "Dave Tourkow", - "original_name": "Dave Tourkow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecbcdf458199010099c462", - "department": "Sound", - "job": "ADR Engineer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Vudu Extended Preview", - "key": "WBoDtHx1jAA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-29T16:00:18.000Z", - "id": "64ee2b6977d23b00cb84d230" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Crafting Indy", - "key": "3dmRtTJrz5k", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-17T19:00:19.000Z", - "id": "64b5c7f0e0ca7f0106989903" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Celebrating Harrison Ford", - "key": "jDY6Ul5jJg0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-13T17:00:21.000Z", - "id": "64b162c7bbd0b0013bc1e324" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Williams Featurette", - "key": "N1IxAXuyDAQ", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-07T22:31:37.000Z", - "id": "64b1c20a78570e00ad4abffe" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ride of a Lifetime", - "key": "iDsrpTG6GvM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-06T16:03:16.000Z", - "id": "64b1c1e50bb07600eb283574" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Biggest Fear", - "key": "-qZm3-ec7Aw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-05T19:41:33.000Z", - "id": "64b1c1db23d27800c93b12a3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Day", - "key": "270cxx1k378", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-05T19:39:59.000Z", - "id": "64b1c1d50e4fc800c682ddbd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Summer's #1 Movie", - "key": "7KiG8UxDg0I", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:45:45.000Z", - "id": "64b1c1c137806200c58647d9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BFI Future Skills trainees on working on LucasFilms’ Indiana Jones and the Dial of Destiny", - "key": "Kzj51XOVQuY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-03T10:42:51.000Z", - "id": "64a2c0a1e8d02800c5467e1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spoiler Warning", - "key": "I0vnE0-jXS4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-01T17:00:14.000Z", - "id": "64a2c9dc11386c011c3a9429" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A New Discovery", - "key": "T8ojE7Nsfwc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-29T16:00:19.000Z", - "id": "649db2c3c072a2012e23be37" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Summer's Biggest Adventure", - "key": "0Xud-uWZBbo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-29T07:11:34.000Z", - "id": "649db2aec072a2014faf0d7b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Map of Adventures", - "key": "VfReNyfvQWA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-27T19:00:26.000Z", - "id": "649cc9ccc072a2014fae7025" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Action Featurette", - "key": "XiLeOpe1384", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-26T16:00:17.000Z", - "id": "649a8a270e5aba00e2c5e42f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "One Final Adventure", - "key": "dTkkNkBLmM0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-25T16:04:07.000Z", - "id": "649913bd03bf8400af157cc2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Triumphant", - "key": "uzdf9BKwAVQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-23T16:00:46.000Z", - "id": "6499878fb3440900e272e97c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Harrison Ford Reflects on Playing Indiana Jones, New Adventures Come to the Disney Parks, and More!", - "key": "MuyDxVAhKBA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-22T19:00:15.000Z", - "id": "6499883f6f43ec00e27eb2ef" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Stars at the U.S. Red Carpet Premiere", - "key": "Mc_D2bWMaSo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-21T19:00:09.000Z", - "id": "649987cfbbd0b000e7305fde" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Train", - "key": "xBue7dwYVP4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-20T16:00:42.000Z", - "id": "649987f862f33500ca44641f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Icons", - "key": "7nssKGKCiYU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T23:56:12.000Z", - "id": "64901960c3c89100ae51f9a1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "In 2 Weeks", - "key": "8-nrsYTzMC8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-16T16:00:10.000Z", - "id": "64901932559d2200c5779c7c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Harrison Ford and Ke Huy Quan", - "key": "7AfDAtEgJTo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-15T21:33:31.000Z", - "id": "6490194ec3c89100cadb4d86" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Legacy of Indiana Jones", - "key": "AYZmL9D3BEI", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-14T16:00:07.000Z", - "id": "649019462f8d09011d251937" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get in the Pool", - "key": "LsZb0RE-ZfE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-12T17:00:19.000Z", - "id": "64897c04bf31f25054b813dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Steal", - "key": "deacRH_uoJc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T13:51:40.000Z", - "id": "6472c50abe2d4900a7d6012c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Rescue", - "key": "Q9Tian4FtJA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T20:04:28.000Z", - "id": "64669be4006b0100e6b343cc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Last Adventure", - "key": "TgBvNq94C6o", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-18T16:01:07.000Z", - "id": "64669c2433a3760175d1cb27" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "eQfMbSe7F2g", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-07T11:57:51.000Z", - "id": "643093aa6dea3a00b54ea94f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game TV Spot", - "key": "TQpwONzpcy4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-13T00:02:27.000Z", - "id": "63e97fd21277780081a444ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "ZfVYgWYaHmE", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-01T21:00:16.000Z", - "id": "63891de20398ab008fad9781" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/35z8hWuzfFUZQaYog8E9LsXW3iI.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/57JocxmicOoAMhkUSmdKBlpZWMT.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ymZDxJle67EBFTEiBp1WzRuXjZc.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/g2sNNB5OYZDhVdvDolsDCftAAS1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/4COltJdpjNmcTSgS0nGxVOZrDAw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/j0IobR8VH9x0Y5koAcnB7VkPW04.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/oFv4qzBLAbi7AKnPaRfiApF4XbL.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 855, - "iso_639_1": null, - "file_path": "/AgoA1zXLXMHN6E9fDTYuE10Tmuc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1520 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o9GQIxwZIR6VKSwLZHiaRSgaMzA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/b0UUx8OvqQASesc78mXRzvjmxmj.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1125, - "iso_639_1": null, - "file_path": "/4MJYDmHX5thaHhF45xzorQp06rs.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/po6AvQRVi01teGlRMX3VYsJ5zuc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/4Pp3stq63JykDEWookarcngL8Dj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/pEIoGAuBcnNYRSK1qI3fjew2g7G.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/cxXH96ZJZU4lDKIYi8zxR0E47BX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/76405158Vu9xWtocQvRtsOn1sCQ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1806, - "iso_639_1": null, - "file_path": "/3nm8b8VluUJZj8Hdtwmb2Zy1B1Y.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3211 - }, - { - "aspect_ratio": 1.778, - "height": 1803, - "iso_639_1": null, - "file_path": "/ahe0zwv4ajIpDuD7PffXkBuJSMg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3205 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3dK3SMOQiKYpTr36KAI8995FK52.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/b4EgNYB4ZlThtf4EHKZiu1Qfa1o.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2BKJMsrlUUbosT36kyCdwD26HDt.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/dzFsfqe7nVKpsYEzdW1CfxNp2NO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/CrwsWGdNtYpc1zGg1hPxuB88PT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/gCT47rlj2NcME1ObrzLJwlbutMT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/r3TQrFiBRoYqZcL1aAUU7HBc2JH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5RpBfgxKRht9i1W69TJfrz78aGH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 848, - "iso_639_1": null, - "file_path": "/4ZJu62h1M6WnwuXG5cls20RMi2k.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1507 - }, - { - "aspect_ratio": 1.778, - "height": 1607, - "iso_639_1": null, - "file_path": "/2i2xWYOoniy61xDYDAmFMYodmW6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2857 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uCXBDR8ArGWFh36lZaIlutW3pOa.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rDZ7ETqD5u0hbQuMiaig6G8yLLp.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2ycmzTMAU6peTnas80lz4oDxMRp.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zPcuuhwZFDzBTc66wtrLZ2qX5y4.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/m0cKmfdhXoGSuPphbe06IoAOMEy.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cg7IqhQvRgQxcY4VB3doHUgvOlQ.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/u8MCqhIV29jq4VHc6VMSWNDwW1j.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/nlAxSe05g8IJ4y5kNr7gm5iswjr.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/wT2Vev31ZvtR9IO1MyMdQKJnZfL.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1843, - "iso_639_1": null, - "file_path": "/8XeZr9VaaN5Np7NLvxRn852smap.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 3277 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/iLGYCAtAK4kwKj86YSgB2wwW9Kg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/pbO15LtKgkfXxxoNXkpwI6gYJ69.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/sBhiQtMfzQxvIdFHsm7gs2N9G3D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1646, - "iso_639_1": null, - "file_path": "/kA3JoRjnP63f8FEtEy07nFRCpF5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2926 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/oQSv7d0OBzwbVCZ8Nfns4RdMoGg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ArFToMV0EdTzmJc0xXM2FVXNxUo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/r8j7pG5qMNWBTGLHfnWXvwz21J0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/axy4Ln73s6MNQRi12lpx274LX4h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6oqqJftYoDV1A2nbCfOUYbFiOlB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kkQeAdpZTAtciwTEpSpbopHp1ZA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/t0pvCpaYKiS6ZgoBL3syXGQiUik.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/y3gQJsTyRntO5MCH5nbaE4OxS5X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tOSjW6J5cnr4eBv8zjypjwtaHWW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/yRm6mAvGZQmSu6N4eYaMDprqVKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6KQsyMNjuLbws5YPyDMaUBsiDyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cwmyii3AUYgBaQjdce8CqzHOKG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nw3kmTN6jT3I9IHnrLvfVBs92ko.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/g2UNFa4e7SIvDv0XDlxE8mCrJ8E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jmvvIpqqnlQanjet44mLQB7upxG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSjzhEyMRC3a3kiMAXORHfNYmai.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ugvfCvpJFPxlzJ06RYLNrSRlkyR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wAV188AurZxbbpJdUy9ARt29ewP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zl2dY2QcgIVWbH50ymUiFiqNyya.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jfkjWZN2h9KY0EPNfQ3YfoKzzND.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bJHsDRTx6Iu0n1iRihCGrKvz9Qd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xYXXhUil7XjzWrO31viuWcMyjc6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/cIR2y6s1A9TVrXT45L9DnRIRMxm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/wn8jkD0koZcFmmJvrWCgu2K1cgc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/dDpD55SiCiua0WTvCFE2qZTIRc1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/kg5DhkPTZkOpoPyAscpRHTUdoW3.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 2.129, - "height": 897, - "iso_639_1": "pt", - "file_path": "/fecG1EMalY23XPBDk6XSYDAnI3c.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1910 - }, - { - "aspect_ratio": 2.67, - "height": 327, - "iso_639_1": "he", - "file_path": "/gIIeiuQVl8nabVh4rGfPvny2zWn.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 873 - }, - { - "aspect_ratio": 2.325, - "height": 819, - "iso_639_1": "cs", - "file_path": "/nVn5bYgAjjvco4PpqVwyHUQFIYI.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1904 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/vuZ1tjoeuiWlu8sf6mXaGrMK690.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 2.633, - "height": 713, - "iso_639_1": "zh", - "file_path": "/CpgZ7VGtx2ntixEaq2sJjyOEWf.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1877 - }, - { - "aspect_ratio": 2.182, - "height": 1279, - "iso_639_1": "en", - "file_path": "/deZjHbQhAtiwG7egxESVim6kYfD.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2791 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/6SLGnc8qxcVXgtY7rDf5Oa7taVc.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1917 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/sv1yS0w4Ylk1A9AvAZzMwrp2wna.png", - "vote_average": 5.238, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.338, - "height": 820, - "iso_639_1": "en", - "file_path": "/9OGDuNO0xJbJYo8r1QcY1Qoc9vk.png", - "vote_average": 5.238, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 4.042, - "height": 472, - "iso_639_1": "zh", - "file_path": "/q1AiLeR67XUpRVhUI8Mb8ImzmCm.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1908 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "fr", - "file_path": "/8zHn3R4FWb4RUxNjjMz7QuN57tS.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1911 - }, - { - "aspect_ratio": 2.201, - "height": 546, - "iso_639_1": "uk", - "file_path": "/4fj8q12osQgtn1xsYkOpCxo54QZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1202 - }, - { - "aspect_ratio": 2.208, - "height": 616, - "iso_639_1": "uk", - "file_path": "/gYnvYiA6SdtC0I3yVmkEEINrWbi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1360 - }, - { - "aspect_ratio": 1.809, - "height": 1056, - "iso_639_1": "ja", - "file_path": "/2lsf7NXiVSSMERCNAsyQhAsPGVW.png", - "vote_average": 0, - "vote_count": 0, - "width": 1910 - }, - { - "aspect_ratio": 2.135, - "height": 897, - "iso_639_1": "pt", - "file_path": "/fjMEbkSOvuOkqiapj7BkAZ2nITN.png", - "vote_average": 0, - "vote_count": 0, - "width": 1915 - }, - { - "aspect_ratio": 2.137, - "height": 895, - "iso_639_1": "it", - "file_path": "/dj1T9l1joqXBtGimAUPcRE4M9uQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1913 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "hu", - "file_path": "/p64hGfwaEVbCulIOx4sdAp40gYQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.327, - "height": 820, - "iso_639_1": "de", - "file_path": "/fRi7xH6FEQ0sBlhuFQptXXOGFnc.png", - "vote_average": 0, - "vote_count": 0, - "width": 1908 - }, - { - "aspect_ratio": 2.325, - "height": 819, - "iso_639_1": "sk", - "file_path": "/hQ3QGvljUnYrpsfGFB1OWzvbnbf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1904 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "es", - "file_path": "/epOOxRKlKG0tfqRL8lTfZmPICNZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 2.242, - "height": 853, - "iso_639_1": "el", - "file_path": "/4N8IygPQuzh6OmPtpKfGEDfIWGm.png", - "vote_average": 0, - "vote_count": 0, - "width": 1912 - }, - { - "aspect_ratio": 2.137, - "height": 891, - "iso_639_1": "pl", - "file_path": "/tTXvVLY5hDyLvovb21mk4WpHvPb.png", - "vote_average": 0, - "vote_count": 0, - "width": 1904 - }, - { - "aspect_ratio": 2.066, - "height": 925, - "iso_639_1": "cn", - "file_path": "/yAjyvg99Pg4Qyymja5MlR24JUUB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 2.325, - "height": 825, - "iso_639_1": "tr", - "file_path": "/jqLs0ON8c9SajuOUP3jDpZJSSDG.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.137, - "height": 897, - "iso_639_1": "ro", - "file_path": "/1ZjKjn3iS7MW6LyTIaTXwhsYubj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 3.544, - "height": 540, - "iso_639_1": "ko", - "file_path": "/x4RyRgOVah6t9omozbfMB8rusM0.png", - "vote_average": 0, - "vote_count": 0, - "width": 1914 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/ajtsRiei8cFSc5CM86QND17ZlN7.png", - "vote_average": 0, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.263, - "height": 426, - "iso_639_1": "bg", - "file_path": "/fVV4fxQbzydb5hTvrepiBk9d2YJ.png", - "vote_average": 0, - "vote_count": 0, - "width": 964 - }, - { - "aspect_ratio": 2.324, - "height": 2366, - "iso_639_1": "en", - "file_path": "/3H1AvA1Z1iMP6mG0sG7CoPpHYpk.png", - "vote_average": 0, - "vote_count": 0, - "width": 5498 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/k2wYY4dH2vh83ag0M7fLwwLZFcj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.324, - "height": 825, - "iso_639_1": "en", - "file_path": "/BbeqOJL0Mif7DIwxOxqA61thFi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1917 - }, - { - "aspect_ratio": 2.325, - "height": 822, - "iso_639_1": "fr", - "file_path": "/gPZKYGGo2vqftvw0e9ghoCk80uo.png", - "vote_average": 0, - "vote_count": 0, - "width": 1911 - }, - { - "aspect_ratio": 3.301, - "height": 316, - "iso_639_1": "fr", - "file_path": "/bHOiJJulJhG6SVN9AoN6GoL4teV.png", - "vote_average": 0, - "vote_count": 0, - "width": 1043 - }, - { - "aspect_ratio": 2.183, - "height": 1299, - "iso_639_1": "en", - "file_path": "/n6qoY7G47xJvboGem7aO8HctjXL.png", - "vote_average": 0, - "vote_count": 0, - "width": 2836 - }, - { - "aspect_ratio": 2.21, - "height": 1299, - "iso_639_1": "de", - "file_path": "/eBhxqaSLJhUwTnSNkAqfb9QVLnE.png", - "vote_average": 0, - "vote_count": 0, - "width": 2871 - }, - { - "aspect_ratio": 3.107, - "height": 1192, - "iso_639_1": "es", - "file_path": "/mRMP0SbiZLymm5ZME3tjNK6wape.png", - "vote_average": 0, - "vote_count": 0, - "width": 3704 - }, - { - "aspect_ratio": 2.332, - "height": 479, - "iso_639_1": "pt", - "file_path": "/sfAuQGeyR3TaqjX8vD7ryTTTcxa.png", - "vote_average": 0, - "vote_count": 0, - "width": 1117 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "vote_average": 4.874, - "vote_count": 22, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y4zAHCRmS1wof5bUmEM9CZOYQ04.jpg", - "vote_average": 5.824, - "vote_count": 37, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sv7iVXYVJTtOUAM9KGwsIuO0dEc.jpg", - "vote_average": 5.65, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/zvmmREtqUmNUcQmev6BAaDzxEsQ.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m9c0GaHLQXisKB5XLCbjVmDrrol.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ar", - "file_path": "/6R0wpRBtdnCr9Kh1TCgqQJR2ehR.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5KTyTpupZXAZK6HPIPVyKhgKaOJ.jpg", - "vote_average": 5.456, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tZLCjk9apdFW4Gb9i2ohLlJnDCI.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xvrOBLSnuNVqZloaAGGSKWKujSy.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/yI64DI8BBcmX0Sf9E0brkirdwca.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/1TMczPTGEtl2DrpWNEy7aLm7XxB.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/i0wwmskzVAODTarZDXtjAaTFV0z.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aw6DdAI6ZPLqynub4bgg0PkZaec.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8lFkW5kBFeYCe3A0jLDj71jG5yb.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/t5gGBjs3Te3NATS6gukB6KAEWRN.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.701, - "height": 2284, - "iso_639_1": "zh", - "file_path": "/fWxkYvm69q9731RfWvwcQdu5LPD.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tDY5ZxKIP0o9n1d4or8U53MI7JD.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/gTAR51U4eAiCokNqtRy7FsprUar.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "en", - "file_path": "/upEnaBzQtG3rIr05RL8Bdgay4GS.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1242 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/77AHS2lV0PZSjXmAytvvEAFWCYR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hAzPDbYB7IGmuGGWr14U2m9HEJg.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/64TyGedJPmfwfO0dIQWFDLIw1U7.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/51zIj9keXgndOeSLjxmn7ZbxhhM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1714, - "iso_639_1": "sk", - "file_path": "/vsvF8lizq3Z3y6uEGrKxJ3u0izG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/s810Nig8BA6bDfBNhzXbQot1s8s.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/8ifAx8GS5AHL7xOTMJDMaza84RQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/cSveXycGSi14EjisYpLmXzVA3Oo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/sGmSQBSLTz80FRJ1T33M5Ox66DR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/o2rXT0sUT1u90ymEqGYsUfWlwIr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/k4wxZXBsQyC7KHbOA9ClCQ0xXpN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "it", - "file_path": "/sBK30XSO6lA3dhjoJ8I8RFkosIH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 540 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9FmZHcoEos0fJBhIK9gjdmTAQBS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "ja", - "file_path": "/1JEHa2DSV9pGhXDoouPiKaVWjad.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1863, - "iso_639_1": "it", - "file_path": "/pAyQJAlO9vC4jgcApxrIcptBUAp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zeVe4tESuacloHZSqnsihokT0Dq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/fV5eGjjVHx6OdCi0OKkdU9c2o69.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/6OdedQv2kxMm1Jd24muQslcdkCJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/nI4VvWzS2BxQC1Zu8fCytxEgXz7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/m4oBOUtLP51EiCIQJ0zMbTPTRVv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xOhuJs4zsxTxYmnI5mFEE1NzEuI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.756, - "height": 1350, - "iso_639_1": "el", - "file_path": "/sX0lZsBNUDivVYNTVbJQWwxb6s1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1020 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/uK8ZR0PkZqf9Zrsg9AYvcoUxWI8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/ohyBuxe8peJQSdoS5hw31VmKCZ4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/gJrPOlwwTTWSPuFAVcY8CZasZ8w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ekXY2j3DkcSZgXPXIglNOdNMyFn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/emtliD6tvlZMreBC6x5G2RCzzpy.jpg", - "vote_average": 5.284, - "vote_count": 39, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/zcVmoYA8InLCalpbBePY5Rdtuns.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oYLX2MMVMoM55tTQExZrpcsMqGt.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/hUAxVUfIJvtX8J5656n804VxIbl.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3Sj5ubQ0BLXd6JuECq52Ira8Oor.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/d8EOMMPGAzBy5PLRREP673GncRR.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/2vTsUU93ZHJlvpQukmvIWABD3HL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/6qF2gzZspNHPjeFEKTR27rPWaNd.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/zQqhQDuTQIz1FEX65Z1FuDIkRE6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/ymdNJTgBY3sI0eZMNlz6WPxELaY.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/xRAoQO95fu1lv7TEZHSBujpKm99.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/h48tDVKaCnrBUo1AZBXL9zA1jqn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/1dgvcZtfYHEDzCVGjt7RyezaKl3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/kmeXJthRzFLrxe9J5puXkQysxB8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/5YDjMVlYWERIri6UqQUasRleJKY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fvZqVQ3kqRQwTTohM0DNDkFr8YZ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/s2rYQR0Uj6PvRQuuo7TWYLz39Am.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/j03PSxQcf2Zvt3C2jiulWp5nbQi.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/yhfc2nALbgSUw3RRXAG9FPpQEHP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nV5etMnBWh45Z7Qd71ODL84gR7g.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s0xEukElpnt4pVKzQlU757X5Ter.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9UgK0pJj6e0QL3Kn6lcGNTpTGlc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jlhzWwbRRv7gbSqhVt1r05IW6p3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fxl2C9yDfujE8HBf3nsmCAt9zyb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qWR6OyWOYBDjZc6nKSKnJ2xf1hU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bUo9EO1jfYkfpbBTMYHoeUnjFnm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zLhWetZp1VdjVJVcZ2fNZgc88kn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/i9eI9C8atFBUQ4m4eek6Q7PYzWP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vb6NkmZbOtdNj4ZbmHwNsiyaHMc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vRtEizoX0TUKXFpTw1AJsBCW5gb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2890, - "iso_639_1": "en", - "file_path": "/lsI9PwoKorWFYBaIG1QOCKtFlKH.jpg", - "vote_average": 5.232, - "vote_count": 17, - "width": 1950 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/ye6zvyTM0jSMqpQyNwFVYq8ObVr.jpg", - "vote_average": 5.218, - "vote_count": 30, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qcm9zeiWFPFJdWW0kR7MzY0PlDa.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6c7Kj4llRREY82rS7YZFu2Y8OL6.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/3Z5D7T7iZgrA6XkxGxlIruqa8sW.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.742, - "height": 2696, - "iso_639_1": null, - "file_path": "/pFrMxpAidV0DIUWIjeVhdLiOGDs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/viX25whf5oJbKuQy7MmvQd2ihpP.jpg", - "vote_average": 5.19, - "vote_count": 37, - "width": 2000 - }, - { - "aspect_ratio": 0.712, - "height": 1405, - "iso_639_1": "zh", - "file_path": "/jifMzdkoF5MSpHn5x6DCc0RODvk.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/9EnfMH0nTPCna87Mh3G8Q6W2wze.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/uJVBk98aBXz19LfOmG688sMgcLO.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kMemwCJP1tR4EabApKUumOX9zoV.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1032, - "iso_639_1": "es", - "file_path": "/4rC64ABovm9p90dZOWMyZC3PMfC.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 688 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sl842ldg48YW8MYwZ2IDj0rYqdv.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uGwxC5YXLDwYRSBhWpFjU7Q0cbn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/skyDJSckppDiuSi9eu0RJRUbaie.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/hEU77GeZMolNhj0ermmtF05gLTZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/a6GcHPbRBOZHKFcI2NzKVGGmb33.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/riVvyL0qsBWV6YOf4MuNsVxaXHM.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "en", - "file_path": "/ALYjrgU1g0Hiq6xKwqnoWgSxjL.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yMMXRC7SESR10u4hST7Df9ZgKx7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rSyZwBSze8g3zxoLHOjigDz7BTy.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9JwDvVMXQcX1jVgxj2kAs96lv2E.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cDF54cVAbptcUGySSozMF4XgQVq.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qqxa34GI2odfcJPkF2KHJOudCNg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tTi468ohXrIJZM4lhX9L4nHMS3O.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/c9ZZgc34zLTeZI7LyG5HC1xHvx.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/3Ql3DzEa8mVRpm616R4cNvyTqHI.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/6ScvTOC302e8GUJuiJIM7gTEhxf.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "pt", - "file_path": "/wI4RwvFhUqFBj5PN1SAoIOwreeh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 0.704, - "height": 1597, - "iso_639_1": "ko", - "file_path": "/8DzQfAOf0DHXdXHFUNofEqZGRwp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1125 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "sk", - "file_path": "/du2ZikMIC80w6DjgvsLsgZTTWMt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1434 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/anNuKgtQlxyfvvEFXz9QV2FrWDG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1296, - "iso_639_1": "en", - "file_path": "/gjHBLNE5H8GZYxHdEsXJ8kEy51T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1445, - "iso_639_1": "it", - "file_path": "/opcWotN74cQSHbTc0pmxzhhvqqY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 964 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/58si8r1SKUAuyjfmVsy8DMdB5YN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.719, - "height": 2048, - "iso_639_1": "el", - "file_path": "/i25nEOGfXBwMeLij0jBTBi5Xlkl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1472 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/1Pb4akjT3tWG4zjrRB7eq4Tpowo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "cs", - "file_path": "/6oeIUPcJVZAIVtcGnSqmPWtPvlS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4ZzGYaDEKXh3XIggI0AaP0rvaaH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/1PvSqAB0WxRm2SVMmUuYHCXYJBS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/pxAqtOgH07PefJjsahDTpQiJ6hB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/a7rjOKJGLiro41s6IEzxCCAXBX1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4ABd8QByw7uJANBQktvbbRVlDaO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/ct7ZUip6Ug2bo11GGewjXAuZ8ye.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/vVb9tdV632gRuEqZOsbnghKsQ64.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "cs", - "file_path": "/efdNdrFgy1CWXcvxOqXqFycObBF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/qstcXhRqcdiJFOiovzkzUbOMrnu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nBTxgyZTHMAiVVR752EqLNZTp9X.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2925, - "iso_639_1": "en", - "file_path": "/9qKAe14iv1Z42NeyGWKQZdUcGj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1950 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/wBuvdx8HsCj2njSJ5WvGhDbmQGm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/fn0F9bjfcoFIkakaQSpLJCM7B5t.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/A3OiJcZN5srogjKYoNEdYV6Njv7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1734, - "iso_639_1": "en", - "file_path": "/6lrz2K4Tn7j2tTMDghCgWHHcWXd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1170 - }, - { - "aspect_ratio": 0.676, - "height": 1731, - "iso_639_1": "en", - "file_path": "/2vrvKjRrXUCj263nHTL76MIzjb4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1170 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/4CsthpFzr28HDva7zU6WiUaZ4Ln.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wYrElp1dzR56rs9LyREbjWShKMa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/egwdQKA9dT3OFcFHm1p87EEgTWT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/ov2xut1aPFaPMqWWBLyn4AuNueY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/3J6xqBoFfIoRRErdYcKbMDXpEcC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/y7DFwUJkIaQQPvMZOy7iQPkNWzM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "en", - "file_path": "/1fqDX6bktFIeRZepdNzTEgUqhPV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6sx9mR9GkBwGpwfthXDURRlzZ4c.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tBwFD0e6GnNThEHaIagNxmsUSfV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/1Wf9SgJieYxGxaYvv1zVqXEtFSb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yHRyjNYKQwbGfDwjs0Qw3LC0Y0q.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "es", - "file_path": "/n40Wg9kTTVvnYSVHvuyVCc3MVKE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1AE4RHgX5o7UWivWaSCTugZlYBF.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/kJXFkZvEC26aEIOComnbvfrin1b.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pu2SbVt07bebhkom6B4Duq37Qqi.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4altOCHb85TTkuJMocKR4b5dk8Q.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/yALWWBM9o7cQkSzxmLtwBYGbb35.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1453 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sD2OJEacK5GEXTFPn0jn1zRnovV.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wWcEfmTENf9Yyr29jyhqapIfOgL.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1o3mguGCAmRGMlfW2VXvxyKVAnw.jpg", - "vote_average": 5.128, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "en", - "file_path": "/11XqFeGLDTmAJhl0BvonLrl5KME.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/keIzu2yvjl4mpyXFw8LSNGEYhte.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": null, - "file_path": "/h901pw1zOQtiDYAO6MR4b3BlwVp.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "es", - "file_path": "/7VGUm5jHAR8bj4VC15V1G1SUnIN.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/h1UjEZxf1SK6hBhiyZTRFKsQH8J.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/TcrL5RynKasINbOwBt1D2xS2oJ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awvhFVRtAN2wr8HLPKpeHdY8qiC.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/560EiUX2Q5ao0vM3tVhy3b23zYV.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zlX1f79yMoTFhu6ilMmoOEixO90.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/gPB4yR4gDlm3CbEyzSwwgtX5s2m.jpg", - "vote_average": 5.11, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/sXXLxhQtFSPGBJ4A5p4d65POef4.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 756 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pV0K9V24YytDOLR4zLPqP4w7NLs.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/dI96j6PGKXzHbBoJCR5L1enWgGT.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "en", - "file_path": "/4ns4K8qxvNhwqfkQ1bSGXPsR66Y.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "en", - "file_path": "/uYszXb7X5VERFdVZ24BxxrtP3OQ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kyDiLH8V6JCW7bGuXljycZ3AzB3.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1926, - "iso_639_1": "en", - "file_path": "/81AMlVJyZWozV32u4HXRMaXgTvG.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1284 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/jSjZunnUZXIgB0CfVSJAPq146Ci.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tDT0iYzNltVktcH5IqWLTTohiwN.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/AWYPABxnYUQNRgPEsXCnf4zaqo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/27T0nssyKIZHWFDotQWAQbQ3FZm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7mEOEjGqQdRqOFPUmXAqWVvLCEj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6dLDFHzSlJsy1pRKeeu40dje89h.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tzr7p4KDe5U1RWfCVVAvxi3oUfH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xV7GpHw6ARqEqw56NytggF5xBYX.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/6fjsSeSxOQyf1IfVjeSZKryRx8U.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/DRmYljrkIS9oWj3TIXPxVYL3AY.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/hAX60w2L3txTq5wVLces1WoxVQZ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1125 - }, - { - "aspect_ratio": 0.7, - "height": 2835, - "iso_639_1": null, - "file_path": "/s7ib2AZXi9RLYKFeo0sn425aVHR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1984 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/6gqgWzArSVYL8MeWfQiup6Z9QNw.jpg", - "vote_average": 5.1, - "vote_count": 37, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/13irwPfFp79PXMgxhmEOpyCDz17.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9myf1VeUxkks2MjNbSLNLcOR4zl.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2500, - "iso_639_1": "en", - "file_path": "/lMQtl79BXVDwtWDHVLbZJHbXhnn.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3nV38ejSCB6qRnadAB0Y0mE7u6b.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eIuRWrTDRRWkASJYYcAh63pk6aX.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/bPeibTFBE0mDLnKudHfnfixutsP.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/alnG2cx9MKVKC9gzh7s1vXzbOMx.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "en", - "file_path": "/o4jUsn2FFpe6dHV5fssZOcz1HSr.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "en", - "file_path": "/u9G8JYm103U0JR2NOD8AYnxYDvP.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/LGaAqVG0ZfbZF21w78X8ej13We.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kn3DCN9U4SKe3yxGCgbEROuptsv.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/thpefKUl9U2kiiHDZ3uAUqRR5tt.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/r4vOcZR9jzmcd9QhslbaDN7UpSr.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/1hisWyFpxosdfh3UKqPvAC0RLdb.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/nJ0XpsfNXyk8Z1uJrfoOc7AIfSJ.jpg", - "vote_average": 4.954, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/l2XAhDDXj4YBFHjfMvD8m2Es7lP.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1350, - "iso_639_1": "en", - "file_path": "/gweFw7ayfqvoyiZXlGEGkmoAJHz.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1013 - }, - { - "aspect_ratio": 0.677, - "height": 911, - "iso_639_1": "en", - "file_path": "/bxtTWh9PzVDYL01X1U74Q8nEEeK.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 617 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/xQOMgcFbXiYu91eHsnQed1fEzMV.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.676, - "height": 900, - "iso_639_1": "en", - "file_path": "/cxfz8bfwHdpLhs3KHSMJCDliXLE.jpg", - "vote_average": 4.866, - "vote_count": 6, - "width": 608 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y4MBS0SKE0pHR57vfYBxGhrkfcv.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/5BzY3hyvtxQEh6oGpOnkFnOmbAS.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 2880, - "iso_639_1": "no", - "file_path": "/bJcnQCTfrCVjgmMzZbrguYe848J.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 1944 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/aANuS8yig0NmTlsHF5q6euEsH3L.jpg", - "vote_average": 4.812, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kVeNrCG5iyg1YGhaEtIUG6mZRUV.jpg", - "vote_average": 4.794, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eXpreW1z88ljUDkl9P95uWLCGHW.jpg", - "vote_average": 4.794, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2500, - "iso_639_1": "en", - "file_path": "/ArspOiFVXfLpjFwgxqEwegddcbj.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 1688 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8jUb8Ya4GdBRz6GGYZBbVkeSsNo.jpg", - "vote_average": 4.724, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rli5uQahUc8qxFXbjtGRy3yBc7P.jpg", - "vote_average": 4.656, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4TuTrvprluiFhIGS5wAs67qfnXP.jpg", - "vote_average": 4.634, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7UKaHqh3xARuZJ3zsQoyiYbc4Ae.jpg", - "vote_average": 4.432, - "vote_count": 25, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8uxdNRcYpLUWi9xmHQ5kLtYhRpk.jpg", - "vote_average": 4.424, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dUX0eSkZ7ap2XWYAtZfrcvWuVMe.jpg", - "vote_average": 4.318, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/5shYvcDqXZNyBrLrpRNE9hxEalT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/wlg8rbvw4wppzccrFYXFmJVMPp9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/5uixHLS6egg8gnFllfkHfINGRe3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1920, - "iso_639_1": "ca", - "file_path": "/xvNngGmz7c6TBTUtknd77UodBEY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8k2YxgEZ3IHhZ0xw4AQU5JWXVXE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/wG941HW8KvroPJeo0BbhjTDtFFJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/rX7ltbrdWqTo8Ga62EKTSVqwoLc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/f1C7BR5owa3eCYDSgSFXNOhFhRn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/mM9um9VVzsARz5qK0lmrvKDMa6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/v7nRptIYZVCca1YoXJDOqNtk8lG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "hr", - "file_path": "/tyZukr2JMof4b2dpdUqw3Iz8cmy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vJsSrHE1vno7vK7FDcNqhOunHiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/5a4ynoUh3HyG6juEaySw5W3EGP4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/rNTNUsBllzDx3RpnPk8Bushxt2g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 760 - }, - { - "aspect_ratio": 0.7, - "height": 1372, - "iso_639_1": "tr", - "file_path": "/rAjVndCqUx7QZ2ExvJidoxIlrtv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "nl", - "file_path": "/kloYF5prmNlVr5UI1hM1vX8zVTp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/aB6Pv6kGJglFg9HFxkdc1P08A6n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/hS3WiBuL6fQV1mUDgX8QRBHFdqd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/8o5aZYG1ukn27WV6SoMla2bx7AC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/9ANc7gpOXv4aRtSTZQq0F7Hh3Lg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/yLqzlQMjt604Dn8sBkeBnDA598.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fXXOfqB4l82iviJhjXpLmYrGirK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/b2tFUUO88J0yfhB9frosAzf0yJe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7YBjsd6aY0DYiwX9xi0haTzWcYn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/klascxJHV9f9CM5MRoMlBjeN1mp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/Vm46a2CFdxg2x3mm6Gt3uUpVyp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hI9Wh2eSkyO1yZAoiflRNW7q6C0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hV3LlPRbBfrXci2VVzdyh0GQAx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/vTf7YoOLW3dPZt7Y8TMUP8E0PI6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/57oCWy62JSXMEGQm1juMIfWSoLL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "no", - "file_path": "/hc0VTUXgbNMBY9r9dg0mUDv2erC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/dNLciVM9fI4YdtfXHxpUENaHJ0Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/sg3bV3n9K8J2JdeY7VxgZAfbtIr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/rAO6zYYwBNloMrPl2LOXH9ECN2C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/8o2tceLKzHQwMwimEq3346kmy2k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/oqW0q5BAQpeYZlf9RcY6LlqO91T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/jlVNipcTq3YpdrJKFnP5ZxFeh7L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/uoTgU3eGZOmAAEV23BmLQQNFrrs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/Aba8iTuYrBn4jGjKKRztTqMnPuW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "th", - "file_path": "/i4nY8gpvJ5UftePTIpDerTaBFTf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1191, - "iso_639_1": "ro", - "file_path": "/8DQH8lBQFaaw18ED8nl2bWaRJmA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 0.707, - "height": 2828, - "iso_639_1": "zh", - "file_path": "/u59cdTrEFgAdcT8oe4IUM8XkXzv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "de", - "file_path": "/smQcbQlQaTWR68lxbcGuvLZYeoM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 540 - }, - { - "aspect_ratio": 0.675, - "height": 1599, - "iso_639_1": "zh", - "file_path": "/yEJHzayRG8Jq9G9jEk40bPekczK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.715, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/fe5mOfMEK3INQJ2OVXqKk0j7Dj5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 772 - }, - { - "aspect_ratio": 0.745, - "height": 2686, - "iso_639_1": "cs", - "file_path": "/jzCN1PNgv5MX8LRGUMpcwccEA7F.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/vPuWLflBjuEItRdhlbsPFHv11OO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1811, - "iso_639_1": "ja", - "file_path": "/9kBchhEJkkwaNtFmtIPdsCOXEg9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/uiJtUGAmswLTxGYe0uPsOzYIpdt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/8eoYMZq18l6oMVDO2zfkgsBFmWl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/wUNtxUAelneYNxhwvZg6oIenKkj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.709, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/55fBHWuSEc9SXIJVENiluMvAfyE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1453 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/6Ur9DTqHWS0ix5qbRjwYA1nAkrk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 945 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/7G6LjqSuRGOk95NDWuXTIpMoB9k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 945 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/vGyqJD6VfZ2yx23LHRgMHQkAgHx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2440, - "iso_639_1": "ar", - "file_path": "/ihCGDoHik5dAaF2ho8wM8BBzZcl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1627 - }, - { - "aspect_ratio": 0.667, - "height": 1611, - "iso_639_1": "fr", - "file_path": "/2GiM2Mb60EsdbuWYYYFhPvFpCm5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1074 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/b0mSUpkI960sin9gY3oEtMI8o7q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nEMqyBDptulPmRxk7yeBaakJNoE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/4IFbd09bYSYtsAFHzOPneN6TFHl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "th", - "file_path": "/fs4bNvKk3FLQ1XSshD8n808zlp0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "th", - "file_path": "/kSCawldqH5X1UODBWTzvCuOjV8i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.666, - "height": 1718, - "iso_639_1": "th", - "file_path": "/2XcOwxJZJ9lQQHpsNDTCd7UJ46I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1145 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/siI2fMb9bPsedqOdCM9a1wGFuwx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/NdYfXxyuHewHUaXQjW48wmxjho.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/8LbbQvjrp5IuA179w1pFiaFHVHD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/xZT5pJAkPDBp2kDjLB8zv4fqA22.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/mFmqr1fs5GeLR8E5URmXMVS3n2U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gvAfPsrGNLMPK7Ojun36h7BTiRY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zZ5zSCrF6Gg0IePdtkuTNiQczpp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6hNQe4iT3Vrrb0Q6fdyoqrUGqMk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wmfNgLBVsz3HEjAzqYVO78ct5aY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/paapw58PtlBmbu7WKQlUJvIsCuc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9eD1NSKZklNWwIEaonV43i9PNAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/yx7ljz7tH70GnTRVhXqwCkBVlgg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/yrMhLKayjRCMYRUNBXPXFpIr3jT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/icMW728XWWEVX3XuD2iJr6hfMMU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/jMwuOOL3a75FKJI7fA4bteTC0Al.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/6iX7h2w2VN8WLUGGfr2JAFy9vYA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/pwYc8jjkC9So92hcdjpIVkL7d6e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.744, - "height": 1440, - "iso_639_1": "sk", - "file_path": "/cOP6Sw6QjATeSCiuXSoBALoKuf5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/v7ui0Aywr7NR54vYPmfdSHBMB4Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/9WRlCr93Z00F1zdTftZyewrtZE9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cU6bSTpG0iCEevXhfpBs6FY9KHf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2985, - "iso_639_1": "ru", - "file_path": "/p1b9uUAbxuKAK06iQOIm8kZG8BH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1990 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "tr", - "file_path": "/3bstvUOGWzv34XwaZ94rGoA4RFx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4PMVco2AWfcV1Wwdsouaf3GtwGr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/w5sy455R1yYkgcz3d50D20tJW4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mHbjhqR277tW0uiCOf5QZpJATGf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3mKf6irIWfjcLJNHqmYIe83AIBl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/a84VqaQJmEePGTHo3KmTyUyKJqw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6eTVc61Q2bZhaEJ98XQAdOAZsZK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/aB10NJSuexPSfszPqpFfx82zY8u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xRHwNdUgaOnkmfEwrED9HV7Oacj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/A8ITeABpDs1uPspal58a1nj84cs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A6cuXRLz2tVBEnSkwK6gWlP37HZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/fZwoQljkH8xy6DfHY1AlbrOROmf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/pz2kQF1Wb4hjuBybYFZX558hlw4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3VUMUpvsIF1iZbv4dfVE0BHe7dE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/arYn8cbu4E1TD28MoLmRc9QL3WM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vpQ5oSbucVydLnYuoQ94CS8YZjx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xY1uOFuqQ9iQSDuCgH73jzpR046.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qHqWhDlXCbSKPcaZX9PZJG7uFKL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8DESehsQime1s8KuCM8Thciz9Ht.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ma76wmrPtnM69Qcg22leiyC1la5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/f0BaCdmwtTF9Mj6IgPZ2tCXYR7j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uMLcfQMlKDxKIVxVOPM9MYmhtMR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ee7PiZPp1QGjS5CPWHN4icwhY0J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w6NpRGq7KSxZ463DL87kOnj9O6T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/tBIWAoyE4znf4ocnuuMxnRFWCIQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/sXx6Y7z4QWG6EFOuUUOL35giOs1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/ccM45yJyROzUkaHzeKAeahMQLox.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/jVxc0a1lFcJ2l8l6zq0yDSeNb81.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 1600, - "iso_639_1": "fr", - "file_path": "/s7wmNqs3MUuuMC2HdFZY140Heem.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1083 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/reMvrfIKQ0lS1Q2JxwCK7WdfYDl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/iuI4tBgS94v2k73xGxECetKedFM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "de", - "file_path": "/tfVqZbCLi3OOjVjyLPot4VPKB1S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/hxnVwsqovBYLFUQaPU636Mfds1B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/fw8jRpvHjcsJwPsstgPFHsihExm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zk8FtZLJUcrR91oqO8qUMwnfiau.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nUT7sR1wtLDHFV2dpioWsfxB94d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jXaoUkW1RmFEgVLB8qxdkAE2e2r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/c7v9oUYxhs1KqCu3BpfOrNzVTSj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/346698.json b/examples/view-transitions/src/content/movies/346698.json deleted file mode 100644 index 7810cb436608..000000000000 --- a/examples/view-transitions/src/content/movies/346698.json +++ /dev/null @@ -1,8064 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "belongs_to_collection": null, - "budget": 145000000, - "genres": [ - { "id": 35, "name": "Comedy" }, - { "id": 12, "name": "Adventure" }, - { "id": 14, "name": "Fantasy" } - ], - "homepage": "https://www.barbie-themovie.com", - "id": 346698, - "imdb_id": "tt1517268", - "original_language": "en", - "original_title": "Barbie", - "overview": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.", - "popularity": 1899.184, - "poster_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "production_companies": [ - { - "id": 82968, - "logo_path": "/gRROMOG5bpF6TIDMbfaa5gnFFzl.png", - "name": "LuckyChap Entertainment", - "origin_country": "US" - }, - { - "id": 437, - "logo_path": "/nu20mtwbEIhUNnQ5NXVhHsNknZj.png", - "name": "Heyday Films", - "origin_country": "GB" - }, - { "id": 181486, "logo_path": null, "name": "NB/GG Pictures", "origin_country": "US" }, - { - "id": 6220, - "logo_path": "/cAj69EL1zSXmZH6STbMGZrunyMD.png", - "name": "Mattel", - "origin_country": "US" - } - ], - "production_countries": [ - { "iso_3166_1": "GB", "name": "United Kingdom" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-07-19", - "revenue": 1418073931, - "runtime": 114, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "She's everything. He's just Ken.", - "title": "Barbie", - "video": false, - "vote_average": 7.307, - "vote_count": 4767, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 234352, - "known_for_department": "Acting", - "name": "Margot Robbie", - "original_name": "Margot Robbie", - "popularity": 65.539, - "profile_path": "/euDPyqLnuwaWMHajcU3oZ9uZezR.jpg", - "cast_id": 58, - "character": "Barbie", - "credit_id": "5f88a9d28258fc0036ad14ff", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 30614, - "known_for_department": "Acting", - "name": "Ryan Gosling", - "original_name": "Ryan Gosling", - "popularity": 60.054, - "profile_path": "/lyUyVARQKhGxaxy0FbPJCQRpiaW.jpg", - "cast_id": 59, - "character": "Ken", - "credit_id": "61732049a217c000434083ec", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 59174, - "known_for_department": "Acting", - "name": "America Ferrera", - "original_name": "America Ferrera", - "popularity": 27.145, - "profile_path": "/dhiUliLE7dFaqj5BKNQ6x7Wm9uR.jpg", - "cast_id": 64, - "character": "Gloria", - "credit_id": "620408d4194186001ba589e4", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 1240487, - "known_for_department": "Acting", - "name": "Kate McKinnon", - "original_name": "Kate McKinnon", - "popularity": 19.161, - "profile_path": "/2cNetzianFcxPQbyOQnkAIkKUZE.jpg", - "cast_id": 67, - "character": "Barbie", - "credit_id": "620d7599e039f1001cde4012", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 1767250, - "known_for_department": "Acting", - "name": "Ariana Greenblatt", - "original_name": "Ariana Greenblatt", - "popularity": 109.874, - "profile_path": "/8xrCTYP8PuHixWzkiX6onJNfw8k.jpg", - "cast_id": 69, - "character": "Sasha", - "credit_id": "621e9f569f1be7001b137584", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 39995, - "known_for_department": "Acting", - "name": "Michael Cera", - "original_name": "Michael Cera", - "popularity": 32.001, - "profile_path": "/lFKyW2C7xj7X4nWpOEbVIDGOKrH.jpg", - "cast_id": 74, - "character": "Allan", - "credit_id": "6258485809191b0065316886", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 23659, - "known_for_department": "Acting", - "name": "Will Ferrell", - "original_name": "Will Ferrell", - "popularity": 21.729, - "profile_path": "/xYPM1OOLXZguj4FsgmOzTSUXaXd.jpg", - "cast_id": 72, - "character": "Mattel CEO", - "credit_id": "6254669a8e2e001659ef6fdf", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1489211, - "known_for_department": "Acting", - "name": "Simu Liu", - "original_name": "Simu Liu", - "popularity": 9.726, - "profile_path": "/uFNmmFTfNES3LW6H2gifpj6QQgh.jpg", - "cast_id": 100, - "character": "Ken", - "credit_id": "62a5e59053866e0de0f3a9d6", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1252934, - "known_for_department": "Directing", - "name": "Emerald Fennell", - "original_name": "Emerald Fennell", - "popularity": 7.572, - "profile_path": "/ytyHUsPb7Saulczm8nCJHypIWQF.jpg", - "cast_id": 79, - "character": "Midge", - "credit_id": "62599b3cd55c3d006695211f", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 15735, - "known_for_department": "Acting", - "name": "Helen Mirren", - "original_name": "Helen Mirren", - "popularity": 43.912, - "profile_path": "/eY26gqv9EGunId7kp32pLueXvz4.jpg", - "cast_id": 177, - "character": "Narrator (voice)", - "credit_id": "63a2ac6abcf8c900a703e06f", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 24203, - "known_for_department": "Acting", - "name": "Rhea Perlman", - "original_name": "Rhea Perlman", - "popularity": 7.07, - "profile_path": "/3kUrd75OesnsmicI15dWdswHy7T.jpg", - "cast_id": 82, - "character": "Ruth Handler", - "credit_id": "62599b675f2db100a855bcaf", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 1455336, - "known_for_department": "Acting", - "name": "Issa Rae", - "original_name": "Issa Rae", - "popularity": 9.214, - "profile_path": "/1tX1T5ZNCMh2KYP1jMgfg8P26vm.jpg", - "cast_id": 97, - "character": "Barbie", - "credit_id": "628697ceec45525126899890", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1253199, - "known_for_department": "Acting", - "name": "Alexandra Shipp", - "original_name": "Alexandra Shipp", - "popularity": 14.753, - "profile_path": "/4GOxIqnQXK5iGINdFDBlIQYa519.jpg", - "cast_id": 70, - "character": "Barbie", - "credit_id": "6234a816df29450046fe52f0", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 2201315, - "known_for_department": "Acting", - "name": "Emma Mackey", - "original_name": "Emma Mackey", - "popularity": 42.224, - "profile_path": "/y8nDoKXpyNViFL8Eam4Ey1PkgQ6.jpg", - "cast_id": 71, - "character": "Barbie", - "credit_id": "623b6caa719aeb00486bf21e", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 1611609, - "known_for_department": "Acting", - "name": "Hari Nef", - "original_name": "Hari Nef", - "popularity": 9.958, - "profile_path": "/i6Y4jABEIFEtjxg9PM2vdQlmBgc.jpg", - "cast_id": 103, - "character": "Barbie", - "credit_id": "62a5e5b535d1bc5107d08f00", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1417352, - "known_for_department": "Acting", - "name": "Kingsley Ben-Adir", - "original_name": "Kingsley Ben-Adir", - "popularity": 9.761, - "profile_path": "/35EG2nZhvVF7Cf317wWpIJfQwWl.jpg", - "cast_id": 78, - "character": "Ken", - "credit_id": "62599b1c71f095009beb8a42", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1475239, - "known_for_department": "Acting", - "name": "Ncuti Gatwa", - "original_name": "Ncuti Gatwa", - "popularity": 5.728, - "profile_path": "/mr5xF5oPULqQ1kPpURFc4NpXoSq.jpg", - "cast_id": 101, - "character": "Ken", - "credit_id": "62a5e59e1684f7004f7bcb8e", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2112439, - "known_for_department": "Acting", - "name": "Connor Swindells", - "original_name": "Connor Swindells", - "popularity": 17.418, - "profile_path": "/365RWqbzPMx0JOyTPeP4rf8a0Kn.jpg", - "cast_id": 80, - "character": "Aaron Dinkins", - "credit_id": "62599b4cd236e60066ae44d3", - "order": 17 - }, - { - "adult": false, - "gender": 1, - "id": 1474028, - "known_for_department": "Acting", - "name": "Sharon Rooney", - "original_name": "Sharon Rooney", - "popularity": 9.986, - "profile_path": "/aMsYxadSBZ2dIlULmpHZCJyL9VF.jpg", - "cast_id": 83, - "character": "Barbie", - "credit_id": "62599b72fe6c18009f13f78f", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 1742596, - "known_for_department": "Acting", - "name": "Ritu Arya", - "original_name": "Ritu Arya", - "popularity": 10.791, - "profile_path": "/146HQxww4Yq97VcZ3YUHrErHMsm.jpg", - "cast_id": 179, - "character": "Barbie", - "credit_id": "63b4f7b9a9117f056567730f", - "order": 19 - }, - { - "adult": false, - "gender": 1, - "id": 1168285, - "known_for_department": "Acting", - "name": "Ana Kayne", - "original_name": "Ana Kayne", - "popularity": 3.186, - "profile_path": "/zvWAOkXkW40O4705GFaPyohS3tB.jpg", - "cast_id": 84, - "character": "Barbie", - "credit_id": "62599b85c92c5d196aa7bc99", - "order": 20 - }, - { - "adult": false, - "gender": 1, - "id": 1267240, - "known_for_department": "Acting", - "name": "Nicola Coughlan", - "original_name": "Nicola Coughlan", - "popularity": 7.376, - "profile_path": "/etMRCSnSgfLjqq5NEi8tgNClHLe.jpg", - "cast_id": 532, - "character": "Barbie", - "credit_id": "642c22219cc67b05bf708567", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 1959397, - "known_for_department": "Acting", - "name": "Dua Lipa", - "original_name": "Dua Lipa", - "popularity": 4.561, - "profile_path": "/82ZEdOoWZcRQbOawXbZ1EDTO85K.jpg", - "cast_id": 531, - "character": "Barbie", - "credit_id": "642c21b1ac8e6b34033382f7", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 570, - "character": "Ken", - "credit_id": "6470954a336e0100c7079d0c", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 1427684, - "known_for_department": "Acting", - "name": "Scott Evans", - "original_name": "Scott Evans", - "popularity": 3.583, - "profile_path": "/x4tX5FmEBInEWTo0mFZkPU6fIqq.jpg", - "cast_id": 77, - "character": "Ken", - "credit_id": "62599afe3acd2016289fa921", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 1470911, - "known_for_department": "Acting", - "name": "Jamie Demetriou", - "original_name": "Jamie Demetriou", - "popularity": 4.938, - "profile_path": "/nRhjzDgxQ8PzdUX1MTGhSmWwm8D.jpg", - "cast_id": 102, - "character": "Mattel Executive #1", - "credit_id": "62a5e5ab35d1bc5107d08ede", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 1312526, - "known_for_department": "Acting", - "name": "Andrew Leung", - "original_name": "Andrew Leung", - "popularity": 11.063, - "profile_path": "/hXK4gUIooj3SpQ2qwEN9JLV0B7d.jpg", - "cast_id": 618, - "character": "Mattel Executive #2", - "credit_id": "64b794a1eee18600c6d10e45", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 1221073, - "known_for_department": "Acting", - "name": "Will Merrick", - "original_name": "Will Merrick", - "popularity": 4.356, - "profile_path": "/Al2mGwKBUX5FoUshdI2rVls71uu.jpg", - "cast_id": 619, - "character": "Young Mattel Employee", - "credit_id": "64b794abeee186011dc489c9", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 4169965, - "known_for_department": "Acting", - "name": "Zheng Xi Yong", - "original_name": "Zheng Xi Yong", - "popularity": 0.6, - "profile_path": "/zKJ1HxoIzin6fYtSj2QodXXdeCT.jpg", - "cast_id": 620, - "character": "An Even Younger Mattel Employee", - "credit_id": "64b794be109cd0011e69231f", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1502438, - "known_for_department": "Acting", - "name": "Asim Chaudhry", - "original_name": "Asim Chaudhry", - "popularity": 7.957, - "profile_path": "/1F0DwOpxUAEpw5iovMHZ5Y1C8n6.jpg", - "cast_id": 621, - "character": "Warehouse Employee", - "credit_id": "64b794c6d399e600eb76c01e", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 56650, - "known_for_department": "Acting", - "name": "Ray Fearon", - "original_name": "Ray Fearon", - "popularity": 2.433, - "profile_path": "/ou2cqhqdhfQoKVEBpIh0P3sKZti.jpg", - "cast_id": 622, - "character": "Dan at the FBI", - "credit_id": "64b794d05aadc4011c0bbf9f", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 3975650, - "known_for_department": "Acting", - "name": "Erica Ford", - "original_name": "Erica Ford", - "popularity": 0.924, - "profile_path": "/h45yXrIOPeTpz8qUy6Pgu9lS9TA.jpg", - "cast_id": 623, - "character": "Skipper", - "credit_id": "64b794d9109cd0010183a81e", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 3412837, - "known_for_department": "Acting", - "name": "Hannah Khalique-Brown", - "original_name": "Hannah Khalique-Brown", - "popularity": 1.807, - "profile_path": "/fBxo4bVDNrCe7VqAR3kM1s7UMYj.jpg", - "cast_id": 624, - "character": "Growing Up Skipper", - "credit_id": "64b794e755b0c0011c466501", - "order": 32 - }, - { - "adult": false, - "gender": 1, - "id": 2152740, - "known_for_department": "Acting", - "name": "Mette Towley", - "original_name": "Mette Towley", - "popularity": 1.042, - "profile_path": "/3mBRyRqLrxxIL7hTBh52wmz07Ro.jpg", - "cast_id": 625, - "character": "Barbie Video Girl", - "credit_id": "64b794f9109cd0010183a830", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 2673762, - "known_for_department": "Acting", - "name": "Marisa Abela", - "original_name": "Marisa Abela", - "popularity": 1.826, - "profile_path": "/jmrlbz43kUk4H0bcRGVLdJ4RsDl.jpg", - "cast_id": 108, - "character": "Teen Talk Barbie", - "credit_id": "62c489c22da84606ae4af556", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 86232, - "known_for_department": "Acting", - "name": "Lucy Boynton", - "original_name": "Lucy Boynton", - "popularity": 7.946, - "profile_path": "/znBMEv0NmBewhZWHUopmzEIYVyY.jpg", - "cast_id": 626, - "character": "Proust Barbie", - "credit_id": "64b7950dd399e6010cb7f226", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 47632, - "known_for_department": "Acting", - "name": "Rob Brydon", - "original_name": "Rob Brydon", - "popularity": 7.922, - "profile_path": "/xoKLZVwzaUgTUEvPX4vymXpC1fU.jpg", - "cast_id": 627, - "character": "Sugar Daddy Ken", - "credit_id": "64b79516d399e600eb76c03c", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1420175, - "known_for_department": "Acting", - "name": "Tom Stourton", - "original_name": "Tom Stourton", - "popularity": 2.655, - "profile_path": "/cwHVHtoqqVdxiQakrwlTfjBdafE.jpg", - "cast_id": 628, - "character": "Earring Magic Ken", - "credit_id": "64b7951f55b0c0011c466528", - "order": 37 - }, - { - "adult": false, - "gender": 0, - "id": 4183105, - "known_for_department": "Acting", - "name": "Chris Taylor", - "original_name": "Chris Taylor", - "popularity": 0.84, - "profile_path": "/lDYIiUeqVUbK3Ru5Rh10biwJn7W.jpg", - "cast_id": 768, - "character": "Ken Emcee", - "credit_id": "64c2548fdb4ed6011ed7a7f0", - "order": 38 - }, - { - "adult": false, - "gender": 2, - "id": 1619648, - "known_for_department": "Acting", - "name": "David Mumeni", - "original_name": "David Mumeni", - "popularity": 3.721, - "profile_path": "/sE7kybwXJoLpKualK5ayWG3U0GM.jpg", - "cast_id": 630, - "character": "Footrub Ken", - "credit_id": "64b79534d399e6010cb7f23a", - "order": 39 - }, - { - "adult": false, - "gender": 0, - "id": 2952051, - "known_for_department": "Acting", - "name": "Olivia Brody", - "original_name": "Olivia Brody", - "popularity": 0.6, - "profile_path": "/cRq9YhRThyHwsUnJ68Lg76fBkGa.jpg", - "cast_id": 631, - "character": "2001 Girl", - "credit_id": "64b795445aadc400c58a988c", - "order": 40 - }, - { - "adult": false, - "gender": 1, - "id": 4169971, - "known_for_department": "Acting", - "name": "Isla Ashworth", - "original_name": "Isla Ashworth", - "popularity": 0.6, - "profile_path": "/j6toGnhg5l0Cub0R1YslHA0oXSw.jpg", - "cast_id": 632, - "character": "2001 Girl", - "credit_id": "64b7954fd399e600eb76c066", - "order": 41 - }, - { - "adult": false, - "gender": 1, - "id": 4135287, - "known_for_department": "Acting", - "name": "Eire Farrell", - "original_name": "Eire Farrell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 633, - "character": "2001 Girl", - "credit_id": "64b79556109cd000e4e97cb1", - "order": 42 - }, - { - "adult": false, - "gender": 1, - "id": 1779093, - "known_for_department": "Acting", - "name": "Daisy Duczmal", - "original_name": "Daisy Duczmal", - "popularity": 0.996, - "profile_path": "/fLTtnJfhOpjW24A4GLOxGZUMbtb.jpg", - "cast_id": 634, - "character": "2001 Girl", - "credit_id": "64b7955cb1f68d014469f1dc", - "order": 43 - }, - { - "adult": false, - "gender": 0, - "id": 4169978, - "known_for_department": "Acting", - "name": "Genvieve Toussaint", - "original_name": "Genvieve Toussaint", - "popularity": 0.84, - "profile_path": null, - "cast_id": 635, - "character": "Young Sasha", - "credit_id": "64b795a555b0c000ffb0ac1f", - "order": 44 - }, - { - "adult": false, - "gender": 1, - "id": 1623321, - "known_for_department": "Acting", - "name": "Isabella Nightingale", - "original_name": "Isabella Nightingale", - "popularity": 0.84, - "profile_path": null, - "cast_id": 636, - "character": "Girl Making Weird Barbie", - "credit_id": "64b795b2d399e600eb76c085", - "order": 45 - }, - { - "adult": false, - "gender": 1, - "id": 3144896, - "known_for_department": "Acting", - "name": "Manuela Mora", - "original_name": "Manuela Mora", - "popularity": 0.6, - "profile_path": "/b4Glsjv4jFjs7uJVZUzj5SCQuxM.jpg", - "cast_id": 637, - "character": "Girl with Barbie", - "credit_id": "64b795bab1f68d00ae33d9b9", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4169980, - "known_for_department": "Acting", - "name": "Aida Sexton", - "original_name": "Aida Sexton", - "popularity": 0.6, - "profile_path": null, - "cast_id": 638, - "character": "Girl with Barbie", - "credit_id": "64b795cb109cd0013b029fbd", - "order": 47 - }, - { - "adult": false, - "gender": 1, - "id": 5493, - "known_for_department": "Costume & Make-Up", - "name": "Ann Roth", - "original_name": "Ann Roth", - "popularity": 8.092, - "profile_path": "/cT4EtdqvG0Yq4EQ3LASXiwyndYi.jpg", - "cast_id": 656, - "character": "The Woman on the Bench", - "credit_id": "64b796de109cd0013b02a040", - "order": 48 - }, - { - "adult": false, - "gender": 0, - "id": 4169981, - "known_for_department": "Acting", - "name": "Millie-Rose Crossley", - "original_name": "Millie-Rose Crossley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 639, - "character": "Advertisement Girl", - "credit_id": "64b795d855b0c00139b68db4", - "order": 49 - }, - { - "adult": false, - "gender": 0, - "id": 4169982, - "known_for_department": "Acting", - "name": "Anvita Nehru", - "original_name": "Anvita Nehru", - "popularity": 0.6, - "profile_path": null, - "cast_id": 640, - "character": "Advertisement Girl", - "credit_id": "64b795e0a806730144924765", - "order": 50 - }, - { - "adult": false, - "gender": 0, - "id": 3506596, - "known_for_department": "Acting", - "name": "Kayla-Mai Alvares", - "original_name": "Kayla-Mai Alvares", - "popularity": 0.6, - "profile_path": null, - "cast_id": 641, - "character": "Advertisement Girl", - "credit_id": "64b795eaeee18600c6d10ed8", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 1965108, - "known_for_department": "Acting", - "name": "Luke Mullen", - "original_name": "Luke Mullen", - "popularity": 1.926, - "profile_path": "/l26Y8LORdeHMjrAr5074NtcRfGH.jpg", - "cast_id": 642, - "character": "Guy at the Beach", - "credit_id": "64b795f455b0c000ffb0ac47", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2209431, - "known_for_department": "Acting", - "name": "Patrick Luwis", - "original_name": "Patrick Luwis", - "popularity": 1.852, - "profile_path": "/cDrbpzvAjX7zd7LtbkXHFSW6CS3.jpg", - "cast_id": 574, - "character": "Guy at the Beach", - "credit_id": "6470e58713a32000f9afd411", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1215837, - "known_for_department": "Acting", - "name": "Mac Brandt", - "original_name": "Mac Brandt", - "popularity": 5.272, - "profile_path": "/u2zRIywRVcih7LsZIsybmbzwmJW.jpg", - "cast_id": 644, - "character": "Construction Worker", - "credit_id": "64b796065aadc400ffb7d111", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 2123597, - "known_for_department": "Acting", - "name": "Paul Jurewicz", - "original_name": "Paul Jurewicz", - "popularity": 1.193, - "profile_path": "/kFKDiMUwentySCuVVf7TYzUhUdA.jpg", - "cast_id": 645, - "character": "Construction Worker", - "credit_id": "64b7960eb1f68d014469f221", - "order": 55 - }, - { - "adult": false, - "gender": 0, - "id": 4169984, - "known_for_department": "Acting", - "name": "Oraldo Austin", - "original_name": "Oraldo Austin", - "popularity": 0.84, - "profile_path": null, - "cast_id": 646, - "character": "Construction Worker", - "credit_id": "64b7961d109cd0013b029fee", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 203637, - "known_for_department": "Acting", - "name": "Benjamin Arthur", - "original_name": "Benjamin Arthur", - "popularity": 1.726, - "profile_path": "/bj0a8v6tASvZ4iwvXtuNLSk2zGN.jpg", - "cast_id": 647, - "character": "Construction Worker", - "credit_id": "64b7962555b0c000e2cb56fa", - "order": 57 - }, - { - "adult": false, - "gender": 2, - "id": 52930, - "known_for_department": "Acting", - "name": "Carlos Jacott", - "original_name": "Carlos Jacott", - "popularity": 3.19, - "profile_path": "/wBwHJ5f8OBOoHACkSEGaczvt060.jpg", - "cast_id": 648, - "character": "Policeman", - "credit_id": "64b7962d55b0c00139b68df4", - "order": 58 - }, - { - "adult": false, - "gender": 2, - "id": 1637555, - "known_for_department": "Acting", - "name": "Adam Ray", - "original_name": "Adam Ray", - "popularity": 3.209, - "profile_path": "/f7LUTC2sAP3dMmiiC880NGUYYgc.jpg", - "cast_id": 649, - "character": "Policeman", - "credit_id": "64b79634b1f68d00c8ff88ba", - "order": 59 - }, - { - "adult": false, - "gender": 2, - "id": 1097533, - "known_for_department": "Acting", - "name": "George Basil", - "original_name": "George Basil", - "popularity": 3.378, - "profile_path": "/8Bn5ZZp0cAnyjRWGPGiV833y7LZ.jpg", - "cast_id": 650, - "character": "Boutique Owner", - "credit_id": "64b7963c55b0c0011c46659c", - "order": 60 - }, - { - "adult": false, - "gender": 2, - "id": 207453, - "known_for_department": "Acting", - "name": "Ptolemy Slocum", - "original_name": "Ptolemy Slocum", - "popularity": 2.373, - "profile_path": "/vCfBlwQxoVdUPzupjEFlbeK8B8z.jpg", - "cast_id": 651, - "character": "Corporate Man", - "credit_id": "64b79647109cd0010183a8ae", - "order": 61 - }, - { - "adult": false, - "gender": 0, - "id": 1571604, - "known_for_department": "Acting", - "name": "Deb Hiett", - "original_name": "Deb Hiett", - "popularity": 2.162, - "profile_path": "/dD5RdZwhCQtaiJYjQvDcXd9MuFw.jpg", - "cast_id": 575, - "character": "Doctor", - "credit_id": "6470e59877070000c25860fe", - "order": 62 - }, - { - "adult": false, - "gender": 0, - "id": 4169990, - "known_for_department": "Acting", - "name": "James Leon", - "original_name": "James Leon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 652, - "character": "Life-Guard", - "credit_id": "64b796be5aadc4011c0bc094", - "order": 63 - }, - { - "adult": false, - "gender": 2, - "id": 1491397, - "known_for_department": "Acting", - "name": "Oliver Vaquer", - "original_name": "Oliver Vaquer", - "popularity": 1.111, - "profile_path": "/skidWai1DWg1b0Z1x9hhN0UEGfA.jpg", - "cast_id": 653, - "character": "Businessman", - "credit_id": "64b796c85aadc40139d13e57", - "order": 64 - }, - { - "adult": false, - "gender": 0, - "id": 3536866, - "known_for_department": "Acting", - "name": "Tony Noto", - "original_name": "Tony Noto", - "popularity": 0.6, - "profile_path": "/9bSFy5E1Kg1uY8fztpjAPbFe6nF.jpg", - "cast_id": 654, - "character": "Businessman", - "credit_id": "64b796cf55b0c000e2cb574f", - "order": 65 - }, - { - "adult": false, - "gender": 2, - "id": 1459152, - "known_for_department": "Acting", - "name": "Christopher T. Wood", - "original_name": "Christopher T. Wood", - "popularity": 1.521, - "profile_path": "/2Wbp7be4GNHU0yivHKXWwdZSEy8.jpg", - "cast_id": 655, - "character": "Businessman", - "credit_id": "64b796d6eee18600c6d10f38", - "order": 66 - }, - { - "adult": false, - "gender": 1, - "id": 174514, - "known_for_department": "Acting", - "name": "Annie Mumolo", - "original_name": "Annie Mumolo", - "popularity": 4.486, - "profile_path": "/4U943oEvfDg8Tuyjl9biLgzijBf.jpg", - "cast_id": 657, - "character": "Anxiety Mom", - "credit_id": "64b796e7109cd0010183a8f4", - "order": 67 - }, - { - "adult": false, - "gender": 0, - "id": 4169992, - "known_for_department": "Acting", - "name": "Elise Gallup", - "original_name": "Elise Gallup", - "popularity": 0.6, - "profile_path": null, - "cast_id": 658, - "character": "Warning Girl", - "credit_id": "64b796efd399e600ad449b95", - "order": 68 - }, - { - "adult": false, - "gender": 1, - "id": 2072197, - "known_for_department": "Acting", - "name": "McKenna Roberts", - "original_name": "McKenna Roberts", - "popularity": 12.383, - "profile_path": "/cxDP4bZIAeBDaIadkHaeswrUu0G.jpg", - "cast_id": 659, - "character": "Junior High Friend", - "credit_id": "64b796fceee1860100ea9695", - "order": 69 - }, - { - "adult": false, - "gender": 0, - "id": 4169993, - "known_for_department": "Acting", - "name": "Brylee Hsu", - "original_name": "Brylee Hsu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 660, - "character": "Junior High Friend", - "credit_id": "64b79703d399e6012db4bdfd", - "order": 70 - }, - { - "adult": false, - "gender": 0, - "id": 4169994, - "known_for_department": "Acting", - "name": "Sasha Milstein", - "original_name": "Sasha Milstein", - "popularity": 0.6, - "profile_path": null, - "cast_id": 661, - "character": "Junior High Friend", - "credit_id": "64b7970955b0c00139b68e72", - "order": 71 - }, - { - "adult": false, - "gender": 0, - "id": 1681573, - "known_for_department": "Acting", - "name": "Lauren Holt", - "original_name": "Lauren Holt", - "popularity": 1.049, - "profile_path": "/2dPQDpa9Q3tWUOlFiGspxFAOw6l.jpg", - "cast_id": 662, - "character": "Time Mom", - "credit_id": "64b797105aadc400c58a9983", - "order": 72 - }, - { - "adult": false, - "gender": 0, - "id": 168834, - "known_for_department": "Acting", - "name": "Sterling Jones", - "original_name": "Sterling Jones", - "popularity": 0.84, - "profile_path": null, - "cast_id": 663, - "character": "Mattel Agent", - "credit_id": "64b797195aadc400c58a998f", - "order": 73 - }, - { - "adult": false, - "gender": 2, - "id": 131885, - "known_for_department": "Directing", - "name": "Ryan Piers Williams", - "original_name": "Ryan Piers Williams", - "popularity": 1.332, - "profile_path": "/nOhcNZ7IUbthH43XBTCmPFGhReo.jpg", - "cast_id": 664, - "character": "El Esposo de Gloria", - "credit_id": "64b7972755b0c000c58e8d2a", - "order": 74 - }, - { - "adult": false, - "gender": 2, - "id": 2131693, - "known_for_department": "Acting", - "name": "Jamaal Lewis", - "original_name": "Jamaal Lewis", - "popularity": 1.407, - "profile_path": "/eG2S2CYigneliGEjJwK4Or6Aehd.jpg", - "cast_id": 665, - "character": "Muscle Beach Guy", - "credit_id": "64b79730a8067300c8d1780a", - "order": 75 - }, - { - "adult": false, - "gender": 1, - "id": 1945733, - "known_for_department": "Acting", - "name": "Kathryn Akin", - "original_name": "Kathryn Akin", - "popularity": 0.731, - "profile_path": "/1CR7rYwRCHmHi0504Nn8JJ4URVJ.jpg", - "cast_id": 666, - "character": "Doctor Receptionist", - "credit_id": "64b79738b1f68d0106956d24", - "order": 76 - }, - { - "adult": false, - "gender": 1, - "id": 2112276, - "known_for_department": "Acting", - "name": "Grace Jabbari", - "original_name": "Grace Jabbari", - "popularity": 0.932, - "profile_path": null, - "cast_id": 675, - "character": "Dancer", - "credit_id": "64c1efad13a32000ad4e7de8", - "order": 77 - }, - { - "adult": false, - "gender": 0, - "id": 1488474, - "known_for_department": "Acting", - "name": "Ira Mandela Siobhan", - "original_name": "Ira Mandela Siobhan", - "popularity": 0.693, - "profile_path": "/ofnxItrjoOSFs1kPOR1qAtFAZb7.jpg", - "cast_id": 676, - "character": "Dancer", - "credit_id": "64c1efb81cfe3a0eb1cc42e9", - "order": 78 - }, - { - "adult": false, - "gender": 0, - "id": 3221943, - "known_for_department": "Acting", - "name": "Lisa Spencer", - "original_name": "Lisa Spencer", - "popularity": 0.6, - "profile_path": "/z6lcpomiNkgnb8XY5IpnJOELfP5.jpg", - "cast_id": 677, - "character": "Dancer", - "credit_id": "64c1f012be55b7011fbc68a7", - "order": 79 - }, - { - "adult": false, - "gender": 1, - "id": 1802794, - "known_for_department": "Acting", - "name": "Naomi Weijand", - "original_name": "Naomi Weijand", - "popularity": 0.6, - "profile_path": "/cMRu8nDIRPPAVvmN2oGLSvVksPp.jpg", - "cast_id": 678, - "character": "Dancer", - "credit_id": "64c1f01cdb4ed60101a9d101", - "order": 80 - }, - { - "adult": false, - "gender": 2, - "id": 2677070, - "known_for_department": "Acting", - "name": "Tom Clark", - "original_name": "Tom Clark", - "popularity": 0.84, - "profile_path": "/wYQkvbOeiFsNdSjaolyX6ovJPVa.jpg", - "cast_id": 679, - "character": "Dancer", - "credit_id": "64c1f04213a32000ad4e7e29", - "order": 81 - }, - { - "adult": false, - "gender": 0, - "id": 4182492, - "known_for_department": "Acting", - "name": "Ireanne Abenoja", - "original_name": "Ireanne Abenoja", - "popularity": 0.6, - "profile_path": null, - "cast_id": 680, - "character": "Dancer", - "credit_id": "64c1f0501cfe3a0eb282bfbf", - "order": 82 - }, - { - "adult": false, - "gender": 0, - "id": 4182493, - "known_for_department": "Acting", - "name": "Davide Albonetti", - "original_name": "Davide Albonetti", - "popularity": 0.629, - "profile_path": null, - "cast_id": 682, - "character": "Dancer", - "credit_id": "64c1f081db4ed6011ed7809a", - "order": 83 - }, - { - "adult": false, - "gender": 0, - "id": 4182494, - "known_for_department": "Acting", - "name": "Charlotte Anderson", - "original_name": "Charlotte Anderson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 683, - "character": "Dancer", - "credit_id": "64c1f098ede1b00102455849", - "order": 84 - }, - { - "adult": false, - "gender": 0, - "id": 4182495, - "known_for_department": "Acting", - "name": "Michael Anderson", - "original_name": "Michael Anderson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 684, - "character": "Dancer", - "credit_id": "64c1f0b2097c49013a31d035", - "order": 85 - }, - { - "adult": false, - "gender": 0, - "id": 4182496, - "known_for_department": "Acting", - "name": "Rico Bakker", - "original_name": "Rico Bakker", - "popularity": 0.6, - "profile_path": null, - "cast_id": 685, - "character": "Dancer", - "credit_id": "64c1f0bb13a32000e21af8f3", - "order": 86 - }, - { - "adult": false, - "gender": 0, - "id": 4182542, - "known_for_department": "Acting", - "name": "James Bamford", - "original_name": "James Bamford", - "popularity": 0.6, - "profile_path": null, - "cast_id": 686, - "character": "Dancer", - "credit_id": "64c1fc67ede1b00102455d31", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 2280478, - "known_for_department": "Acting", - "name": "William John Banks", - "original_name": "William John Banks", - "popularity": 0.6, - "profile_path": null, - "cast_id": 687, - "character": "Dancer", - "credit_id": "64c1fc74df86a801446c6938", - "order": 88 - }, - { - "adult": false, - "gender": 0, - "id": 4182543, - "known_for_department": "Acting", - "name": "Callum Bell", - "original_name": "Callum Bell", - "popularity": 0.6, - "profile_path": null, - "cast_id": 688, - "character": "Dancer", - "credit_id": "64c1fca81cfe3a0eb42991dc", - "order": 89 - }, - { - "adult": false, - "gender": 0, - "id": 4182544, - "known_for_department": "Acting", - "name": "Adam Blaug", - "original_name": "Adam Blaug", - "popularity": 0.6, - "profile_path": null, - "cast_id": 689, - "character": "Dancer", - "credit_id": "64c1fcb4097c4900e3f3aec8", - "order": 90 - }, - { - "adult": false, - "gender": 0, - "id": 4182545, - "known_for_department": "Acting", - "name": "Mason Boyce", - "original_name": "Mason Boyce", - "popularity": 0.6, - "profile_path": null, - "cast_id": 690, - "character": "Dancer", - "credit_id": "64c1fcc12f1be000ca273d47", - "order": 91 - }, - { - "adult": false, - "gender": 0, - "id": 4182546, - "known_for_department": "Acting", - "name": "Taylor Bradshaw", - "original_name": "Taylor Bradshaw", - "popularity": 0.6, - "profile_path": null, - "cast_id": 691, - "character": "Dancer", - "credit_id": "64c1fcf81cfe3a0eb282c45b", - "order": 92 - }, - { - "adult": false, - "gender": 0, - "id": 4182547, - "known_for_department": "Acting", - "name": "Alex Brown", - "original_name": "Alex Brown", - "popularity": 0.98, - "profile_path": null, - "cast_id": 692, - "character": "Dancer", - "credit_id": "64c1fd13ede1b000e50d77df", - "order": 93 - }, - { - "adult": false, - "gender": 0, - "id": 4182548, - "known_for_department": "Acting", - "name": "Miekaile Browne", - "original_name": "Miekaile Browne", - "popularity": 0.84, - "profile_path": "/4uEWRxCEZjI8VD057QrIeZIvBrv.jpg", - "cast_id": 693, - "character": "Dancer", - "credit_id": "64c1fd28ede1b0011f7dec4c", - "order": 94 - }, - { - "adult": false, - "gender": 0, - "id": 4182549, - "known_for_department": "Acting", - "name": "Lewis Calcutt", - "original_name": "Lewis Calcutt", - "popularity": 0.6, - "profile_path": null, - "cast_id": 694, - "character": "Dancer", - "credit_id": "64c1fd32097c4900e3f3af12", - "order": 95 - }, - { - "adult": false, - "gender": 1, - "id": 1535014, - "known_for_department": "Acting", - "name": "Nikkita Chadha", - "original_name": "Nikkita Chadha", - "popularity": 3.132, - "profile_path": "/j0d1shh4OEBVjuZlFAoC1pugaps.jpg", - "cast_id": 695, - "character": "Dancer", - "credit_id": "64c1fd3edb4ed600aeb06845", - "order": 96 - }, - { - "adult": false, - "gender": 0, - "id": 4182550, - "known_for_department": "Acting", - "name": "Oliver Chapman", - "original_name": "Oliver Chapman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 696, - "character": "Dancer", - "credit_id": "64c1fd49fdc1460139fa4516", - "order": 97 - }, - { - "adult": false, - "gender": 0, - "id": 4182551, - "known_for_department": "Acting", - "name": "Megan Charles", - "original_name": "Megan Charles", - "popularity": 0.6, - "profile_path": null, - "cast_id": 697, - "character": "Dancer", - "credit_id": "64c1fd52df86a800c8e8d3a3", - "order": 98 - }, - { - "adult": false, - "gender": 0, - "id": 4182552, - "known_for_department": "Acting", - "name": "Callum Clack", - "original_name": "Callum Clack", - "popularity": 0.6, - "profile_path": null, - "cast_id": 698, - "character": "Dancer", - "credit_id": "64c1fd5dfdc14600ad556456", - "order": 99 - }, - { - "adult": false, - "gender": 0, - "id": 4182553, - "known_for_department": "Acting", - "name": "Danny Coburn", - "original_name": "Danny Coburn", - "popularity": 0.6, - "profile_path": null, - "cast_id": 699, - "character": "Dancer", - "credit_id": "64c1fd6b1cfe3a0eb429924d", - "order": 100 - }, - { - "adult": false, - "gender": 0, - "id": 4182554, - "known_for_department": "Acting", - "name": "Kat Collings", - "original_name": "Kat Collings", - "popularity": 0.6, - "profile_path": null, - "cast_id": 700, - "character": "Dancer", - "credit_id": "64c1fd75fdc14600c50c8147", - "order": 101 - }, - { - "adult": false, - "gender": 0, - "id": 4182556, - "known_for_department": "Acting", - "name": "Adam Crossley", - "original_name": "Adam Crossley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 701, - "character": "Dancer", - "credit_id": "64c1fdc1df86a8012582d664", - "order": 102 - }, - { - "adult": false, - "gender": 0, - "id": 4182557, - "known_for_department": "Acting", - "name": "Sia Dauda", - "original_name": "Sia Dauda", - "popularity": 1.4, - "profile_path": null, - "cast_id": 702, - "character": "Dancer", - "credit_id": "64c1fdca097c4900e3f3af78", - "order": 103 - }, - { - "adult": false, - "gender": 0, - "id": 4182558, - "known_for_department": "Acting", - "name": "Gustave Die", - "original_name": "Gustave Die", - "popularity": 0.6, - "profile_path": null, - "cast_id": 703, - "character": "Dancer", - "credit_id": "64c1fdd52f1be0010c822cf1", - "order": 104 - }, - { - "adult": false, - "gender": 0, - "id": 4182559, - "known_for_department": "Acting", - "name": "Grace Durkin", - "original_name": "Grace Durkin", - "popularity": 0.6, - "profile_path": null, - "cast_id": 704, - "character": "Dancer", - "credit_id": "64c1fdf913a320011c5fa653", - "order": 105 - }, - { - "adult": false, - "gender": 0, - "id": 3640392, - "known_for_department": "Acting", - "name": "Joelle Dyson", - "original_name": "Joelle Dyson", - "popularity": 0.6, - "profile_path": "/33IblN4fZqDufbDPC0XaatkDgl.jpg", - "cast_id": 705, - "character": "Dancer", - "credit_id": "64c1fe07fdc14600ad5564ae", - "order": 106 - }, - { - "adult": false, - "gender": 0, - "id": 4182561, - "known_for_department": "Acting", - "name": "Lewis Easter", - "original_name": "Lewis Easter", - "popularity": 0.6, - "profile_path": null, - "cast_id": 706, - "character": "Dancer", - "credit_id": "64c1fe1213a32000ad4e847a", - "order": 107 - }, - { - "adult": false, - "gender": 0, - "id": 4182562, - "known_for_department": "Acting", - "name": "Onyemachi Ejimofor", - "original_name": "Onyemachi Ejimofor", - "popularity": 0.694, - "profile_path": null, - "cast_id": 707, - "character": "Dancer", - "credit_id": "64c1fe1fdf86a800e78072a9", - "order": 108 - }, - { - "adult": false, - "gender": 0, - "id": 4182563, - "known_for_department": "Acting", - "name": "Cameron Everitt", - "original_name": "Cameron Everitt", - "popularity": 0.6, - "profile_path": null, - "cast_id": 708, - "character": "Dancer", - "credit_id": "64c1fe2ddf86a8012582d69e", - "order": 109 - }, - { - "adult": false, - "gender": 0, - "id": 4182586, - "known_for_department": "Acting", - "name": "Luke Field-Wright", - "original_name": "Luke Field-Wright", - "popularity": 0.6, - "profile_path": null, - "cast_id": 709, - "character": "Dancer", - "credit_id": "64c20076097c490100d2273d", - "order": 110 - }, - { - "adult": false, - "gender": 0, - "id": 4182587, - "known_for_department": "Acting", - "name": "Sasha Flesch", - "original_name": "Sasha Flesch", - "popularity": 0.828, - "profile_path": null, - "cast_id": 710, - "character": "Dancer", - "credit_id": "64c20082ede1b0013c6ec5b0", - "order": 111 - }, - { - "adult": false, - "gender": 0, - "id": 4182588, - "known_for_department": "Acting", - "name": "Adam Fogarty", - "original_name": "Adam Fogarty", - "popularity": 0.6, - "profile_path": null, - "cast_id": 711, - "character": "Dancer", - "credit_id": "64c2008cfdc14600ff7374bd", - "order": 112 - }, - { - "adult": false, - "gender": 0, - "id": 4182589, - "known_for_department": "Acting", - "name": "Mikey French", - "original_name": "Mikey French", - "popularity": 0.6, - "profile_path": null, - "cast_id": 712, - "character": "Dancer", - "credit_id": "64c2009b097c4900c643883c", - "order": 113 - }, - { - "adult": false, - "gender": 0, - "id": 4182590, - "known_for_department": "Acting", - "name": "Anna-Kay Gayle", - "original_name": "Anna-Kay Gayle", - "popularity": 0.6, - "profile_path": null, - "cast_id": 713, - "character": "Dancer", - "credit_id": "64c200a91cfe3a0eb4299384", - "order": 114 - }, - { - "adult": false, - "gender": 0, - "id": 4182591, - "known_for_department": "Acting", - "name": "Charlie Goddard", - "original_name": "Charlie Goddard", - "popularity": 0.6, - "profile_path": null, - "cast_id": 714, - "character": "Dancer", - "credit_id": "64c200badb4ed600e4caae22", - "order": 115 - }, - { - "adult": false, - "gender": 0, - "id": 4182592, - "known_for_department": "Acting", - "name": "Marlie Goddard", - "original_name": "Marlie Goddard", - "popularity": 0.6, - "profile_path": "/2lijQM171XCgx4XHEHRk9OUrtXE.jpg", - "cast_id": 715, - "character": "Dancer", - "credit_id": "64c200c4df86a8012582d7ad", - "order": 116 - }, - { - "adult": false, - "gender": 0, - "id": 4182594, - "known_for_department": "Acting", - "name": "Ellis Harman", - "original_name": "Ellis Harman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 716, - "character": "Dancer", - "credit_id": "64c200f7fdc1460139fa46c8", - "order": 117 - }, - { - "adult": false, - "gender": 1, - "id": 1826765, - "known_for_department": "Acting", - "name": "Yasmin Harrison", - "original_name": "Yasmin Harrison", - "popularity": 1.361, - "profile_path": null, - "cast_id": 717, - "character": "Dancer", - "credit_id": "64c201072f1be0014ef62b35", - "order": 118 - }, - { - "adult": false, - "gender": 0, - "id": 2242897, - "known_for_department": "Acting", - "name": "Josh Hawkins", - "original_name": "Josh Hawkins", - "popularity": 0.656, - "profile_path": null, - "cast_id": 718, - "character": "Dancer", - "credit_id": "64c2011cede1b0013c6ec5f7", - "order": 119 - }, - { - "adult": false, - "gender": 0, - "id": 4182597, - "known_for_department": "Acting", - "name": "James Healy", - "original_name": "James Healy", - "popularity": 0.6, - "profile_path": null, - "cast_id": 719, - "character": "Dancer", - "credit_id": "64c2012e1cfe3a0eb282c5d2", - "order": 120 - }, - { - "adult": false, - "gender": 0, - "id": 2732586, - "known_for_department": "Acting", - "name": "Tim Hodges", - "original_name": "Tim Hodges", - "popularity": 0.6, - "profile_path": null, - "cast_id": 720, - "character": "Dancer", - "credit_id": "64c2014aede1b000af4c9447", - "order": 121 - }, - { - "adult": false, - "gender": 0, - "id": 4182598, - "known_for_department": "Acting", - "name": "Mira Jebari", - "original_name": "Mira Jebari", - "popularity": 0.6, - "profile_path": "/4oE8Cuc6QMJ9NvjkGjcTqwmsIGN.jpg", - "cast_id": 721, - "character": "Dancer", - "credit_id": "64c20155df86a800e78073e7", - "order": 122 - }, - { - "adult": false, - "gender": 0, - "id": 4182601, - "known_for_department": "Acting", - "name": "Beccy Jones", - "original_name": "Beccy Jones", - "popularity": 0.6, - "profile_path": null, - "cast_id": 722, - "character": "Dancer", - "credit_id": "64c201662f1be0012d919270", - "order": 123 - }, - { - "adult": false, - "gender": 0, - "id": 4182604, - "known_for_department": "Acting", - "name": "Thomas Kalek", - "original_name": "Thomas Kalek", - "popularity": 0.6, - "profile_path": null, - "cast_id": 723, - "character": "Dancer", - "credit_id": "64c2017013a3200139f11e4c", - "order": 124 - }, - { - "adult": false, - "gender": 1, - "id": 1154760, - "known_for_department": "Acting", - "name": "Lily Laight", - "original_name": "Lily Laight", - "popularity": 2.236, - "profile_path": "/aaMk2vUeYz6C7OQunMQQKyPMx5g.jpg", - "cast_id": 724, - "character": "Dancer", - "credit_id": "64c2019b1cfe3a0eb1cc4990", - "order": 125 - }, - { - "adult": false, - "gender": 0, - "id": 4182606, - "known_for_department": "Acting", - "name": "Maiya Leeke", - "original_name": "Maiya Leeke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 725, - "character": "Dancer", - "credit_id": "64c201a513a32000ad4e85f0", - "order": 126 - }, - { - "adult": false, - "gender": 0, - "id": 4182607, - "known_for_department": "Acting", - "name": "Cristian Liberti", - "original_name": "Cristian Liberti", - "popularity": 0.6, - "profile_path": null, - "cast_id": 726, - "character": "Dancer", - "credit_id": "64c201af097c49013a31d8f1", - "order": 127 - }, - { - "adult": false, - "gender": 0, - "id": 4182609, - "known_for_department": "Acting", - "name": "Prodromos Marneros", - "original_name": "Prodromos Marneros", - "popularity": 0.6, - "profile_path": null, - "cast_id": 727, - "character": "Dancer", - "credit_id": "64c201c0ede1b000c8bd356f", - "order": 128 - }, - { - "adult": false, - "gender": 0, - "id": 4182610, - "known_for_department": "Acting", - "name": "Nahum McLean", - "original_name": "Nahum McLean", - "popularity": 0.84, - "profile_path": null, - "cast_id": 728, - "character": "Dancer", - "credit_id": "64c201cb1cfe3a0eb5e9f042", - "order": 129 - }, - { - "adult": false, - "gender": 0, - "id": 3235100, - "known_for_department": "Crew", - "name": "Jordan Melchor", - "original_name": "Jordan Melchor", - "popularity": 0.6, - "profile_path": null, - "cast_id": 729, - "character": "Dancer", - "credit_id": "64c201efdb4ed60101a9d7ff", - "order": 130 - }, - { - "adult": false, - "gender": 2, - "id": 2021088, - "known_for_department": "Acting", - "name": "Ramzan Miah", - "original_name": "Ramzan Miah", - "popularity": 1.4, - "profile_path": null, - "cast_id": 730, - "character": "Dancer", - "credit_id": "64c201fadb4ed600aeb069d7", - "order": 131 - }, - { - "adult": false, - "gender": 0, - "id": 4182613, - "known_for_department": "Acting", - "name": "Andy Monaghan", - "original_name": "Andy Monaghan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 731, - "character": "Dancer", - "credit_id": "64c202042f1be0012d9192ac", - "order": 132 - }, - { - "adult": false, - "gender": 0, - "id": 4182615, - "known_for_department": "Acting", - "name": "Florivaldo Mossi", - "original_name": "Florivaldo Mossi", - "popularity": 0.828, - "profile_path": null, - "cast_id": 732, - "character": "Dancer", - "credit_id": "64c2020fdb4ed6013bf3abe6", - "order": 133 - }, - { - "adult": false, - "gender": 0, - "id": 4182616, - "known_for_department": "Acting", - "name": "Hannah Nazareth", - "original_name": "Hannah Nazareth", - "popularity": 0.6, - "profile_path": null, - "cast_id": 733, - "character": "Dancer", - "credit_id": "64c20221df86a80106370451", - "order": 134 - }, - { - "adult": false, - "gender": 0, - "id": 4182619, - "known_for_department": "Acting", - "name": "Grant Neal", - "original_name": "Grant Neal", - "popularity": 0.6, - "profile_path": null, - "cast_id": 734, - "character": "Dancer", - "credit_id": "64c20255097c49011d832fd9", - "order": 135 - }, - { - "adult": false, - "gender": 0, - "id": 4182620, - "known_for_department": "Acting", - "name": "Freja Nicole", - "original_name": "Freja Nicole", - "popularity": 0.6, - "profile_path": null, - "cast_id": 735, - "character": "Dancer", - "credit_id": "64c202601cfe3a0eb4299434", - "order": 136 - }, - { - "adult": false, - "gender": 0, - "id": 4182622, - "known_for_department": "Acting", - "name": "Shaun Niles", - "original_name": "Shaun Niles", - "popularity": 0.6, - "profile_path": null, - "cast_id": 736, - "character": "Dancer", - "credit_id": "64c20269ede1b00102455fbd", - "order": 137 - }, - { - "adult": false, - "gender": 0, - "id": 4182623, - "known_for_department": "Acting", - "name": "Ella Nonini", - "original_name": "Ella Nonini", - "popularity": 0.6, - "profile_path": null, - "cast_id": 737, - "character": "Dancer", - "credit_id": "64c20273ede1b00102455fcb", - "order": 138 - }, - { - "adult": false, - "gender": 0, - "id": 4182625, - "known_for_department": "Acting", - "name": "Jack William Parry", - "original_name": "Jack William Parry", - "popularity": 0.6, - "profile_path": null, - "cast_id": 738, - "character": "Dancer", - "credit_id": "64c2032fede1b000af4c94fc", - "order": 139 - }, - { - "adult": false, - "gender": 0, - "id": 4182626, - "known_for_department": "Acting", - "name": "Josie Pocock", - "original_name": "Josie Pocock", - "popularity": 0.6, - "profile_path": null, - "cast_id": 739, - "character": "Dancer", - "credit_id": "64c203392f1be000ca273fe8", - "order": 140 - }, - { - "adult": false, - "gender": 0, - "id": 3404763, - "known_for_department": "Acting", - "name": "Barnaby Quarendon", - "original_name": "Barnaby Quarendon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 740, - "character": "Dancer", - "credit_id": "64c2034a2f1be0014ef62c00", - "order": 141 - }, - { - "adult": false, - "gender": 0, - "id": 2677086, - "known_for_department": "Acting", - "name": "Redmand Rance", - "original_name": "Redmand Rance", - "popularity": 1.38, - "profile_path": null, - "cast_id": 741, - "character": "Dancer", - "credit_id": "64c203e0df86a800e78074f5", - "order": 142 - }, - { - "adult": false, - "gender": 0, - "id": 4182636, - "known_for_department": "Acting", - "name": "Zara Richards", - "original_name": "Zara Richards", - "popularity": 0.6, - "profile_path": null, - "cast_id": 742, - "character": "Dancer", - "credit_id": "64c203f02f1be0012d919360", - "order": 143 - }, - { - "adult": false, - "gender": 0, - "id": 4182638, - "known_for_department": "Acting", - "name": "Liam Riddick", - "original_name": "Liam Riddick", - "popularity": 0.6, - "profile_path": null, - "cast_id": 743, - "character": "Dancer", - "credit_id": "64c20403ede1b000af4c954e", - "order": 144 - }, - { - "adult": false, - "gender": 0, - "id": 4182640, - "known_for_department": "Acting", - "name": "Alana Rixon", - "original_name": "Alana Rixon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 744, - "character": "Dancer", - "credit_id": "64c2040e1cfe3a0eb1cc4a9d", - "order": 145 - }, - { - "adult": false, - "gender": 0, - "id": 4182643, - "known_for_department": "Acting", - "name": "Adam Paul Robertson", - "original_name": "Adam Paul Robertson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 745, - "character": "Dancer", - "credit_id": "64c204192f1be000ca27403e", - "order": 146 - }, - { - "adult": false, - "gender": 0, - "id": 4182647, - "known_for_department": "Acting", - "name": "Kingdom Sibanda", - "original_name": "Kingdom Sibanda", - "popularity": 0.6, - "profile_path": null, - "cast_id": 746, - "character": "Dancer", - "credit_id": "64c2045bdf86a801446c6c3d", - "order": 147 - }, - { - "adult": false, - "gender": 0, - "id": 4182648, - "known_for_department": "Acting", - "name": "Sebastian Skov", - "original_name": "Sebastian Skov", - "popularity": 0.698, - "profile_path": null, - "cast_id": 747, - "character": "Dancer", - "credit_id": "64c204722f1be000ae4c04f4", - "order": 148 - }, - { - "adult": false, - "gender": 0, - "id": 4182649, - "known_for_department": "Acting", - "name": "Aaron J. Smith", - "original_name": "Aaron J. Smith", - "popularity": 0.6, - "profile_path": null, - "cast_id": 748, - "character": "Dancer", - "credit_id": "64c20491fdc14600e2867279", - "order": 149 - }, - { - "adult": false, - "gender": 0, - "id": 4182651, - "known_for_department": "Acting", - "name": "Joshua Smith", - "original_name": "Joshua Smith", - "popularity": 0.6, - "profile_path": null, - "cast_id": 749, - "character": "Dancer", - "credit_id": "64c2049bede1b00102456099", - "order": 150 - }, - { - "adult": false, - "gender": 0, - "id": 4182655, - "known_for_department": "Acting", - "name": "Lucia-Rose Sokolowski", - "original_name": "Lucia-Rose Sokolowski", - "popularity": 0.608, - "profile_path": null, - "cast_id": 750, - "character": "Dancer", - "credit_id": "64c204acdf86a8010637056f", - "order": 151 - }, - { - "adult": false, - "gender": 0, - "id": 4182658, - "known_for_department": "Acting", - "name": "Janine Somcio", - "original_name": "Janine Somcio", - "popularity": 0.6, - "profile_path": null, - "cast_id": 751, - "character": "Dancer", - "credit_id": "64c204cbfdc14600e2867291", - "order": 152 - }, - { - "adult": false, - "gender": 0, - "id": 3563416, - "known_for_department": "Acting", - "name": "Callum Sterling", - "original_name": "Callum Sterling", - "popularity": 0.6, - "profile_path": null, - "cast_id": 752, - "character": "Dancer", - "credit_id": "64c205112f1be000ebd5c986", - "order": 153 - }, - { - "adult": false, - "gender": 0, - "id": 4182665, - "known_for_department": "Acting", - "name": "Todd Talbot", - "original_name": "Todd Talbot", - "popularity": 0.6, - "profile_path": null, - "cast_id": 754, - "character": "Dancer", - "credit_id": "64c2059cdb4ed600e4caafe2", - "order": 154 - }, - { - "adult": false, - "gender": 0, - "id": 4182671, - "known_for_department": "Acting", - "name": "Charles Tatman", - "original_name": "Charles Tatman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 755, - "character": "Dancer", - "credit_id": "64c206e31cfe3a0eb30c4a3b", - "order": 155 - }, - { - "adult": false, - "gender": 0, - "id": 4002388, - "known_for_department": "Acting", - "name": "Grant Thresh", - "original_name": "Grant Thresh", - "popularity": 0.6, - "profile_path": null, - "cast_id": 756, - "character": "Dancer", - "credit_id": "64c206ed097c4900e3f3b36b", - "order": 156 - }, - { - "adult": false, - "gender": 0, - "id": 4182672, - "known_for_department": "Acting", - "name": "Connor Tidman", - "original_name": "Connor Tidman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 757, - "character": "Dancer", - "credit_id": "64c206f9097c49011d83321f", - "order": 157 - }, - { - "adult": false, - "gender": 0, - "id": 4182673, - "known_for_department": "Acting", - "name": "Wahchi Vong", - "original_name": "Wahchi Vong", - "popularity": 0.6, - "profile_path": null, - "cast_id": 758, - "character": "Dancer", - "credit_id": "64c207061cfe3a0eb0a7d6bb", - "order": 158 - }, - { - "adult": false, - "gender": 0, - "id": 4182675, - "known_for_department": "Acting", - "name": "Jerry Wan", - "original_name": "Jerry Wan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 759, - "character": "Dancer", - "credit_id": "64c207352f1be000ca274188", - "order": 159 - }, - { - "adult": false, - "gender": 0, - "id": 2572719, - "known_for_department": "Acting", - "name": "Sasha Wareham", - "original_name": "Sasha Wareham", - "popularity": 0.6, - "profile_path": null, - "cast_id": 760, - "character": "Dancer", - "credit_id": "64c2073fdb4ed60101a9d9ca", - "order": 160 - }, - { - "adult": false, - "gender": 2, - "id": 3129428, - "known_for_department": "Acting", - "name": "Stan West", - "original_name": "Stan West", - "popularity": 0.6, - "profile_path": null, - "cast_id": 761, - "character": "Dancer", - "credit_id": "64c207581cfe3a0eb30c4a6e", - "order": 161 - }, - { - "adult": false, - "gender": 0, - "id": 1462279, - "known_for_department": "Production", - "name": "Oliver Wheeler", - "original_name": "Oliver Wheeler", - "popularity": 0.6, - "profile_path": null, - "cast_id": 762, - "character": "Dancer", - "credit_id": "64c20799097c490100d22aa1", - "order": 162 - }, - { - "adult": false, - "gender": 0, - "id": 4182678, - "known_for_department": "Acting", - "name": "Josh Wild", - "original_name": "Josh Wild", - "popularity": 0.847, - "profile_path": "/2HqD06Ur8hX7BHlDcQmLyrXDqaf.jpg", - "cast_id": 763, - "character": "Dancer", - "credit_id": "64c207a413a3200139f1210a", - "order": 163 - }, - { - "adult": false, - "gender": 0, - "id": 4182680, - "known_for_department": "Acting", - "name": "Joe Wolstenholme", - "original_name": "Joe Wolstenholme", - "popularity": 0.98, - "profile_path": null, - "cast_id": 764, - "character": "Dancer", - "credit_id": "64c207aedf86a800c8e8d7e9", - "order": 164 - }, - { - "adult": false, - "gender": 0, - "id": 4182682, - "known_for_department": "Acting", - "name": "Richard Womersley", - "original_name": "Richard Womersley", - "popularity": 0.6, - "profile_path": null, - "cast_id": 765, - "character": "Dancer", - "credit_id": "64c207b92f1be0014ef62db0", - "order": 165 - }, - { - "adult": false, - "gender": 0, - "id": 4182688, - "known_for_department": "Acting", - "name": "Ashley Young", - "original_name": "Ashley Young", - "popularity": 0.6, - "profile_path": null, - "cast_id": 766, - "character": "Dancer", - "credit_id": "64c2082a13a32000c5332b31", - "order": 166 - }, - { - "adult": false, - "gender": 2, - "id": 2711395, - "known_for_department": "Acting", - "name": "Alex Sturman", - "original_name": "Alex Sturman", - "popularity": 0.6, - "profile_path": null, - "cast_id": 767, - "character": "Dancer", - "credit_id": "64c22fca13a32000ffbf2fe7", - "order": 167 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 275, - "known_for_department": "Camera", - "name": "Rodrigo Prieto", - "original_name": "Rodrigo Prieto", - "popularity": 1.608, - "profile_path": "/5h2U70z7OS5Rb2PdrPpjo35eWCl.jpg", - "credit_id": "63dc32d00cb33500a9183f88", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 5656, - "known_for_department": "Writing", - "name": "Noah Baumbach", - "original_name": "Noah Baumbach", - "popularity": 5.465, - "profile_path": "/jIeAFowGbCt5OSMI6to00QrIvXN.jpg", - "credit_id": "64a381cfe8d02800ff8ae9c5", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 5656, - "known_for_department": "Writing", - "name": "Noah Baumbach", - "original_name": "Noah Baumbach", - "popularity": 5.465, - "profile_path": "/jIeAFowGbCt5OSMI6to00QrIvXN.jpg", - "credit_id": "5f87d5d32d8ef30037be87c4", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 9161, - "known_for_department": "Costume & Make-Up", - "name": "Carmel Jackson", - "original_name": "Carmel Jackson", - "popularity": 0.848, - "profile_path": null, - "credit_id": "649f222a3af92900c8f41e91", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10968, - "known_for_department": "Production", - "name": "David Heyman", - "original_name": "David Heyman", - "popularity": 3.746, - "profile_path": "/m39R6xbVfHfCEO4H0s2Fhwh9mkt.jpg", - "credit_id": "6206016f559d2200ca084411", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20229, - "known_for_department": "Sound", - "name": "Andy Malcolm", - "original_name": "Andy Malcolm", - "popularity": 1.858, - "profile_path": null, - "credit_id": "649f2031edeb4300c6f7fe24", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10830, - "known_for_department": "Production", - "name": "Toby Emmerich", - "original_name": "Toby Emmerich", - "popularity": 2.314, - "profile_path": "/mfkHPnmazcxDcjyVovNPzhUX1JN.jpg", - "credit_id": "643357679a6435068948bcf8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 23424, - "known_for_department": "Production", - "name": "Lucy Bevan", - "original_name": "Lucy Bevan", - "popularity": 1.64, - "profile_path": null, - "credit_id": "62858e67e004a6006609863e", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 29333, - "known_for_department": "Acting", - "name": "Roy Taylor", - "original_name": "Roy Taylor", - "popularity": 0.721, - "profile_path": "/eac87ztd0AcxBLvJPsCoNsvOzVc.jpg", - "credit_id": "62d34cf9d399e6004e722d01", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 30614, - "known_for_department": "Acting", - "name": "Ryan Gosling", - "original_name": "Ryan Gosling", - "popularity": 60.054, - "profile_path": "/lyUyVARQKhGxaxy0FbPJCQRpiaW.jpg", - "credit_id": "64a6ecc02b531d00c9a74514", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 36591, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Durran", - "original_name": "Jacqueline Durran", - "popularity": 3.821, - "profile_path": "/5aJTWqO5nZ8JSbLU5TxaACii8Tl.jpg", - "credit_id": "639e22589bcd0f00b4e938e3", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 1, - "id": 36656, - "known_for_department": "Art", - "name": "Sarah Greenwood", - "original_name": "Sarah Greenwood", - "popularity": 2.818, - "profile_path": "/3mCY4fv9z7EdpVH09qcA2dflIcD.jpg", - "credit_id": "626450c51f33190050972742", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 36658, - "known_for_department": "Art", - "name": "Katie Spencer", - "original_name": "Katie Spencer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62858e9df5c8240066e7c215", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 1, - "id": 41080, - "known_for_department": "Production", - "name": "Allison Jones", - "original_name": "Allison Jones", - "popularity": 1.182, - "profile_path": "/d0Kk5DHy2dtoxwX7IelactzN0Hw.jpg", - "credit_id": "62858e7bcee4810d70a3d3b2", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "5f87d5b52385130036355b3a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "64a381b911386c00c5916a36", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 45400, - "known_for_department": "Acting", - "name": "Greta Gerwig", - "original_name": "Greta Gerwig", - "popularity": 10.258, - "profile_path": "/3H0xzU12GTNJyQTpGysEuI9KyiQ.jpg", - "credit_id": "5f88a2df8258fc0034b05f7c", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 77071, - "known_for_department": "Acting", - "name": "Mark Ronson", - "original_name": "Mark Ronson", - "popularity": 2.279, - "profile_path": "/2xmMlZ7LLlojzSMqNVzwqB5YEsd.jpg", - "credit_id": "648ef98942bf010101befc8d", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 1, - "id": 59700, - "known_for_department": "Production", - "name": "Robbie Brenner", - "original_name": "Robbie Brenner", - "popularity": 0.943, - "profile_path": null, - "credit_id": "61f48be9c5ada500cd9344c3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 60268, - "known_for_department": "Production", - "name": "Julia Pistor", - "original_name": "Julia Pistor", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62858e12f10a1a009db13141", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 92491, - "known_for_department": "Crew", - "name": "Danny Downey", - "original_name": "Danny Downey", - "popularity": 2.737, - "profile_path": "/3yNkzbFoKGVleRwvNucvtG0GEK7.jpg", - "credit_id": "642c65bec0a30800f2e3804e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 77687, - "known_for_department": "Production", - "name": "Olivia Grant", - "original_name": "Olivia Grant", - "popularity": 1.783, - "profile_path": null, - "credit_id": "62d35208278d8a00540e44b2", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 102990, - "known_for_department": "Directing", - "name": "Sarah Townsend", - "original_name": "Sarah Townsend", - "popularity": 1.468, - "profile_path": "/rKLbtREIMw3nX57o2YrnP7xU35Q.jpg", - "credit_id": "63c8bfbfc5c1ef00825b64ba", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 161159, - "known_for_department": "Acting", - "name": "Dale Robinette", - "original_name": "Dale Robinette", - "popularity": 4.285, - "profile_path": "/lFDsZxKkaM8TsD2vmFN4vugHnv6.jpg", - "credit_id": "63cb6b76ea394900969deb29", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 1, - "id": 234352, - "known_for_department": "Acting", - "name": "Margot Robbie", - "original_name": "Margot Robbie", - "popularity": 65.539, - "profile_path": "/euDPyqLnuwaWMHajcU3oZ9uZezR.jpg", - "credit_id": "5d2cd8133c887d00104fd329", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 588604, - "known_for_department": "Production", - "name": "Jo Beckett", - "original_name": "Jo Beckett", - "popularity": 1.048, - "profile_path": null, - "credit_id": "62d3519153f8330401f51171", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 968660, - "known_for_department": "Acting", - "name": "Nicki Minaj", - "original_name": "Nicki Minaj", - "popularity": 10.027, - "profile_path": "/xCD8pp9Y7hOe5hx9V9QhLeDQnkp.jpg", - "credit_id": "648edf8bc3c891014ebe235e", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 972623, - "known_for_department": "Art", - "name": "Dean Clegg", - "original_name": "Dean Clegg", - "popularity": 3.58, - "profile_path": null, - "credit_id": "62d3471c158c85029e9b10eb", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1032067, - "known_for_department": "Visual Effects", - "name": "Mark Holt", - "original_name": "Mark Holt", - "popularity": 1.035, - "profile_path": null, - "credit_id": "62d34a0eafa1b0004c495edb", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1081074, - "known_for_department": "Crew", - "name": "George Cottle", - "original_name": "George Cottle", - "popularity": 2.15, - "profile_path": "/jwQmBfZCJk7V9W96r7fXo3JGyMs.jpg", - "credit_id": "63c8bbc1c5c1ef00bd9a8ea9", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 1127893, - "known_for_department": "Directing", - "name": "Josh Robertson", - "original_name": "Josh Robertson", - "popularity": 2.81, - "profile_path": null, - "credit_id": "62d70ce41283e9004bccc550", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 1192700, - "known_for_department": "Sound", - "name": "George Drakoulias", - "original_name": "George Drakoulias", - "popularity": 3.157, - "profile_path": "/7oiF0TXUhNQRsugEkmwsOQyik0V.jpg", - "credit_id": "643357b99a643506ab790972", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1193622, - "known_for_department": "Camera", - "name": "Atsushi Nishijima", - "original_name": "Atsushi Nishijima", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63cb6a906d97e600b74d10a7", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 1, - "id": 1268074, - "known_for_department": "Crew", - "name": "Alice Ford", - "original_name": "Alice Ford", - "popularity": 1.4, - "profile_path": null, - "credit_id": "642c65e8ac8e6b33d8d89e23", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1319120, - "known_for_department": "Costume & Make-Up", - "name": "Charlotte Finlay", - "original_name": "Charlotte Finlay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2152858678012d769df8", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1319627, - "known_for_department": "Production", - "name": "Beth Timbrell", - "original_name": "Beth Timbrell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bae6abdec000e214055f", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1327142, - "known_for_department": "Art", - "name": "Joe Howard", - "original_name": "Joe Howard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d346c653f8330401f50d15", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1332186, - "known_for_department": "Costume & Make-Up", - "name": "Ivana Primorac", - "original_name": "Ivana Primorac", - "popularity": 2.278, - "profile_path": null, - "credit_id": "64cc04bf764b990100899f2d", - "department": "Costume & Make-Up", - "job": "Hair Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1332186, - "known_for_department": "Costume & Make-Up", - "name": "Ivana Primorac", - "original_name": "Ivana Primorac", - "popularity": 2.278, - "profile_path": null, - "credit_id": "64cc04ba43cd5400c526c973", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1338372, - "known_for_department": "Sound", - "name": "Dan O'Connell", - "original_name": "Dan O'Connell", - "popularity": 1.722, - "profile_path": "/4AjIlClDijH3iYgXygHEcVZtTzi.jpg", - "credit_id": "649f2049d6590b00c469572f", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1340767, - "known_for_department": "Sound", - "name": "Brian Bowles", - "original_name": "Brian Bowles", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f21113af929010687b3b3", - "department": "Sound", - "job": "ADR Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1363079, - "known_for_department": "Production", - "name": "Tom Ackerley", - "original_name": "Tom Ackerley", - "popularity": 8.882, - "profile_path": "/1oMM60nZYnNrrg0BskREjt1FcRP.jpg", - "credit_id": "5d2cd836bf0f630011650a4c", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f2024edeb4300e3db61bd", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f2017858678012d769d98", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1367494, - "known_for_department": "Sound", - "name": "Ai-Ling Lee", - "original_name": "Ai-Ling Lee", - "popularity": 0.792, - "profile_path": null, - "credit_id": "649f201e6f6a99011d89f28d", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1367821, - "known_for_department": "Visual Effects", - "name": "François Dumoulin", - "original_name": "François Dumoulin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5a5e9a6435008def217f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1373701, - "known_for_department": "Art", - "name": "Jordana Finkel", - "original_name": "Jordana Finkel", - "popularity": 1.491, - "profile_path": null, - "credit_id": "62d3468e278d8a004c0a9189", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1378171, - "known_for_department": "Sound", - "name": "Kevin O’Connell", - "original_name": "Kevin O’Connell", - "popularity": 0.721, - "profile_path": null, - "credit_id": "649f205585867800ae43d2b7", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1393448, - "known_for_department": "Camera", - "name": "Jaap Buitendijk", - "original_name": "Jaap Buitendijk", - "popularity": 0.661, - "profile_path": null, - "credit_id": "62d70c7203bf84004def0c6e", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1394119, - "known_for_department": "Art", - "name": "David Doran", - "original_name": "David Doran", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62d346706eecee067d95256c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1426331, - "known_for_department": "Visual Effects", - "name": "Glen Pratt", - "original_name": "Glen Pratt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "643357aa9a6435065eae04df", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1430498, - "known_for_department": "Lighting", - "name": "Lee Walters", - "original_name": "Lee Walters", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6cf69a6435008def29e3", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 2, - "id": 1445583, - "known_for_department": "Crew", - "name": "Adam Hart", - "original_name": "Adam Hart", - "popularity": 0.757, - "profile_path": "/lVQreqn2sL33TgPlqY12YymQ3e8.jpg", - "credit_id": "642c661b01b1ca0113cd461e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 1, - "id": 1455294, - "known_for_department": "Costume & Make-Up", - "name": "Hope Slepak", - "original_name": "Hope Slepak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34e6b378062049e387c53", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 3, - "id": 1459321, - "known_for_department": "Acting", - "name": "Sam Smith", - "original_name": "Sam Smith", - "popularity": 3.504, - "profile_path": "/kNKDEhydDhLmjsoEbAaWrVzTQc0.jpg", - "credit_id": "64bee591ac6c7908df4d8ace", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 1459856, - "known_for_department": "Costume & Make-Up", - "name": "Robb Crafer", - "original_name": "Robb Crafer", - "popularity": 1.761, - "profile_path": null, - "credit_id": "62d34784afa1b0004f352777", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1459856, - "known_for_department": "Costume & Make-Up", - "name": "Robb Crafer", - "original_name": "Robb Crafer", - "popularity": 1.761, - "profile_path": null, - "credit_id": "63c8b6d1abdec000ae24b67b", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1463658, - "known_for_department": "Crew", - "name": "Hannah Betts", - "original_name": "Hannah Betts", - "popularity": 0.753, - "profile_path": null, - "credit_id": "642c65868de0ae00f4c1e16e", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1463661, - "known_for_department": "Crew", - "name": "Whitney Coleman", - "original_name": "Whitney Coleman", - "popularity": 2.359, - "profile_path": "/e6MyQLNmQUgIIoyJH5s4eGxVUF6.jpg", - "credit_id": "642c65aad100b60098e75265", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1476518, - "known_for_department": "Art", - "name": "Tamara Catlin-Birch", - "original_name": "Tamara Catlin-Birch", - "popularity": 0.61, - "profile_path": null, - "credit_id": "63ca579703f0b60079046877", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1529997, - "known_for_department": "Acting", - "name": "Charli XCX", - "original_name": "Charli XCX", - "popularity": 8.025, - "profile_path": "/ybCqkGMLxigViWZxkAR0BbCYaC6.jpg", - "credit_id": "648edf80c3c89100ae51604a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 1532735, - "known_for_department": "Costume & Make-Up", - "name": "Marie Larkin", - "original_name": "Marie Larkin", - "popularity": 1.4, - "profile_path": null, - "credit_id": "62d347a62d1e40004ecdba76", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 1, - "id": 1545915, - "known_for_department": "Costume & Make-Up", - "name": "Laura Bailey", - "original_name": "Laura Bailey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6ec7d363e50079c169e7", - "department": "Costume & Make-Up", - "job": "Principal Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 1550235, - "known_for_department": "Sound", - "name": "Robert Sharman", - "original_name": "Robert Sharman", - "popularity": 1.579, - "profile_path": null, - "credit_id": "62d348f82d1e4000560c07fc", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1550831, - "known_for_department": "Acting", - "name": "Lauren Shaw", - "original_name": "Lauren Shaw", - "popularity": 5.488, - "profile_path": "/sQ9lph00dpFhDTsh8ST7QhqMV3k.jpg", - "credit_id": "642c6737d100b60114c10d51", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1551811, - "known_for_department": "Art", - "name": "Hugh McClelland", - "original_name": "Hugh McClelland", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d346e3afa1b00067c39005", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1570045, - "known_for_department": "Costume & Make-Up", - "name": "Samantha Kininmonth", - "original_name": "Samantha Kininmonth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f221e3af92900c8f41e78", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1576849, - "known_for_department": "Sound", - "name": "Dan Kenyon", - "original_name": "Dan Kenyon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f200b3af9290144f0bdd9", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1576849, - "known_for_department": "Sound", - "name": "Dan Kenyon", - "original_name": "Dan Kenyon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20033af929010687b362", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1585171, - "known_for_department": "Acting", - "name": "Devyn LaBella", - "original_name": "Devyn LaBella", - "popularity": 3.28, - "profile_path": "/7htDHCPITciBA52Be1lBmld4AN9.jpg", - "credit_id": "642c669f8b959e00b6007ce8", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1606177, - "known_for_department": "Costume & Make-Up", - "name": "Sarah Downes", - "original_name": "Sarah Downes", - "popularity": 1.02, - "profile_path": null, - "credit_id": "649f22388d52c900eb4a7469", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1661465, - "known_for_department": "Acting", - "name": "Lizzo", - "original_name": "Lizzo", - "popularity": 3.382, - "profile_path": "/wYPEw07PGNht66ziBEuF4DoArQj.jpg", - "credit_id": "64bee5a358efd3013954b633", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1671065, - "known_for_department": "Production", - "name": "Kerri Smeltzer", - "original_name": "Kerri Smeltzer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d348269f51af004f8f62d6", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1721453, - "known_for_department": "Crew", - "name": "Angelica O'Brien", - "original_name": "Angelica O'Brien", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb62c7e24b9300cdf8a3f1", - "department": "Crew", - "job": "Visual Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1723161, - "known_for_department": "Crew", - "name": "Holland Diaz", - "original_name": "Holland Diaz", - "popularity": 1.445, - "profile_path": null, - "credit_id": "642c65b48de0ae01135129eb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1726512, - "known_for_department": "Production", - "name": "Courtenay Valenti", - "original_name": "Courtenay Valenti", - "popularity": 1.697, - "profile_path": null, - "credit_id": "6433575c391b9c00b6aec1ff", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1737667, - "known_for_department": "Production", - "name": "Cate Adams", - "original_name": "Cate Adams", - "popularity": 1.002, - "profile_path": null, - "credit_id": "64335775e92d8300b6e541a2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1741366, - "known_for_department": "Acting", - "name": "Este Haim", - "original_name": "Este Haim", - "popularity": 2.229, - "profile_path": "/yGXIdcyTqm577PMQthA1EdiHlv3.jpg", - "credit_id": "64c3910443250f00c99fbd33", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1741367, - "known_for_department": "Acting", - "name": "Alana Haim", - "original_name": "Alana Haim", - "popularity": 7.429, - "profile_path": "/uOU4uueRxH5BYhzNjzPxJOxZStJ.jpg", - "credit_id": "64c390fbec370c011c469537", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1741368, - "known_for_department": "Acting", - "name": "Danielle Haim", - "original_name": "Danielle Haim", - "popularity": 3.991, - "profile_path": "/hvDVZHgafVuRbzbvktHHYPXLQIr.jpg", - "credit_id": "64c390f4028f1401524130ae", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1743134, - "known_for_department": "Acting", - "name": "Chris Reid", - "original_name": "Chris Reid", - "popularity": 6.915, - "profile_path": "/yvo81AU4zUKbcNtWEQjaSTvLTPS.jpg", - "credit_id": "642c67108b959e0113026d7d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1746962, - "known_for_department": "Acting", - "name": "Brionna Maria Lynch", - "original_name": "Brionna Maria Lynch", - "popularity": 0.608, - "profile_path": "/oubWBxqYlA0TsQdY3mGlTGNghDW.jpg", - "credit_id": "642c66aa9cc67b05bf709ad8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 1747978, - "known_for_department": "Sound", - "name": "Kevin Schultz", - "original_name": "Kevin Schultz", - "popularity": 1.312, - "profile_path": null, - "credit_id": "649f2063edeb4300c6f7fe37", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1770975, - "known_for_department": "Costume & Make-Up", - "name": "Michelle Chong", - "original_name": "Michelle Chong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f214385867800ae43d310", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 1784562, - "known_for_department": "Art", - "name": "Lorna Houlihan", - "original_name": "Lorna Houlihan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20b485867800ebb60de4", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1789391, - "known_for_department": "Sound", - "name": "Bálint Csáki", - "original_name": "Bálint Csáki", - "popularity": 0.919, - "profile_path": null, - "credit_id": "63c9cb6903f0b600b91d8f5e", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1789973, - "known_for_department": "Crew", - "name": "Kye Mckee", - "original_name": "Kye Mckee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66cf8b959e0113026d6a", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1790904, - "known_for_department": "Art", - "name": "Laura Miller", - "original_name": "Laura Miller", - "popularity": 0.708, - "profile_path": null, - "credit_id": "649f20dcd6590b0138c4acd6", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1809715, - "known_for_department": "Crew", - "name": "Donny Bailey", - "original_name": "Donny Bailey", - "popularity": 0.652, - "profile_path": null, - "credit_id": "642c65726e44bf00b4763538", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1813931, - "known_for_department": "Directing", - "name": "Danni Lizaitis", - "original_name": "Danni Lizaitis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d70cb21c635b0050893803", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1824242, - "known_for_department": "Art", - "name": "Clara Gomez del Moral", - "original_name": "Clara Gomez del Moral", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d346abd399e6004e722ac8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1826944, - "known_for_department": "Crew", - "name": "Marie Fink", - "original_name": "Marie Fink", - "popularity": 0.782, - "profile_path": "/d59Gg9ZzMhq3cmoJczHNrcY7YUX.jpg", - "credit_id": "642c65ded100b60098e75273", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 1832144, - "known_for_department": "Editing", - "name": "Nick Houy", - "original_name": "Nick Houy", - "popularity": 1.4, - "profile_path": "/tEBVPxfADgINL6lGbxnX5DtJwwe.jpg", - "credit_id": "642c9ff2c04429026b14cc78", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1835175, - "known_for_department": "Crew", - "name": "Nick Irving Allen", - "original_name": "Nick Irving Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5875ea39490084d482ee", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1908039, - "known_for_department": "Production", - "name": "Josey McNamara", - "original_name": "Josey McNamara", - "popularity": 1.204, - "profile_path": null, - "credit_id": "61f48c01cedac4011b8ee939", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1915138, - "known_for_department": "Visual Effects", - "name": "Nick King", - "original_name": "Nick King", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5b64cee481008efe3977", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1915698, - "known_for_department": "Camera", - "name": "Chris Bain", - "original_name": "Chris Bain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb65c709dda400c0e2e62e", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1917355, - "known_for_department": "Lighting", - "name": "Jason Blaise Cunningham", - "original_name": "Jason Blaise Cunningham", - "popularity": 0.84, - "profile_path": null, - "credit_id": "63cb6704ea394900812901d3", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1919777, - "known_for_department": "Sound", - "name": "Steve Hancock", - "original_name": "Steve Hancock", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34943278d8a004fdb5404", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1920595, - "known_for_department": "Production", - "name": "Emily Buntyn", - "original_name": "Emily Buntyn", - "popularity": 0.706, - "profile_path": null, - "credit_id": "62d35225afa1b0004c496221", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 1931805, - "known_for_department": "Acting", - "name": "KAROL G", - "original_name": "KAROL G", - "popularity": 0.74, - "profile_path": "/4NJcr9XeLWTVnOLvrPdon5CZhaT.jpg", - "credit_id": "64bee5dfe9da69014fecd3bd", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1944968, - "known_for_department": "Acting", - "name": "Khalid", - "original_name": "Khalid", - "popularity": 1.791, - "profile_path": "/hYJmbngSOvq1fqhKB8e0qyHPAe2.jpg", - "credit_id": "64bee5ae0ed2ab00e2db8b52", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1959397, - "known_for_department": "Acting", - "name": "Dua Lipa", - "original_name": "Dua Lipa", - "popularity": 4.561, - "profile_path": "/82ZEdOoWZcRQbOawXbZ1EDTO85K.jpg", - "credit_id": "648ee77a263462012d4a9c3f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 1977248, - "known_for_department": "Crew", - "name": "Miluette Nalin", - "original_name": "Miluette Nalin", - "popularity": 1.708, - "profile_path": "/fRbBzoDfG8UrSXOKft2njgifegy.jpg", - "credit_id": "642c66e4d100b600f58c35af", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 1994376, - "known_for_department": "Production", - "name": "Michael B. Johnson", - "original_name": "Michael B. Johnson", - "popularity": 0.727, - "profile_path": "/rU1648PRHaCLPsU4x1ICbpvpsgs.jpg", - "credit_id": "642c6634ac8e6b340333981a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2010488, - "known_for_department": "Crew", - "name": "Lucy Thompson", - "original_name": "Lucy Thompson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d34a51f90b19004cb8a90b", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2019888, - "known_for_department": "Costume & Make-Up", - "name": "Melanie Young", - "original_name": "Melanie Young", - "popularity": 0.656, - "profile_path": null, - "credit_id": "649f22006f6a9900ad57a536", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2047024, - "known_for_department": "Directing", - "name": "Matthew R. Milan", - "original_name": "Matthew R. Milan", - "popularity": 0.692, - "profile_path": null, - "credit_id": "63c8bdf270b44400aecd8a67", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2058117, - "known_for_department": "Art", - "name": "Steven Morris", - "original_name": "Steven Morris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cab11703f0b600a0792c23", - "department": "Art", - "job": "Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 2069401, - "known_for_department": "Costume & Make-Up", - "name": "Jimmy Kenney", - "original_name": "Jimmy Kenney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f216f3af9290125394c45", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 2, - "id": 2085220, - "known_for_department": "Camera", - "name": "John Sorapure", - "original_name": "John Sorapure", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bf0e70b444008743e69f", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 2110965, - "known_for_department": "Costume & Make-Up", - "name": "Melanie Ghisays", - "original_name": "Melanie Ghisays", - "popularity": 0.84, - "profile_path": null, - "credit_id": "62d34e336eecee067e4a9504", - "department": "Costume & Make-Up", - "job": "Key Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2121850, - "known_for_department": "Camera", - "name": "David Tulett", - "original_name": "David Tulett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6c996d97e6007c9d41e0", - "department": "Camera", - "job": "Libra Head Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2123450, - "known_for_department": "Crew", - "name": "Sam Perez", - "original_name": "Sam Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5747e24b93009b9c548f", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2124403, - "known_for_department": "Art", - "name": "Gordon Stotz", - "original_name": "Gordon Stotz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34701cf62cd004cb2d79b", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2144111, - "known_for_department": "Crew", - "name": "Owen Jackson", - "original_name": "Owen Jackson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "63cb5af2d363e500ba7827ee", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2144664, - "known_for_department": "Production", - "name": "Richard Dickson", - "original_name": "Richard Dickson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5bba5c9a0e0a2634f903341a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2146988, - "known_for_department": "Production", - "name": "Craig Jamieson", - "original_name": "Craig Jamieson", - "popularity": 0.629, - "profile_path": null, - "credit_id": "62d34860dd731b004f08f094", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2147627, - "known_for_department": "Lighting", - "name": "Manny Tapia", - "original_name": "Manny Tapia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb6c65d363e5008e8e9091", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 2176989, - "known_for_department": "Sound", - "name": "Chelsea Body", - "original_name": "Chelsea Body", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f1ff0edeb4300aec434e5", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 2190487, - "known_for_department": "Art", - "name": "Ashley Swanson", - "original_name": "Ashley Swanson", - "popularity": 0.603, - "profile_path": null, - "credit_id": "63c8b51f70b44400aecd84ee", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 2238791, - "known_for_department": "Crew", - "name": "Aldonio Danny Frietas", - "original_name": "Aldonio Danny Frietas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65f4c0a30800b43c4bbb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2261974, - "known_for_department": "Acting", - "name": "Kevin Parker", - "original_name": "Kevin Parker", - "popularity": 2.081, - "profile_path": "/pJzgpxdlgYbwezmbzHfsFyjoxj5.jpg", - "credit_id": "64c390aeaf6e94013a52e960", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2341402, - "known_for_department": "Costume & Make-Up", - "name": "Naomi Tolan", - "original_name": "Naomi Tolan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f220dedeb4300c6f7fec5", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2362590, - "known_for_department": "Production", - "name": "Ynon Kreiz", - "original_name": "Ynon Kreiz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "61f48c155f6c49008b820967", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2399179, - "known_for_department": "Production", - "name": "Michael Sharp", - "original_name": "Michael Sharp", - "popularity": 0.715, - "profile_path": null, - "credit_id": "62858e410d5d854560e812b4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2399179, - "known_for_department": "Production", - "name": "Michael Sharp", - "original_name": "Michael Sharp", - "popularity": 0.715, - "profile_path": null, - "credit_id": "63c8bb04abdec000c87fb08e", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2399181, - "known_for_department": "Directing", - "name": "David Keadell", - "original_name": "David Keadell", - "popularity": 0.696, - "profile_path": null, - "credit_id": "62d70c9877e1f600558b56b2", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2413513, - "known_for_department": "Acting", - "name": "Billie Eilish", - "original_name": "Billie Eilish", - "popularity": 8.577, - "profile_path": "/gpJSDIUsVFVSeCxbsC7w40X7K4f.jpg", - "credit_id": "64a6ec8ccae632013c6b092f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2424193, - "known_for_department": "Costume & Make-Up", - "name": "Kat Ali", - "original_name": "Kat Ali", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2252edeb4300e3db6298", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2507636, - "known_for_department": "Camera", - "name": "Jordan Stossel", - "original_name": "Jordan Stossel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f21d53af92900e7fbc31a", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 2544588, - "known_for_department": "Crew", - "name": "Ingrid Kleinig", - "original_name": "Ingrid Kleinig", - "popularity": 0.82, - "profile_path": "/jub7l33ZvhQ2vET0Az5QXb0oStq.jpg", - "credit_id": "62d34bfadd731b0054ebc90e", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2544913, - "known_for_department": "Visual Effects", - "name": "Erin Hewitt", - "original_name": "Erin Hewitt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5aa76d97e60081fe8fdb", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2578165, - "known_for_department": "Crew", - "name": "Anthony Genova", - "original_name": "Anthony Genova", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66019cc67b05bf709aaf", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2600733, - "known_for_department": "Acting", - "name": "Nina Rice", - "original_name": "Nina Rice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d348e02d1e40004ecdbae4", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2622610, - "known_for_department": "Directing", - "name": "Aisling Hughes", - "original_name": "Aisling Hughes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d351bd91745b004cbab15b", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2626964, - "known_for_department": "Crew", - "name": "Derek Johnson", - "original_name": "Derek Johnson", - "popularity": 1.008, - "profile_path": null, - "credit_id": "642c662a8b959e00775de176", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2636803, - "known_for_department": "Crew", - "name": "Travis Fienhage", - "original_name": "Travis Fienhage", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65d48de0ae01135129f8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2660043, - "known_for_department": "Crew", - "name": "Zoe Tough", - "original_name": "Zoe Tough", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bf96c5c1ef008ae4ec34", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2687837, - "known_for_department": "Crew", - "name": "Kristina Baskett", - "original_name": "Kristina Baskett", - "popularity": 0.732, - "profile_path": null, - "credit_id": "642c657dc0a30800774f362d", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2711299, - "known_for_department": "Acting", - "name": "Dominic Fike", - "original_name": "Dominic Fike", - "popularity": 2.244, - "profile_path": "/vtuRZff8c3QNKiShMo25z5M5guD.jpg", - "credit_id": "64c38f08af6e9400ae3c8dd0", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2728316, - "known_for_department": "Acting", - "name": "Ava Max", - "original_name": "Ava Max", - "popularity": 1.482, - "profile_path": "/tCqydBoubnOme8GLRC2BhhlKVJM.jpg", - "credit_id": "64bee587e9da6900eceb2b67", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2750285, - "known_for_department": "Acting", - "name": "Cara Koh", - "original_name": "Cara Koh", - "popularity": 0.608, - "profile_path": "/t1ce7RlRkG8hF5Q6HuNTgrN82bS.jpg", - "credit_id": "642c6695c0442901f003c8ff", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2756166, - "known_for_department": "Crew", - "name": "Chris Naylor", - "original_name": "Chris Naylor", - "popularity": 0.641, - "profile_path": null, - "credit_id": "642c66efc0442902130735fd", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2812881, - "known_for_department": "Art", - "name": "Jasmine Lean", - "original_name": "Jasmine Lean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20cb6f6a99013a89fd09", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 2856218, - "known_for_department": "Editing", - "name": "Anna Kelman", - "original_name": "Anna Kelman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb5b4ecee481007cdc7019", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2880123, - "known_for_department": "Costume & Make-Up", - "name": "Kirsty Martin", - "original_name": "Kirsty Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8b89f70b444008743e312", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2893439, - "known_for_department": "Crew", - "name": "Peter Treece", - "original_name": "Peter Treece", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34aa19f51af0057b89f2b", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2899664, - "known_for_department": "Crew", - "name": "Vanessa Rael", - "original_name": "Vanessa Rael", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c670501b1ca00e3ac16a0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3007411, - "known_for_department": "Crew", - "name": "Jennifer White", - "original_name": "Jennifer White", - "popularity": 0.756, - "profile_path": null, - "credit_id": "64c61a7541aac40fb4363427", - "department": "Crew", - "job": "Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3090553, - "known_for_department": "Crew", - "name": "Alex Robinson", - "original_name": "Alex Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62d34a82cf62cd004f2c125b", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 1, - "id": 3104797, - "known_for_department": "Art", - "name": "Trixie Gardner", - "original_name": "Trixie Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20a86f6a9900e34982a8", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3124739, - "known_for_department": "Crew", - "name": "Sam Durrani", - "original_name": "Sam Durrani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c65c99cc67b059cc5b5cc", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3198665, - "known_for_department": "Acting", - "name": "Troy Castaneda", - "original_name": "Troy Castaneda", - "popularity": 0.63, - "profile_path": null, - "credit_id": "642c65929cc67b05796cd7fd", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 3200184, - "known_for_department": "Production", - "name": "Lauren Fox", - "original_name": "Lauren Fox", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63c8bc4fc5c1ef008ae4ea69", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3210016, - "known_for_department": "Crew", - "name": "Cody Mackie", - "original_name": "Cody Mackie", - "popularity": 0.84, - "profile_path": null, - "credit_id": "642c66c3c0a30800b43c4bf4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3338823, - "known_for_department": "Art", - "name": "Andre Rivera", - "original_name": "Andre Rivera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f210085867800ae43d2fa", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 3352762, - "known_for_department": "Crew", - "name": "Nikita Mitchell", - "original_name": "Nikita Mitchell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c66d96e44bf00d30ad66e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3375786, - "known_for_department": "Camera", - "name": "Jac Hopkins", - "original_name": "Jac Hopkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63cb68c3ea394900afa12016", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3491133, - "known_for_department": "Costume & Make-Up", - "name": "Sara Osborn", - "original_name": "Sara Osborn", - "popularity": 0.69, - "profile_path": null, - "credit_id": "63c8b9187a97ab008aca39e6", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3501685, - "known_for_department": "Art", - "name": "Alicia Grace Martin", - "original_name": "Alicia Grace Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63caad8468afd600acf5f415", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3544158, - "known_for_department": "Visual Effects", - "name": "Preston Mohr", - "original_name": "Preston Mohr", - "popularity": 0.6, - "profile_path": "/5n10ZmeDq088uQWXOGnjVTTOqws.jpg", - "credit_id": "63cb61896d97e60089efea56", - "department": "Visual Effects", - "job": "Visual Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3582780, - "known_for_department": "Crew", - "name": "Lucy Scarfe", - "original_name": "Lucy Scarfe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62a2ddd035d1bc5106b6c1fe", - "department": "Crew", - "job": "Stand In" - }, - { - "adult": false, - "gender": 0, - "id": 3674443, - "known_for_department": "Costume & Make-Up", - "name": "Grace Rufin", - "original_name": "Grace Rufin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2185edeb43011d5f2b85", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3735901, - "known_for_department": "Art", - "name": "Andrew Rafner", - "original_name": "Andrew Rafner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20ec858678012d769dde", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3784191, - "known_for_department": "Art", - "name": "Sonia Kasparian", - "original_name": "Sonia Kasparian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f20beedeb4301006a3cfe", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 3784466, - "known_for_department": "Sound", - "name": "GAYLE", - "original_name": "GAYLE", - "popularity": 0.6, - "profile_path": "/snBICknQkCh9tv2NiJtFvqbAiaO.jpg", - "credit_id": "64c38f86ec370c00ad51aecc", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 3874127, - "known_for_department": "Crew", - "name": "Kurt Nelson", - "original_name": "Kurt Nelson", - "popularity": 0.6, - "profile_path": "/zcOS4UYph2d4pRbUJGuwS82rzWA.jpg", - "credit_id": "642c66fbc0a30800774f3689", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3899094, - "known_for_department": "Crew", - "name": "Natalie Rivera", - "original_name": "Natalie Rivera", - "popularity": 0.84, - "profile_path": null, - "credit_id": "642c672b6e44bf00b47635b8", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3946916, - "known_for_department": "Sound", - "name": "PinkPantheress", - "original_name": "PinkPantheress", - "popularity": 0.6, - "profile_path": "/5946DdyEeYJVnC4hyYmncKL9dwW.jpg", - "credit_id": "64bee5f5f9183a00e2bca5aa", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 3994214, - "known_for_department": "Crew", - "name": "Tegan Hammond", - "original_name": "Tegan Hammond", - "popularity": 0.6, - "profile_path": null, - "credit_id": "642c6610ac8e6b34540ec762", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 4075547, - "known_for_department": "Costume & Make-Up", - "name": "Janet E Jensen", - "original_name": "Janet E Jensen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649f2162edeb4300e3db623d", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 1, - "id": 4118330, - "known_for_department": "Sound", - "name": "Ice Spice", - "original_name": "Ice Spice", - "popularity": 0.6, - "profile_path": "/AibKYunFSD71V7pI1BMnzQ0LH7h.jpg", - "credit_id": "648edf9fc2ff3d00c59a6b07", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 4125979, - "known_for_department": "Crew", - "name": "David Woods", - "original_name": "David Woods", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6494c69854508d00ae28cba2", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 4184556, - "known_for_department": "Sound", - "name": "The Kid LAROI", - "original_name": "The Kid LAROI", - "popularity": 0.6, - "profile_path": "/4TjZsKNdYlQsnFyJIeIRZbvOwjz.jpg", - "credit_id": "64c38908af6e94013a52e63a", - "department": "Sound", - "job": "Songs" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "THANK YOU to all of the beautiful Barbies and Kens who helped get this pink party started! 🤩🎀💞", - "key": "uQCM613pqY4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-14T18:38:12.000Z", - "id": "64e3a31dd75bd600aca46eb1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Score", - "key": "74Ie5QZC3Mc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-04T16:46:06.000Z", - "id": "64d35621dd926a01e896fec6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Kens", - "key": "KLqfVqDkXaI", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-28T11:35:19.000Z", - "id": "64c6552741aac40fb43651a1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transportation", - "key": "Bcy3X57MSt0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-28T11:12:25.000Z", - "id": "64c6554a63aad20209a5595c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Blow My Mind", - "key": "vkoAEuR-SJQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-27T17:35:07.000Z", - "id": "64c654cd41aac40fb3e56ab5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Now Playing", - "key": "wVDEuVefTvA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-21T13:00:56.000Z", - "id": "64c0c0acdf86a800ae00d652" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Greta's Vision", - "key": "3CVkQ9T0O08", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-21T08:33:23.000Z", - "id": "64c0c2b0097c49013a31336b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Album x Movie Trailer", - "key": "S0BJ8XOggmM", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-21T05:04:55.000Z", - "id": "64c6551295ce24013b9bc15b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "European Premiere", - "key": "k_29rmSGeEs", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-14T18:33:25.000Z", - "id": "64b1b96937806200ad13d24b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Best Day Ever", - "key": "MeKVPM_VJcg", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-13T11:14:50.000Z", - "id": "64afe6cae24b935b32b05194" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Cast of 'Barbie' Reveal How Old Hollywood and Disco Inspired 'Barbie' | Around The Table", - "key": "KdMm-_g_JS8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": false, - "published_at": "2023-07-10T16:09:32.000Z", - "id": "64af7d4bc4904800e242d183" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Just Ken Exclusive", - "key": "Y1IgAEejvqM", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-10T16:00:31.000Z", - "id": "64ac3ba766a0d300c66f9c1f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Catastrophic", - "key": "SvbYPrSQ4I8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:29.000Z", - "id": "64afd3526a344800ea8f626d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heels", - "key": "RuZa7M9fsvE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:22.000Z", - "id": "64afd224c49048011c2f624b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Real", - "key": "lcnBEV5q8P4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:16.000Z", - "id": "64afd244e24b935b32b046dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Choice Rev", - "key": "ylYDgHFqmhw", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:43:11.000Z", - "id": "64afd28dc4904800c506ce21" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dream", - "key": "7bGCbZnn6Uc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-05T16:42:59.000Z", - "id": "64afd2d18a0e9b00e3769e05" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Kicking off Summer with Barbie and Ken", - "key": "0BJi-Uhzqgk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-21T17:09:22.000Z", - "id": "649354b96b5fc2010a4c9f1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Cast of ‘Barbie’ on Greta Gerwig’s Vision, ‘Big Ken Energy’, and Favorite Outfits", - "key": "35FbTkEXe2s", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": false, - "published_at": "2023-06-21T16:00:02.000Z", - "id": "6493624a9a358d011cc841ac" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Margot Robbie Takes You Inside The Barbie Dreamhouse", - "key": "uKgaVlMN7IY", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": false, - "published_at": "2023-06-16T16:00:08.000Z", - "id": "64935fa589b56100ad694344" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Main Trailer", - "key": "pBk4NYhWNMM", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-25T16:00:38.000Z", - "id": "646f86ffe942ee00dcdffc45" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer 2", - "key": "GRyt3Ov4zz0", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T16:00:09.000Z", - "id": "642c4aa6c0442901f003c257" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "8zIf0XvoL9Y", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-16T14:00:08.000Z", - "id": "639cad2c2f266b009b0b4d2a" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "vote_average": 5.596, - "vote_count": 38, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nHf61UzkfFno5X1ofIhugCPus2R.jpg", - "vote_average": 5.506, - "vote_count": 38, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2070, - "iso_639_1": null, - "file_path": "/tTfnd2VrlaZJSBD9HUbtSF3CqPJ.jpg", - "vote_average": 5.464, - "vote_count": 49, - "width": 3680 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1esAE8sLJRWWFsLLeh5r3g2WanI.jpg", - "vote_average": 5.458, - "vote_count": 17, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/v3gfn7147bmp776ouWRUL3j3viV.jpg", - "vote_average": 5.398, - "vote_count": 14, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3N5QNUqS76GFYNoEayfkkJyAyTN.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/frYbmlPnVwQNr1RrpyDhihPNz3B.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/Et0kiUZj30oAD3V4p2rCW20cvs.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/ovCpJJRqqdD8TMUSyAhfJff5oj2.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/ldFX26JW3fusyMewRoWoXYWaffw.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": "ro", - "file_path": "/jRJa3RxgXjnYow22MeTsAUBLpIm.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tVlZORFsQRLo8Zp8HK1YAatmYJ8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2070, - "iso_639_1": null, - "file_path": "/fRyYKQdsXIjw26MendWxpWmvnBs.jpg", - "vote_average": 5.3, - "vote_count": 22, - "width": 3680 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uvaXVadrn3YPKFP1stA60k1jXi5.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/llZSAx6YW0y9tV4iMKmbUBNh70I.jpg", - "vote_average": 5.282, - "vote_count": 14, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/4806moKxI5hCKmQz8TcQC0Hczfb.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yuikh0iVJxnA9RsrNiDfjez2j1T.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/rIyXqwMJScuTA20gl22uFrcLYpW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/bazpB0IfrVxjZFwANJRbqFvUv2A.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": "en", - "file_path": "/2H76C0wgi9ISrmCo7ZgG5zULAbr.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 1569, - "iso_639_1": null, - "file_path": "/uKT4sKhaVBkLbaEIUynLcGfKhGR.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2790 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uuk7FXrbcPlnCT0uFvRb3k8PLVI.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/lQ519nzZbXcmVONibSpSNiDL5b1.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 1200, - "iso_639_1": null, - "file_path": "/lLRrR9gQW2sMddvuc3AnA4JLDkt.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2133 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/iMPirFqLDbOFYfRHlCDfpaCD8Pn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/lL0N8Gb5tHSHi8Voda7kii2BVPc.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1800 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pucmrS9TwhVRNp1f9nPJP6UXCfp.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1FuebfLlwMRqWmjIYlv6wjVFgGZ.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qLaQd7Ol3xyVt4sz59iHV91mRvK.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5VTERbDQHQV9cGsce3llkV6HtKA.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6roctBvDW0o2ZwFrdb1kgLQqUYr.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/14EfaWsbn4XVrl8LMsAxAM5sjZb.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 1280 - }, - { - "aspect_ratio": 1.779, - "height": 1012, - "iso_639_1": null, - "file_path": "/jQbnhNvFQXO7jwLzdrceCTspEeI.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 1800 - }, - { - "aspect_ratio": 1.777, - "height": 1688, - "iso_639_1": null, - "file_path": "/xmKiiEu43CTRiUM3JQAR7UcWBRZ.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3000 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8XXUELxpH8abOjqa6kg69UXpvDW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kcFgNH1PN0YNoboro6uxhGBf9iW.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 2160, - "iso_639_1": null, - "file_path": "/cQzFKlLZPcmG4iAH3c4iuPNOqNd.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3839 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/yzSbNAr3p6hxNIJyvPQePscdHwA.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9ns0swQ7HeoqvkV33w6T8omJ2D8.jpg", - "vote_average": 5.1, - "vote_count": 13, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/keZwCyT8zbeh5hV9Po6AXRSF8X0.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.779, - "height": 759, - "iso_639_1": "uk", - "file_path": "/u3MSt536eKBWcrvvkVNA5pSuCQp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1350 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/vJahTRpKZJ42KL3CjYx4NgjBURQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 759, - "iso_639_1": "th", - "file_path": "/thWqrbAGQ79oo3BWYfkvW5adZBq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1349 - }, - { - "aspect_ratio": 1.778, - "height": 1000, - "iso_639_1": "lo", - "file_path": "/emG4FteXntgZpHCL4s7xUzANuC2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1778 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/cJI8RqnKyC6IECDpUBrjuOeShcx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 1.4, - "height": 1500, - "iso_639_1": null, - "file_path": "/qfvMCmB6P4M85ZivjQHYjaGoMOj.svg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2100 - }, - { - "aspect_ratio": 2.54, - "height": 1284, - "iso_639_1": "en", - "file_path": "/nsMnkuWIZCBxkBLPi0ZXuRloYL2.png", - "vote_average": 5.322, - "vote_count": 5, - "width": 3261 - }, - { - "aspect_ratio": 2.535, - "height": 1292, - "iso_639_1": "en", - "file_path": "/ePTZefgblCKMJnTzfPiUyzy9C8q.png", - "vote_average": 5.322, - "vote_count": 5, - "width": 3275 - }, - { - "aspect_ratio": 3.862, - "height": 457, - "iso_639_1": "zh", - "file_path": "/n1sIhir4h6waJaUsiNIEuvxu7qe.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1765 - }, - { - "aspect_ratio": 2.182, - "height": 697, - "iso_639_1": "uk", - "file_path": "/be49LZDQkEUoDzkCzNa62TYoxAZ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1521 - }, - { - "aspect_ratio": 2.54, - "height": 1905, - "iso_639_1": "en", - "file_path": "/chvO48dgirqBYkXkWVuEtGj5Jke.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 4838 - }, - { - "aspect_ratio": 2.711, - "height": 1583, - "iso_639_1": "en", - "file_path": "/pMcu6X9aSmBXxp2n2SG31Gw4nAG.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4291 - }, - { - "aspect_ratio": 2.945, - "height": 1292, - "iso_639_1": "en", - "file_path": "/uBllJrRWteoPUSfTzbZwwhjPfjs.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3805 - }, - { - "aspect_ratio": 2.557, - "height": 413, - "iso_639_1": "en", - "file_path": "/zst8tT4d7klJNLAmBupAxXgt7op.svg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1056 - }, - { - "aspect_ratio": 2.556, - "height": 782, - "iso_639_1": "en", - "file_path": "/d2FE1qKZAKmtMZ7Zlf76lkhxG4n.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 1999 - }, - { - "aspect_ratio": 2.001, - "height": 775, - "iso_639_1": "th", - "file_path": "/dosxOTMVMtKZyrs02ncKlHbqZLv.png", - "vote_average": 0, - "vote_count": 0, - "width": 1551 - }, - { - "aspect_ratio": 1.992, - "height": 592, - "iso_639_1": "uk", - "file_path": "/fx1fURy68mPx3q0ABMpBMAoVp4O.png", - "vote_average": 0, - "vote_count": 0, - "width": 1179 - }, - { - "aspect_ratio": 2.096, - "height": 522, - "iso_639_1": "uk", - "file_path": "/jvqBE3rncxKTzJzX5L17y4eQ8TO.png", - "vote_average": 0, - "vote_count": 0, - "width": 1094 - }, - { - "aspect_ratio": 1.992, - "height": 592, - "iso_639_1": "uk", - "file_path": "/xOQUFtMrJzBP97bPc25KaLwlQyM.png", - "vote_average": 0, - "vote_count": 0, - "width": 1179 - }, - { - "aspect_ratio": 2.086, - "height": 902, - "iso_639_1": "ja", - "file_path": "/oTbdfjU0lHO7spjUebPjGDDc8cf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1882 - }, - { - "aspect_ratio": 3.944, - "height": 376, - "iso_639_1": "zh", - "file_path": "/f3rabe8niCVXB2JXsmbujYxQdGD.png", - "vote_average": 0, - "vote_count": 0, - "width": 1483 - }, - { - "aspect_ratio": 0.928, - "height": 1271, - "iso_639_1": "en", - "file_path": "/cSdUE8uFEL8p7qGDwdjCzAneyb5.png", - "vote_average": 0, - "vote_count": 0, - "width": 1180 - }, - { - "aspect_ratio": 1.998, - "height": 539, - "iso_639_1": "ar", - "file_path": "/4fsMHjVML8s8zoZ78V73C4qfoA7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1077 - }, - { - "aspect_ratio": 1.971, - "height": 594, - "iso_639_1": "ar", - "file_path": "/7wwBcN4WR5UXVbsKBpwCcin724B.png", - "vote_average": 0, - "vote_count": 0, - "width": 1171 - }, - { - "aspect_ratio": 1.971, - "height": 594, - "iso_639_1": "ar", - "file_path": "/2NmNFX5dAEhxC8TZIbjjIdu98qB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1171 - }, - { - "aspect_ratio": 4.088, - "height": 306, - "iso_639_1": "cn", - "file_path": "/e69CMKxTKxIk1ZQm5wEgWy8pJx0.png", - "vote_average": 0, - "vote_count": 0, - "width": 1251 - }, - { - "aspect_ratio": 1.932, - "height": 868, - "iso_639_1": "zh", - "file_path": "/xYOyyX8AcY1qiXicc4FqqefUuZj.png", - "vote_average": 0, - "vote_count": 0, - "width": 1677 - }, - { - "aspect_ratio": 2.401, - "height": 583, - "iso_639_1": "ru", - "file_path": "/isyAYdyTljfArCbeCaFT57S2UOv.png", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 2.164, - "height": 1017, - "iso_639_1": "uk", - "file_path": "/xl0htKGBIsSIdpcOv9f26UlKjn9.png", - "vote_average": 0, - "vote_count": 0, - "width": 2201 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "vote_average": 5.992, - "vote_count": 57, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cgYg04miVQUAG2FKk3amSnnHzOp.jpg", - "vote_average": 5.598, - "vote_count": 36, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/j9RaptNfOnqHMlTVa7nRdcTrSwr.jpg", - "vote_average": 5.518, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aDlWqnAP9WTo64L2QlBvs21ESde.jpg", - "vote_average": 5.458, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/hmf2xnlUPdZyoRBFf7P6RCKTXEe.jpg", - "vote_average": 5.458, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fNtqD4BTFj0Bgo9lyoAtmNFzxHN.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/yRRuLt7sMBEQkHsd1S3KaaofZn7.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cKCQRjp8WyOTGAZJSOf5SLjRyis.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/lQrVqEYnJVljNaQYXcryKbX65Ks.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/e8Lng7AmGnCYLq7XPQnI9prRF3S.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/u5kboZR4OMi4QdbOhawCZuzMVWJ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/7dK4kaCB0KuHWQwFrw5w5OgYOnW.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qqwqW8jWjZ6iaLRU98z3fdghwRn.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/eId9DzACEY5QxufQCt3nJFHZkqq.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/2NbpEZIuhZuKkUyabeQJE7eV9k7.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/gvQ2JIqHvc5elysJK9wfx5p0k1x.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.737, - "height": 1024, - "iso_639_1": "fr", - "file_path": "/2EXE5WolOOrIqCmWuL6eOQG8Qxy.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 755 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/xi7jcTWoo9E9ESuUqL8J0KmZQ21.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1368, - "iso_639_1": "cn", - "file_path": "/3WZbasv3Y6Ul9wseaFLhq1a437V.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 972 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "cs", - "file_path": "/wXZfbEr5J6r0CdyLRQ4Sj8DtFqH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2910, - "iso_639_1": "ko", - "file_path": "/rt8sHzR0XUyKHxU75ZIWs7MsNEN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1940 - }, - { - "aspect_ratio": 0.682, - "height": 2400, - "iso_639_1": "th", - "file_path": "/ckiDUkTO8WPFF6gArhnNctPNzyU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1638 - }, - { - "aspect_ratio": 0.707, - "height": 905, - "iso_639_1": "ja", - "file_path": "/gPKtvmMabSQ1EZINhFtB3DGbCpx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "th", - "file_path": "/6d6ebttRuLUdOOpFvr2mCYmiPOj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/eQjbB8p6BorINovLUk6flHhdGsZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/lNH3igZmHIHduaGAsN1YrmLBlTi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/s0V7YJTa0U8zx29luYTEAX0dnK7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/scy5uilToAu7iLG9IYFWbFVwdeD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/jZRbmxSF1AAU3Rf7zl1Spbbn0i7.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/h3mUJ9WEJ8PzA450ad4hrjsaiqG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 2840, - "iso_639_1": "de", - "file_path": "/7sBf4PQFL6H1rQzjYHy8KSQ4zNF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/o1YxyJFVbQvqwfWnf6aVyjcUhcZ.jpg", - "vote_average": 5.308, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bW0gPbSRXdXqKRNgeHbXsQ3iZP3.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/uUbdc9TMwbazp1zCNzGtXoBHhUa.jpg", - "vote_average": 5.28, - "vote_count": 37, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qirvDexByE5erglM8fdIm0AEVFD.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1366 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/kudd5ElWa99igVEFVHo9SSfIQbN.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1200 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "es", - "file_path": "/21sRRZZ5lAYe1aLl9O0oz2qtXe0.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1998 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/EdAihG7i5ytQDo2mjCCZJ8iBZR.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3w2uD3oAU9XyNWVl81F5wYorvp.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vJ4r8imQ9piseO9ufCwsopBBWnZ.jpg", - "vote_average": 5.26, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/nh32u8OR4Te5aY1jODNEL8qaOP4.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1999 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4ODTvg9r3LQt31zxX6y8YELDo6p.jpg", - "vote_average": 5.254, - "vote_count": 25, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/oQjqjIQ46VVa8Q80y3FfLrPXoK3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/lLVkbIz86qA3ynXbAectdoz29GF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/kp3VeScrMBkHyCx2aOG9oAWLQCW.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/i7QrCnwzdp6NyyAPPtJloKZmbBH.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2560, - "iso_639_1": "en", - "file_path": "/aZxMccR8ac78GQpjC7hApQmqHQ.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1706 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/w79W4BQdP5Jy8uAdEoqTsY0cnfy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6WRu3KSGR5PgSaCBHTzzSW6GNtA.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tQ5NvsAj8Yf7olkXqVFG91gw2bL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/qtNZKbmGh2F4VTRNV2OAjFNm6iE.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.68, - "height": 2880, - "iso_639_1": "sk", - "file_path": "/u1dqEQ6FZRFySm4AW6QRBUAGr0Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1957 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/iCgapPEvZA11JkuRwtQCdkzZQxx.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1728 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/iPtla6hJOerwsgw0zMxyEI6pR3Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6jZnkVwyh2wbN438UcMFV5VqSIR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/iy8BIZ2ApegBJ7WE2AAL63Wc7mF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1895, - "iso_639_1": "zh", - "file_path": "/dAv8RcdTEBe7zL93ySKYQHbBZAh.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 0.668, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/nH1P1LcmJpS3QXy7jEToz55x591.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1368 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/kau707eF6UBvrHX3v5BSYckqSXm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1920, - "iso_639_1": "en", - "file_path": "/kkORXK5rfpZGdBz0r2AASHC8dyG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1296 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/RjKltg3myc0PWStWsgVT9KOXC9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ze5vbG21agRR9kz5bXxBgLOJIeu.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ley0I2BSgpgkK2ZVyjJz875b9Ql.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/szZqSvNecde4VZiMcXZwfPVfdlI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yH5gEJakJ4ZcO5AQMkOCTIl97Rq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/6WP6FD932ce3H3Xi2UU5CVI7ilL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6BMIooQpnhL4Q892WySS1Xy74yy.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1778, - "iso_639_1": "uk", - "file_path": "/uXmecTPtDC9tfvGelyZL33hG2bd.jpg", - "vote_average": 5.226, - "vote_count": 15, - "width": 1186 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qL3jUsDMa4WnRKAzNZbfJC1l0GP.jpg", - "vote_average": 5.226, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/xHgeo4ptB514y0xDUo6MbnMZzfQ.jpg", - "vote_average": 5.224, - "vote_count": 32, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kpC1TbKaLihzK9hhhRlySOI7QVA.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "es", - "file_path": "/jwwVZPKT4SqTtKIy4xqtu1gEvRM.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w5J7eE9nJZkG5olLuZz27e2iB0e.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/sqvLahrvMjHqhaMQv0iXCM2dZCJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/gVoSyGhrbEIbCwRx3N9dtlpXKwJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jy9nw279TyeFLP4M4iJP3l3VKqF.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/9S9ShvnWoRhpJPTA5aqGJctqEK4.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eonFdmXxJSGcDvvG1gDzW3Rajac.jpg", - "vote_average": 5.186, - "vote_count": 20, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/mqNkQhaXxsH8SLNmJnG5oGz4meR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5WS3yDPDyMUqIio88t4h8TaM4DZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/vnDtIPDHne7sYG52UOcxPnJADNi.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/nUWqnl4kJAoevGxPWa2SI6phGta.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "vi", - "file_path": "/4mzEO5Lf7rvHFKuBmohIez7LFuH.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/sH7ra7uGyBLzeQnWB9sa1ttl2G7.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/uK4n2OTAUcwS0T1JVYohioFTaZF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/GqLdfsYKX6mUc2xDkHL9ZzcxZ6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/65k975H5wcRIzePv6lCJhMnRuXg.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/q1ZwEYbHDOnntusEk8OW0RtqQ19.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/8xgS05qDcFnqe2ewxqLM3crxrEo.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1122, - "iso_639_1": "en", - "file_path": "/eEOQx2iZO8Y4GTIe8veBZSny2DT.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 748 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bORWapuzi4mbyXBI89UqMwOPn4X.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "cn", - "file_path": "/yGwyPUf780t78iz7WVngDbvQpTy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 972 - }, - { - "aspect_ratio": 0.721, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/7tVqtSqpPnUvfX1u4MlHHQpzIco.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1477 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/arYrVOK0mxlhzJavR3t472pLJsl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.719, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/pYFDvaNPVNusendZyDykCHcHu3n.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 777 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gsQH4F4K7zxIcUjhrJ8mYrjDI5c.jpg", - "vote_average": 5.172, - "vote_count": 16, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/nPNQuLtThaxYZ5Zv5sAOo4B3sa5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eNmb3IpPNk4d2yfIZsU4qwWPvGu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jZhEc7MisfBe33KGg8Xf7fEcgRq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/awwGQslnJMlSerc4hdInb2dQoSH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/xOGwqlLEY5Tf4R5w2YRfaDVvtjQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rmaGKRRGf4cAmXgpsztbDSvFBV7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/4ZIuNrnhmoMLYIFxzzmpkk4H3Qf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/lUcWIA81tBNAqI5qr02zVP7vOVD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/phtVIbMJjylGofO6ejfrLsEySZf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/2stn3LZE95ePT3LHSR5VtXkKTir.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/alKZbFH2fLrV0J7HCok3Th2Lw8A.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a99JPawyTavCfN9b65rjrxhcSVW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3UH9z93WJIc7bILv106vd9MQrjO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fOZCEfEso2fCgnCzbjX7W9RfcWR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/cIK7QhukLfmBnshJxmyJyxrbK1L.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qD7egYcpKcWdTFhtf1rYNXINKS9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/f9vHy2SGTqEkmkw5uqSaeKEw8vx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/9lyByeCx51kj7gQ8KPf1qP3gW7w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "he", - "file_path": "/jvYuaocKZH3KeksGg7QytdOHgyG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/nwmotrbSzD3vSQOXpsSvAy8eLxl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/riEDvCBIWsogRq5Gq49lmrrsGhK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/mafdqLYrerRdHVLzGAZ5VLnFH13.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/ki7AHORnYqoQbELmoOGTJhWYTTW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A8gaRVLLmr6Mp0kn20czlU52FUe.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/cO2o8IEYMoMXc06MFkpONxV9WK4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/fucQmOmWe9gWdqXhqOv4xBISITO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tWhuPHHu1gdnPgifvLmyBZbT6EH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iw3hB7UXi8JSFtMQFWB7b3F1qpS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2457, - "iso_639_1": "en", - "file_path": "/e0GFhGoAcEiPZDW1odPnhQIOxaJ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1638 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/bkCkv65qHHkDfOH2HQyGBERv25P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/lXWRCtLoPrdbeZB7v6WnywM3IIe.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1024, - "iso_639_1": "ru", - "file_path": "/yBVrSciQdiBwDv1uCVE4M6PWaDa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 717 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/7dtc4fDP8rZxMwdcZer7ilbaJsd.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8WHnqnzxyX6tvcMd7WDermWUrAi.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 998, - "iso_639_1": "en", - "file_path": "/x9v8cupGths9U9C3Ggom02XoQtk.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 665 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rZt7XQqLzlVpUZfGtKGH47UCwv6.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hHvc0wQTFCM1DBjPLTODAy7N4Vf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lMpdf6qYRBqUKcuyGdRqgzOCGIX.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/eACGznumtmR72mVz5ZZlEklUDJd.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/cXS1xl2cfMhTuco6zlsxqjiAeQ4.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wdrQ6IvYWjN4bHKHIskxAi3nvT9.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3CriIiIDneXOSaoh9YJidJumbgj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/yALMDqHvxVX9UrsGhTlhXU3kH3b.jpg", - "vote_average": 5.09, - "vote_count": 11, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qLzeQkfbsa5Ud6jorN7H4CORKEq.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gU7P1yKJCShnUacIdRaDexix91f.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/zek17M4HkImVD9nfdHo4eWdNEFx.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "uk", - "file_path": "/iDDnVFAZhSMtVC8lbUuYiM0h8DC.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2232, - "iso_639_1": "en", - "file_path": "/rN00sd8bKUYAKAw9QMi4caExhKA.jpg", - "vote_average": 5.078, - "vote_count": 20, - "width": 1488 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/bU4UqQwXf1OXjVKT6HWqSzoUR3.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/9WQEVp8cqDoB7fdV8Aj5zIYmhCX.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/1oTjXow5UyBoDeSIod66e6PBYLy.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1215, - "iso_639_1": "en", - "file_path": "/cgKSM28kNW3syy2Z2Zw48nyR6EB.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 810 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/8VmDhfl4gJZpHDkflHOkAEcQMmo.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1009, - "iso_639_1": "en", - "file_path": "/kj18G32VBv9d1oH0IGrlCj8EwdY.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 673 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jNmZI0kRAEVeRSFWqj45mYPsVtD.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/i0qbQyAr1ZDroQmpjJcqW31VuKa.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jpcoaVwPZttZvKwTly1E1gOUxLr.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/5tWoNNNn4p6Km1h0lnElD80qsXv.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/22omd7bTY8J9mVnQAbE4GS7wM6C.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1051, - "iso_639_1": "en", - "file_path": "/rJSlU2D1PW1OdL1vhBXS0QzZ3Fo.jpg", - "vote_average": 5.046, - "vote_count": 14, - "width": 701 - }, - { - "aspect_ratio": 0.711, - "height": 2048, - "iso_639_1": "es", - "file_path": "/yD3BxGuwyz069BkvKOZiSR9wSoT.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1456 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ay8mAMdxp68GkKEiFwisAWbI6Z0.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4P7hlYJLC9ihgzlTbpT3cLZeSJN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/nJnZ9hIPhL8DvM6FrFqCrkaAFVZ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/tylt5yPcH4Zr0vTy228pIssMNLU.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5xX3nEVZGOKNO42gy4CPMS2wu8w.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/b7Jx4fURzl2ayRrA9Adp2EGnx9t.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/lF3ViyfgJ8VEwQSlqPhuhm6WW43.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2232, - "iso_639_1": null, - "file_path": "/zikL5JKRNQ5RBzK9fQhIvCRfWU5.jpg", - "vote_average": 4.992, - "vote_count": 24, - "width": 1488 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ded7kzZTU8BxzmZCyIpFqmyT94y.jpg", - "vote_average": 4.982, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/bdcA7UoGvCWwnLzktgsJF8ce8h4.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/4xti5Jdz6J4GAdLnXzViLx2NBLO.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mA9Lv93A4rcu0SA4o9WeKswCb0y.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/6swp38zlcePQeBQrAckxpyP3l29.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ax3u1jdiVYTa616uMowrzKovVA2.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "cs", - "file_path": "/5ycqqgFhAMl7d3qhbjMIIx0H1DR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/sO3V9AgFsdo9jzf8th4HQiOjGJA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/fd8iqSzv6BvqDJEWPTEv4KPOhjZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "it", - "file_path": "/2aBRoCiosgTx7WTYL8ugy1XfF7C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/8CH2Dg9uOPbaYl2oKXzXBxWAMsj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/cAHWYDbnJft0UnEjoYlf8l1LikJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5G8qzAUOISUzGqCSvs8lmBIeELm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sdwYdMmoKRe3pukvUpIyVOwLnRL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/hcnsA8repickjQR8EvAOCVA3sNi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/akDU3Q0LJQSTNtwGa2jnmMVuPUz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rC3I4hN4ivnIBbbgPsvqOYXRjXc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/4iguMlJLiX9eqSMDqfJDDLghLtf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/aPcqDu1Bqjhfiy5uqTGoEmjd8f7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/636MXwpfRmoFsZDSLxO9Mnq256r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/77jgvpAPIuMx1Y0XnEmsaq5o6x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/gT22yY2qlZg3CoUfErOXjen2DhM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/qcEWthk9pUW9MrjEgfoKYGmfRS9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sxgRBladnceoHUu4kVy9M5gT90W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/mzeg9HTgdLWKlvgLohox3vzHRGP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/g07qWDHcs7SozvJ5BRwggJRB5I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/g9gAoESv1VUtfZYCAtMLtYZFTzJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/66JhCovLuFUO2PqcP20oWLopEvr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rLxorivq7xfHPf6xvbcwA5modO2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/o3DwfyDPEPfNl5X7e85Ftf5Cm3f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/2mMsr04cQWXA7rZ0Q4WVJtYxLsW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/odzl9CE5LHd9Jlw96yq5iAPUXCS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/3Gx1Am8OdiniUO1kCcI7GkVrHzF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ddxJ1kxe01kAOhv0B1cEBqYvnx0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/2kmV8pHucpUCfbAx9wowzqYNH9a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2835, - "iso_639_1": "nl", - "file_path": "/tnS9DqsJvFjmg4FK4R2LghvOhs5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1889 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "et", - "file_path": "/vNPKI1g96KXq2hXSDjYX1fwmA5D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.695, - "height": 1280, - "iso_639_1": "ca", - "file_path": "/1HI9kQtJb0fKLMb9O58PUQG6m9v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 890 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/lWhSvG5pP8WWRHLNKn9LWe3liDX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/pp5mwpyxLEkbxFTYBTTUKftbGXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/zHRB5LqoclGFcQIqbmkv2gGP1Sx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/76avZo6SEdp349NHf5VfdeELMbK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/ltUhym1CMM8dr2HazAk9NfOHpkg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/3CuX6jI9n5U4EcxBUJnZgCNLhlU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/nITqRQt6tAFU6qFKgVL6FZpKhfK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/eov9qaFu3j0FyyQ9GiWBzWxg52b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/znxLaP8Y21cCJqtO8saymfy8SuK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/oZeTCFSGqbC8qb1JDSxDwcmWEYE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/zOPdQA5Y1dTHyMIyOnbpZhti020.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/pmpJXyomxCe1Z68SNv5l7ES6Pvt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/inW08HWTs0b1agdwWS2q5b6oPxP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/dGXaLrCqSMEeuFpWIme1LO4KMuq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5fFKIwMKkFPVCsv4pIUbQCOQbyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/bFZzSKgLwcXtjplTmaCHSiiSXHn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/rMP5Xog78D4So9Ow8GbgciPdGVg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/ynamz3rjrRRX4w7vPKNeYrblyX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/wgIGLl2qpoIqMblAgTQUGOrcZhH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/u5PKCUfLUqaUZT0Hy6H0E9FBaoG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "cs", - "file_path": "/uWnH64nLzpnj9th01Y5DotsuBFv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/rwbqjpX6sVm5z9wtKOFZKK6FiLY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/rTZQo9vkkg1mtEWw3pFhi250gV7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/z7XoxuUTNu09LVEr6sOUHTLf0Ds.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "id", - "file_path": "/yBvoDlzpKx9HRk2Pcp8gc0E6SYP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/jpnF54Kg7aM1wuxBFMhSADxjcmx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ar", - "file_path": "/zKIbj1kOdy601CCg4ryJ4JJGKUP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.737, - "height": 2000, - "iso_639_1": "th", - "file_path": "/uID7Xtl5vrE50oVGj232ArWY4mZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1474 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/zqv7ykKu5tuyOhkktu09xi6wmGR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2039, - "iso_639_1": "th", - "file_path": "/uqDxKjfX1gSkFjADlA45fuK1acv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1359 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "lo", - "file_path": "/gd6prTz0phQcrzUyC6adtLvqRKx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ka", - "file_path": "/eLpnP5Acz3PRDrWpRN8CGcyatZC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/kyzWUqsubPBsR10dRrflX6pQPyu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/4NMVq4HznouTsmHe6O7oxl0Avcy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/zOGrLr4qmHRBC3WwwaIEc569hSv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1897, - "iso_639_1": "zh", - "file_path": "/cczGSO58007NX2l93uXjPQRGWB9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/22fAimvj398HaUQSN3O3C5gWuD9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/v4Sg2nuYv0SluwWH0D1renYhl0s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": null, - "file_path": "/yLutzXq0YjQY3eqDCNLyIYh1E7A.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/xI4SiRgwSuhZG5McnGITRPJz8w.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/neWmzIPgz5s1htN80RdbS2frl04.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/eZjPTTypwSUMmc8INVt3yppxC1y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1556, - "iso_639_1": "ja", - "file_path": "/iPDYdgfC1kMxXELko911PfeGgHV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1100 - }, - { - "aspect_ratio": 0.7, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/gmuVrsplDBmco1kPjpOAUo6XXvO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1008 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/iY9QST74YDtTVoqImeapeKvHLCP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/dPSp7MwNjUb9eLLEA4ZmXoZU9D7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "en", - "file_path": "/fOzZ7ZUSsoJgkSPSz2K4fktE35S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/52j5lINUlgIXxREoaBnQqPMOFjZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2814, - "iso_639_1": "en", - "file_path": "/f0hluxIlcjT89USPqvNwW1Vvm4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6ADAWKlv0dkHkIxpHmleKu7kgcs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/jRI62iDOvEp8uYvLZ4PwvWKlJm8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7tbYfTvtLzZsYSLOr30MqYgmkqC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kDS5rI0Yu4O6mJbxuaHGwI66o4q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/wJxV0QhGPPR80oBoWo2r7fBAM4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/hwCqZbMZN68WqNbBOOgYrSAIaP2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/g5bd2NXpumZLrOFCnfDc7T0eGA4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/nc0mydl3ojfUMZwD6fDLmhhTskb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oWkEvQB8gYNG9shGNK2kQLtDxcN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/ol1aHnf6W8VMn14UGj8RiruEe83.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/Yoa1n7joh9qb6GYhZwfbrqN11v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/8O6fRJ1VVlmHL1RCt9thoDCe5Ao.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/6oqyVaxMiIrcRCxtalYxU8P9QZB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3o4ZdtJEDlPdMt8u5cGvrfZdJNH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kaewGrp2IldPjNhR3M3ObgbFVhC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1038, - "iso_639_1": "sk", - "file_path": "/6OVpQepx2U81fULv6tF3dAcxWEw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 692 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "sk", - "file_path": "/j5ikuMjJR31TkQNTNlqoTMPHbiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/e1d2VgxzV3yakTwIthIdRpvTUi5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "lt", - "file_path": "/yRvEudSQZF59fX9fpX40H4pVKSJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 675 - }, - { - "aspect_ratio": 0.7, - "height": 1143, - "iso_639_1": "lv", - "file_path": "/xeJLU7ttAj6vwbVV9rEyzYC7GRb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/seifNEAVjmwuin4gQl4C4aMv4XA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2IPqw0r84tBfgPDD6GWuIGl36Hl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/385687.json b/examples/view-transitions/src/content/movies/385687.json deleted file mode 100644 index 4479593389d0..000000000000 --- a/examples/view-transitions/src/content/movies/385687.json +++ /dev/null @@ -1,6835 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "belongs_to_collection": { - "id": 9485, - "name": "The Fast and the Furious Collection", - "poster_path": "/zQdytnqfsWKJlqazqfMBL2L7aql.jpg", - "backdrop_path": "/z5A5W3WYJc3UVEWljSGwdjDgQ0j.jpg" - }, - "budget": 340000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 80, "name": "Crime" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://fastxmovie.com", - "id": 385687, - "imdb_id": "tt5433140", - "original_language": "en", - "original_title": "Fast X", - "overview": "Over many missions and against impossible odds, Dom Toretto and his family have outsmarted, out-nerved and outdriven every foe in their path. Now, they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge, and who is determined to shatter this family and destroy everything—and everyone—that Dom loves, forever.", - "popularity": 1973.052, - "poster_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "production_companies": [ - { - "id": 33, - "logo_path": "/8lvHyhjr8oUKOOy2dKXoALWKdp0.png", - "name": "Universal Pictures", - "origin_country": "US" - }, - { - "id": 333, - "logo_path": "/5xUJfzPZ8jWJUDzYtIeuPO4qPIa.png", - "name": "Original Film", - "origin_country": "US" - }, - { - "id": 1225, - "logo_path": "/rIxhJMR7oK8b2fMakmTfRLY2TZv.png", - "name": "One Race", - "origin_country": "US" - }, - { - "id": 34530, - "logo_path": null, - "name": "Perfect Storm Entertainment", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-05-17", - "revenue": 704709660, - "runtime": 142, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "The end of the road begins.", - "title": "Fast X", - "video": false, - "vote_average": 7.275, - "vote_count": 3753, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 12835, - "known_for_department": "Acting", - "name": "Vin Diesel", - "original_name": "Vin Diesel", - "popularity": 48.36, - "profile_path": "/nZdVry7lnUkE24PnXakok9okvL4.jpg", - "cast_id": 0, - "character": "Dominic Toretto", - "credit_id": "56d8c1e0c3a3681e3601fdc6", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 17647, - "known_for_department": "Acting", - "name": "Michelle Rodriguez", - "original_name": "Michelle Rodriguez", - "popularity": 16.199, - "profile_path": "/xSvkVrLz6xas1mCeOR9i4QtmhnQ.jpg", - "cast_id": 33, - "character": "Letty", - "credit_id": "6107f6a1ee43e80027c7bea1", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 8169, - "known_for_department": "Acting", - "name": "Tyrese Gibson", - "original_name": "Tyrese Gibson", - "popularity": 28.158, - "profile_path": "/1K315wBQBvDBuZMlzoozuGsqFXZ.jpg", - "cast_id": 35, - "character": "Roman", - "credit_id": "6107f6d61c635b003010d62b", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 8171, - "known_for_department": "Acting", - "name": "Ludacris", - "original_name": "Ludacris", - "popularity": 10.184, - "profile_path": "/erkJijujhe48vhJ8iCEtVpNEeVn.jpg", - "cast_id": 36, - "character": "Tej", - "credit_id": "6107f6ec8d22fc004713585b", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 70, - "character": "Jakob Toretto", - "credit_id": "62991471a44d095275e980c1", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1251069, - "known_for_department": "Acting", - "name": "Nathalie Emmanuel", - "original_name": "Nathalie Emmanuel", - "popularity": 22.476, - "profile_path": "/koSwmmonFJiZDfwmZgdVA7I1aR.jpg", - "cast_id": 37, - "character": "Ramsey", - "credit_id": "6107f70e17c443004690f509", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 22123, - "known_for_department": "Acting", - "name": "Jordana Brewster", - "original_name": "Jordana Brewster", - "popularity": 28.332, - "profile_path": "/8VzFsSfT7NnMGyH5JQBQdTxDHcO.jpg", - "cast_id": 34, - "character": "Mia Toretto", - "credit_id": "6107f6c08d22fc00300eee15", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 61697, - "known_for_department": "Acting", - "name": "Sung Kang", - "original_name": "Sung Kang", - "popularity": 32.546, - "profile_path": "/jCrjAt7L1SO4TOC0O6Nr7ZZU8vS.jpg", - "cast_id": 38, - "character": "Han", - "credit_id": "6107f7267ad08c005e578d66", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 117642, - "known_for_department": "Acting", - "name": "Jason Momoa", - "original_name": "Jason Momoa", - "popularity": 55.838, - "profile_path": "/6dEFBpZH8C8OijsynkSajQT99Pb.jpg", - "cast_id": 56, - "character": "Dante", - "credit_id": "61f42773a6fdaa001c92e6e4", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 928572, - "known_for_department": "Acting", - "name": "Scott Eastwood", - "original_name": "Scott Eastwood", - "popularity": 24.625, - "profile_path": "/2TofqgDl7ZlrAairMKKOSPITzka.jpg", - "cast_id": 64, - "character": "Little Nobody", - "credit_id": "6286770c6d9fe85497bfb9d1", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1784612, - "known_for_department": "Acting", - "name": "Daniela Melchior", - "original_name": "Daniela Melchior", - "popularity": 18.937, - "profile_path": "/as7JfOagvDzhINDdA9Lkrp98UnJ.jpg", - "cast_id": 57, - "character": "Isabel", - "credit_id": "6238f9898ac3d0004430ba9f", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 64295, - "known_for_department": "Acting", - "name": "Alan Ritchson", - "original_name": "Alan Ritchson", - "popularity": 32.256, - "profile_path": "/iV4XpUEsvnncbRv1SJKasRY05cK.jpg", - "cast_id": 63, - "character": "Aimes", - "credit_id": "627e8b59c92c5d0068aaef0c", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 15735, - "known_for_department": "Acting", - "name": "Helen Mirren", - "original_name": "Helen Mirren", - "popularity": 43.912, - "profile_path": "/eY26gqv9EGunId7kp32pLueXvz4.jpg", - "cast_id": 77, - "character": "Queenie", - "credit_id": "6326a2f943250f007b7e09ae", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 60073, - "known_for_department": "Acting", - "name": "Brie Larson", - "original_name": "Brie Larson", - "popularity": 21.446, - "profile_path": "/iqZ5uKJWbwSITCK4CqdlUHZTnXD.jpg", - "cast_id": 58, - "character": "Tess", - "credit_id": "625258b0894ed600abc4e21b", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "cast_id": 74, - "character": "Shaw", - "credit_id": "62ab7a9435a61e0062082a1b", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 6885, - "known_for_department": "Acting", - "name": "Charlize Theron", - "original_name": "Charlize Theron", - "popularity": 44.864, - "profile_path": "/gd7ShD0yt4bsR2STeQ19KQ6hvXL.jpg", - "cast_id": 49, - "character": "Cipher", - "credit_id": "61367fbbef9d72002bee076d", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 13299, - "known_for_department": "Acting", - "name": "Rita Moreno", - "original_name": "Rita Moreno", - "popularity": 7.851, - "profile_path": "/zB0M77jr7tmsmWHEr2bWO2Xq66L.jpg", - "cast_id": 69, - "character": "Abuelita", - "credit_id": "628ce4ee1a32483b630dbee0", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 22462, - "known_for_department": "Acting", - "name": "Joaquim de Almeida", - "original_name": "Joaquim de Almeida", - "popularity": 15.177, - "profile_path": "/a4V9gZydtcObuiuiYlPU1grNmPL.jpg", - "cast_id": 113, - "character": "Hernan Reyes", - "credit_id": "6400bc4e7a4ee700f0fa7144", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 2984075, - "known_for_department": "Acting", - "name": "Leo A. Perry", - "original_name": "Leo A. Perry", - "popularity": 1.417, - "profile_path": "/22yhaD35P2AzJ8nA7EMbuIyyHEw.jpg", - "cast_id": 81, - "character": "Little Brian", - "credit_id": "63d945729512e1008f378bda", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 37149, - "known_for_department": "Acting", - "name": "Luis Da Silva Jr.", - "original_name": "Luis Da Silva Jr.", - "popularity": 5.958, - "profile_path": "/ajavEvDuNcinuw3BJ80OE0sEU5Q.jpg", - "cast_id": 79, - "character": "Diogo", - "credit_id": "638663455ed8e900b89eb2b1", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1678751, - "known_for_department": "Acting", - "name": "Jaz Hutchins", - "original_name": "Jaz Hutchins", - "popularity": 0.753, - "profile_path": "/nvXgXVGOaHjE3HGE53FJQ4jvdww.jpg", - "cast_id": 139, - "character": "Agency Tech", - "credit_id": "646aba5f57530e078753ead7", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 1897706, - "known_for_department": "Acting", - "name": "Luka Hays", - "original_name": "Luka Hays", - "popularity": 1.03, - "profile_path": "/JymMSMDfVVv2Azoeu8piiqRr1f.jpg", - "cast_id": 140, - "character": "Cipher Tech", - "credit_id": "646aba92a5046e018941f2ba", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 4074147, - "known_for_department": "Acting", - "name": "Alexander Capon", - "original_name": "Alexander Capon", - "popularity": 0.6, - "profile_path": "/7DUvcjDq3ClcMIQgR1R5lVPdAge.jpg", - "cast_id": 141, - "character": "Cipher Tech", - "credit_id": "646abab5c3514c00e5dddabb", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 1427948, - "known_for_department": "Acting", - "name": "Pete Davidson", - "original_name": "Pete Davidson", - "popularity": 18.103, - "profile_path": "/mSlLMk45CUgMGT1o7Pkh9zYaLxK.jpg", - "cast_id": 132, - "character": "Bowie", - "credit_id": "646474d29f37b0017d5814b3", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 4074148, - "known_for_department": "Acting", - "name": "Shadrach Agozino", - "original_name": "Shadrach Agozino", - "popularity": 0.608, - "profile_path": "/w85Lgj4583MQNeZO7VXT1bV5wEA.jpg", - "cast_id": 142, - "character": "Bartender", - "credit_id": "646abae1d1857201802d7101", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 2282001, - "known_for_department": "Acting", - "name": "Ludmilla", - "original_name": "Ludmilla", - "popularity": 1.827, - "profile_path": "/hbEkg827B38ieLV8ZQZf0f65KET.jpg", - "cast_id": 115, - "character": "Starter", - "credit_id": "6446ce476dc507051fd4b0b9", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 508582, - "known_for_department": "Acting", - "name": "Miraj Grbić", - "original_name": "Miraj Grbić", - "popularity": 1.903, - "profile_path": "/ptCynXMskQ8CETCvg6ZjSwcMyVI.jpg", - "cast_id": 270, - "character": "Russian Bag Guy", - "credit_id": "64830e07d2b209014e08312b", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 3184164, - "known_for_department": "Acting", - "name": "Meadow Walker Thornton-Allan", - "original_name": "Meadow Walker Thornton-Allan", - "popularity": 0.606, - "profile_path": "/54L3RBjBIIxjfLOYEOadhZlftmg.jpg", - "cast_id": 116, - "character": "Flight Attendant", - "credit_id": "6448a7782fdec60573a0cb36", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 124304, - "known_for_department": "Acting", - "name": "Michael Irby", - "original_name": "Michael Irby", - "popularity": 6.927, - "profile_path": "/9cX8pKujyAlOyqGSAgvKNdA3qRj.jpg", - "cast_id": 269, - "character": "Zizi (archive footage)", - "credit_id": "6483066fbf31f250570578fc", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 4074151, - "known_for_department": "Acting", - "name": "Shahir Figueira", - "original_name": "Shahir Figueira", - "popularity": 0.6, - "profile_path": "/bUOSHf6iGS8fzfXtTK7Ve8KvJZR.jpg", - "cast_id": 145, - "character": "Officer", - "credit_id": "646abbc82bcf67011bf3ec53", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 2545367, - "known_for_department": "Acting", - "name": "Ben-Hur Santos", - "original_name": "Ben-Hur Santos", - "popularity": 1.058, - "profile_path": "/jjVqqt2e2b4TgBnrjHwYkKpvSBN.jpg", - "cast_id": 146, - "character": "Lead Cartel Thug", - "credit_id": "646abbdb57530e0788ae51d9", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 123846, - "known_for_department": "Acting", - "name": "Debby Ryan", - "original_name": "Debby Ryan", - "popularity": 28.527, - "profile_path": "/hYMnrAO1fZx9tPmIM8xajliVT1N.jpg", - "cast_id": 135, - "character": "Debby Ryan", - "credit_id": "64668e1833a3760158d89e32", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 2138286, - "known_for_department": "Acting", - "name": "Josh Dun", - "original_name": "Josh Dun", - "popularity": 1.951, - "profile_path": "/7xT72GgPrkllGjAF4vtyj4J65d1.jpg", - "cast_id": 136, - "character": "Josh Dun", - "credit_id": "64668e252bcf67011bf209dc", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 18918, - "known_for_department": "Acting", - "name": "Dwayne Johnson", - "original_name": "Dwayne Johnson", - "popularity": 27.175, - "profile_path": "/cgoy7t5Ve075naBPcewZrc08qGw.jpg", - "cast_id": 117, - "character": "Luke Hobbs (uncredited)", - "credit_id": "645eb09eb234b900fe037c40", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 90633, - "known_for_department": "Acting", - "name": "Gal Gadot", - "original_name": "Gal Gadot", - "popularity": 57.901, - "profile_path": "/qCJB1ACi5VjtY4ypXuv3hjAvbSu.jpg", - "cast_id": 114, - "character": "Gisele Yashar (uncredited)", - "credit_id": "6400bc647a4ee700aaad91a5", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 8167, - "known_for_department": "Acting", - "name": "Paul Walker", - "original_name": "Paul Walker", - "popularity": 19.365, - "profile_path": "/q2PLqKHYCs35HR7QybaNPH3JT96.jpg", - "cast_id": 344, - "character": "Brian O'Conner (archive footage) (uncredited)", - "credit_id": "64d61d73f14dad00e3b7f999", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 4211960, - "known_for_department": "Acting", - "name": "Ali Baddou", - "original_name": "Ali Baddou", - "popularity": 0.828, - "profile_path": "/qfBGks8ynZ1lqTcAEDMNhkFU2IS.jpg", - "cast_id": 345, - "character": "Ali Baddou (uncredited)", - "credit_id": "64d85bd7371097011c4fea6e", - "order": 36 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 1302, - "known_for_department": "Production", - "name": "Susie Figgis", - "original_name": "Susie Figgis", - "popularity": 2.374, - "profile_path": "/yW6eiXF0CEXCHpqxqvEUZmq2mUq.jpg", - "credit_id": "63fbc8cc344a8e007cba54a7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 2519, - "known_for_department": "Costume & Make-Up", - "name": "Sanja Milković Hays", - "original_name": "Sanja Milković Hays", - "popularity": 2.732, - "profile_path": null, - "credit_id": "626872999f37b00066e55b94", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 7239, - "known_for_department": "Sound", - "name": "Peter Brown", - "original_name": "Peter Brown", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64840842e375c000ff48294b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 7239, - "known_for_department": "Sound", - "name": "Peter Brown", - "original_name": "Peter Brown", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64840856d2b209014e08b50f", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 10570, - "known_for_department": "Production", - "name": "Joseph M. Caracciolo Jr.", - "original_name": "Joseph M. Caracciolo Jr.", - "popularity": 2.736, - "profile_path": null, - "credit_id": "63e6a620a3d027009f3b7072", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 10570, - "known_for_department": "Production", - "name": "Joseph M. Caracciolo Jr.", - "original_name": "Joseph M. Caracciolo Jr.", - "popularity": 2.736, - "profile_path": null, - "credit_id": "64836539c9dbf9013a0601aa", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 6041, - "known_for_department": "Sound", - "name": "Brian Tyler", - "original_name": "Brian Tyler", - "popularity": 6.194, - "profile_path": "/wLPLAOcEgA9vfNuXSX1QI1ajguU.jpg", - "credit_id": "63ed29a6813cb6007942d32a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 8162, - "known_for_department": "Writing", - "name": "Gary Scott Thompson", - "original_name": "Gary Scott Thompson", - "popularity": 7.605, - "profile_path": "/e2dMfqFvRsOXgWZ1VToYLmos17y.jpg", - "credit_id": "584340739251416764001ee7", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 11874, - "known_for_department": "Production", - "name": "Neal H. Moritz", - "original_name": "Neal H. Moritz", - "popularity": 3.722, - "profile_path": "/pPvK5xZTp1PymWL5OGc7dtqvx9Q.jpg", - "credit_id": "60d4e2233c887d0076f14538", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 13162, - "known_for_department": "Editing", - "name": "Dov Samuel", - "original_name": "Dov Samuel", - "popularity": 0.638, - "profile_path": null, - "credit_id": "648337d3c9dbf900e3fef534", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 12835, - "known_for_department": "Acting", - "name": "Vin Diesel", - "original_name": "Vin Diesel", - "popularity": 48.36, - "profile_path": "/nZdVry7lnUkE24PnXakok9okvL4.jpg", - "credit_id": "613ee5ca149565006452a1d3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 15227, - "known_for_department": "Crew", - "name": "Sharon Smith Holley", - "original_name": "Sharon Smith Holley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833828bf31f25055a024a9", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 15355, - "known_for_department": "Crew", - "name": "Daniel Acon", - "original_name": "Daniel Acon", - "popularity": 1.113, - "profile_path": null, - "credit_id": "646bc5007b7b4d00e4adfe1a", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 15911, - "known_for_department": "Crew", - "name": "Franco Maria Salamon", - "original_name": "Franco Maria Salamon", - "popularity": 1.289, - "profile_path": null, - "credit_id": "646bbaf233a3760175d3eadd", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 18189, - "known_for_department": "Writing", - "name": "Mark Bomback", - "original_name": "Mark Bomback", - "popularity": 2.123, - "profile_path": "/sasLL2smKWuZUjYq7d9O2QQrN0G.jpg", - "credit_id": "63e6a653d29bdd008c9dc80f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 17649, - "known_for_department": "Camera", - "name": "Alexander Witt", - "original_name": "Alexander Witt", - "popularity": 0.6, - "profile_path": "/hO1QZ7P3SRNom3Ap4YZPsgESUcx.jpg", - "credit_id": "6483658ee375c000c5270353", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 17649, - "known_for_department": "Camera", - "name": "Alexander Witt", - "original_name": "Alexander Witt", - "popularity": 0.6, - "profile_path": "/hO1QZ7P3SRNom3Ap4YZPsgESUcx.jpg", - "credit_id": "646c11d9a5046e0189429c3c", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 18865, - "known_for_department": "Directing", - "name": "Louis Leterrier", - "original_name": "Louis Leterrier", - "popularity": 8.233, - "profile_path": "/guzsaiGBEy1qi3Ffh2uPcqaURYN.jpg", - "credit_id": "62700baac56d2d6f7690125e", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 20292, - "known_for_department": "Art", - "name": "Jan Roelfs", - "original_name": "Jan Roelfs", - "popularity": 1.577, - "profile_path": null, - "credit_id": "62a307cb35d1bc5106b7103b", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 24969, - "known_for_department": "Acting", - "name": "Henry Kingi", - "original_name": "Henry Kingi", - "popularity": 4.603, - "profile_path": "/cThdKH6fn4faqei4DC2H3BQNkgI.jpg", - "credit_id": "647530241bf2660442a72065", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 29400, - "known_for_department": "Production", - "name": "Jeff Kirschenbaum", - "original_name": "Jeff Kirschenbaum", - "popularity": 4.291, - "profile_path": "/mt7lkSY2tvSpUQZoXa1ZW9UfvSc.jpg", - "credit_id": "62cb7b2746aed4087e8706dc", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 29474, - "known_for_department": "Art", - "name": "Simon McGuire", - "original_name": "Simon McGuire", - "popularity": 0.694, - "profile_path": null, - "credit_id": "6461b54de3fa2f00e403c89c", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 58191, - "known_for_department": "Writing", - "name": "Chris Morgan", - "original_name": "Chris Morgan", - "popularity": 9.797, - "profile_path": "/ksZGCknL4lQceoDpHzX0LH5AFQP.jpg", - "credit_id": "63e6a639c2ff3d007c3c24a5", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 57029, - "known_for_department": "Production", - "name": "Amanda Lewis", - "original_name": "Amanda Lewis", - "popularity": 2.59, - "profile_path": null, - "credit_id": "63e6a647d29bdd00845fc101", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "63fbc89484f249007beffed5", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "6268725fc613ce00aa0fed40", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58189, - "known_for_department": "Directing", - "name": "Justin Lin", - "original_name": "Justin Lin", - "popularity": 8.928, - "profile_path": "/w0ryazdt8iS3GBrjXfv0FIwvUGY.jpg", - "credit_id": "646abd9333a376013b3ea59e", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 58192, - "known_for_department": "Camera", - "name": "Stephen F. Windon", - "original_name": "Stephen F. Windon", - "popularity": 0.768, - "profile_path": null, - "credit_id": "5f8f7b9efed59700394c199b", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 58193, - "known_for_department": "Editing", - "name": "Kelly Matsumoto", - "original_name": "Kelly Matsumoto", - "popularity": 1.273, - "profile_path": null, - "credit_id": "64631e4fa67254014367fd0e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 67695, - "known_for_department": "Sound", - "name": "Paul Rabjohns", - "original_name": "Paul Rabjohns", - "popularity": 0.663, - "profile_path": null, - "credit_id": "6483f782e375c0011c7f8bf5", - "department": "Sound", - "job": "Supervising Music Editor" - }, - { - "adult": false, - "gender": 1, - "id": 90635, - "known_for_department": "Production", - "name": "Samantha Vincent", - "original_name": "Samantha Vincent", - "popularity": 9.04, - "profile_path": null, - "credit_id": "62cb7b39595a5612b8a43540", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 75636, - "known_for_department": "Crew", - "name": "Jalil Jay Lynch", - "original_name": "Jalil Jay Lynch", - "popularity": 2.341, - "profile_path": "/lpU7fTd5MTv4nXcmmr1WdPcKnVN.jpg", - "credit_id": "648367f4e375c000ff47da48", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 30737, - "known_for_department": "Acting", - "name": "Bolek Polívka", - "original_name": "Bolek Polívka", - "popularity": 2.228, - "profile_path": "/gQ40joDui2BoDrMplvGERa1WVQC.jpg", - "credit_id": "646bbaa07b7b4d0172d5709c", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 83090, - "known_for_department": "Sound", - "name": "Todd Toon", - "original_name": "Todd Toon", - "popularity": 0.973, - "profile_path": "/4GUXef80FGLGhSyXUlhkVrbue8g.jpg", - "credit_id": "6483f725d2b209010c18c791", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 83093, - "known_for_department": "Crew", - "name": "Jimmy N. Roberts", - "original_name": "Jimmy N. Roberts", - "popularity": 0.902, - "profile_path": "/voJPkN18NYreFrwhhhDKC2hG83r.jpg", - "credit_id": "64cfb9484d679100ff682907", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 112682, - "known_for_department": "Crew", - "name": "Spiro Razatos", - "original_name": "Spiro Razatos", - "popularity": 9.853, - "profile_path": "/tkJnvTnKa0t5HLi7dTKcXDrooFU.jpg", - "credit_id": "6483042a99259c00e2f41874", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 112682, - "known_for_department": "Crew", - "name": "Spiro Razatos", - "original_name": "Spiro Razatos", - "popularity": 9.853, - "profile_path": "/tkJnvTnKa0t5HLi7dTKcXDrooFU.jpg", - "credit_id": "6468550833a376013b3dc202", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 119183, - "known_for_department": "Crew", - "name": "Giorgio Antonini", - "original_name": "Giorgio Antonini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb8f554a0980155e2eaa5", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 122274, - "known_for_department": "Visual Effects", - "name": "Peter Chiang", - "original_name": "Peter Chiang", - "popularity": 1.416, - "profile_path": null, - "credit_id": "63fbc9126aa8e000f0b70ab7", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 122464, - "known_for_department": "Editing", - "name": "David Kern", - "original_name": "David Kern", - "popularity": 0.836, - "profile_path": null, - "credit_id": "648300ede272600128791774", - "department": "Editing", - "job": "Additional Editor" - }, - { - "adult": false, - "gender": 2, - "id": 154668, - "known_for_department": "Acting", - "name": "Lee Spencer", - "original_name": "Lee Spencer", - "popularity": 2.013, - "profile_path": "/ohh0u2bN7YHtXQGMTN5JBrMCrpI.jpg", - "credit_id": "64836665e2726000afc1f5f2", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 221636, - "known_for_department": "Acting", - "name": "Patrick Vo", - "original_name": "Patrick Vo", - "popularity": 0.705, - "profile_path": "/ui160lW3FLPt9GVeaerNjOqcvMf.jpg", - "credit_id": "6466735d2bcf6700fe5f1e47", - "department": "Crew", - "job": "Fight Choreographer" - }, - { - "adult": false, - "gender": 2, - "id": 223238, - "known_for_department": "Visual Effects", - "name": "Hal Couzens", - "original_name": "Hal Couzens", - "popularity": 0.73, - "profile_path": null, - "credit_id": "646bc61c7b7b4d0155f99149", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 228881, - "known_for_department": "Crew", - "name": "Olivier Schneider", - "original_name": "Olivier Schneider", - "popularity": 5.295, - "profile_path": "/i4pmJRPM1Qghf3t2oM9ZbhnKWn5.jpg", - "credit_id": "648365d7d2b20900ad3bb5cf", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 228881, - "known_for_department": "Crew", - "name": "Olivier Schneider", - "original_name": "Olivier Schneider", - "popularity": 5.295, - "profile_path": "/i4pmJRPM1Qghf3t2oM9ZbhnKWn5.jpg", - "credit_id": "646bbca57b7b4d0138b0352e", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 563403, - "known_for_department": "Crew", - "name": "Jack Anderson", - "original_name": "Jack Anderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc510a5046e00e5b76f5e", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 937234, - "known_for_department": "Writing", - "name": "Dan Mazeau", - "original_name": "Dan Mazeau", - "popularity": 2.112, - "profile_path": null, - "credit_id": "63fbc89c0c125500da1e524a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 937234, - "known_for_department": "Writing", - "name": "Dan Mazeau", - "original_name": "Dan Mazeau", - "popularity": 2.112, - "profile_path": null, - "credit_id": "646abd8c2bcf670172b1fe60", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 968316, - "known_for_department": "Crew", - "name": "Andy Gill", - "original_name": "Andy Gill", - "popularity": 1.73, - "profile_path": "/uphgScM95clUsV8Rb2nwdiqCndX.jpg", - "credit_id": "646674a633a376013b3cef95", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1014026, - "known_for_department": "Writing", - "name": "Zach Dean", - "original_name": "Zach Dean", - "popularity": 0.912, - "profile_path": "/hYmQIDnJZYiFigMXuUs3NSPKtAV.jpg", - "credit_id": "646abd992bcf6700e3bb54b8", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1157595, - "known_for_department": "Acting", - "name": "Nick McKinless", - "original_name": "Nick McKinless", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bba2f54a09800e410428f", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1203510, - "known_for_department": "Crew", - "name": "Maurizio Salvatori", - "original_name": "Maurizio Salvatori", - "popularity": 1.4, - "profile_path": null, - "credit_id": "646bbc1354a09800e4104309", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1204245, - "known_for_department": "Editing", - "name": "Dylan Highsmith", - "original_name": "Dylan Highsmith", - "popularity": 1.116, - "profile_path": null, - "credit_id": "64631e5ca6725400e3d2fd5c", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1230574, - "known_for_department": "Crew", - "name": "Peter Miles", - "original_name": "Peter Miles", - "popularity": 4.874, - "profile_path": "/2Cu56fQK90ZWMq46B0WYMkF5m3I.jpg", - "credit_id": "648365eebf31f2505f3dedc7", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 1301638, - "known_for_department": "Acting", - "name": "Lee Charles", - "original_name": "Lee Charles", - "popularity": 4.507, - "profile_path": "/hPcEeF8mG9PiOJmnduVjq9yH9jD.jpg", - "credit_id": "646bb94dc3514c2b0741b21c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1321750, - "known_for_department": "Crew", - "name": "Kurt D. Lott", - "original_name": "Kurt D. Lott", - "popularity": 2.379, - "profile_path": "/lPUdu9RkkSy6xLxKRbVMV3Ruh2W.jpg", - "credit_id": "646bb9f82bcf6700fe61a1c1", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1328758, - "known_for_department": "Sound", - "name": "Matthew Llewellyn", - "original_name": "Matthew Llewellyn", - "popularity": 1.411, - "profile_path": null, - "credit_id": "64830116bf31f25055a00b72", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1338230, - "known_for_department": "Visual Effects", - "name": "Meg Guidon", - "original_name": "Meg Guidon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6702bcf6700e3bbe3d5", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1338372, - "known_for_department": "Sound", - "name": "Dan O'Connell", - "original_name": "Dan O'Connell", - "popularity": 1.722, - "profile_path": "/4AjIlClDijH3iYgXygHEcVZtTzi.jpg", - "credit_id": "64830221e375c000ff47aee6", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1367493, - "known_for_department": "Sound", - "name": "John T. Cucci", - "original_name": "John T. Cucci", - "popularity": 3.165, - "profile_path": null, - "credit_id": "6483024e99259c00e2f4178f", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1367499, - "known_for_department": "Acting", - "name": "Troy Robinson", - "original_name": "Troy Robinson", - "popularity": 3.574, - "profile_path": "/eYnD3gE7Mjo26fQLuT0MSsVTMfq.jpg", - "credit_id": "646788a02bcf67011bf28fea", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1385516, - "known_for_department": "Costume & Make-Up", - "name": "Victoria Conte", - "original_name": "Victoria Conte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc4533a3760101fbf2a9", - "department": "Costume & Make-Up", - "job": "Wardrobe Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1390367, - "known_for_department": "Lighting", - "name": "Perry Evans", - "original_name": "Perry Evans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833c22e272600147b939a1", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 1390524, - "known_for_department": "Sound", - "name": "Jay Wilkinson", - "original_name": "Jay Wilkinson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6483017be375c000e24e8911", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 1, - "id": 1392908, - "known_for_department": "Visual Effects", - "name": "Karen M. Murphy", - "original_name": "Karen M. Murphy", - "popularity": 1.122, - "profile_path": null, - "credit_id": "646bc6cd33a3760175d3edcd", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1393883, - "known_for_department": "Camera", - "name": "Peter Mountain", - "original_name": "Peter Mountain", - "popularity": 1.474, - "profile_path": null, - "credit_id": "6483033e99259c00ff0dbeb1", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1394130, - "known_for_department": "Sound", - "name": "Frank A. Montaño", - "original_name": "Frank A. Montaño", - "popularity": 1.05, - "profile_path": null, - "credit_id": "646b5ebd2bcf67011bf45f4f", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1394131, - "known_for_department": "Sound", - "name": "Jon Taylor", - "original_name": "Jon Taylor", - "popularity": 1.55, - "profile_path": null, - "credit_id": "648300bcd2b209010c184b45", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1399865, - "known_for_department": "Visual Effects", - "name": "Chad Wiebe", - "original_name": "Chad Wiebe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc992e4b57600bd38ff57", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1408293, - "known_for_department": "Costume & Make-Up", - "name": "Linda D. Flowers", - "original_name": "Linda D. Flowers", - "popularity": 1.432, - "profile_path": null, - "credit_id": "6461b5076e0d72015c0f2eb2", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 1413453, - "known_for_department": "Sound", - "name": "Stephen P. Robinson", - "original_name": "Stephen P. Robinson", - "popularity": 1.429, - "profile_path": null, - "credit_id": "646bb8cdd18572016192d144", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1417685, - "known_for_department": "Crew", - "name": "Gregory J. Barnett", - "original_name": "Gregory J. Barnett", - "popularity": 1.905, - "profile_path": "/97Gns4ZXSHaVcpMwJSUjH3etjCx.jpg", - "credit_id": "646bb910a5046e00e5b76c56", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1418001, - "known_for_department": "Editing", - "name": "Ben Howdeshell", - "original_name": "Ben Howdeshell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833848c9dbf900e3fef569", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1426845, - "known_for_department": "Crew", - "name": "Aleksandar Pejic", - "original_name": "Aleksandar Pejic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc97684f249008db0beec", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1427849, - "known_for_department": "Directing", - "name": "Zoe Morgan", - "original_name": "Zoe Morgan", - "popularity": 1.056, - "profile_path": null, - "credit_id": "6482ffbebf31f250570575da", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1435703, - "known_for_department": "Sound", - "name": "Glynna Grimala", - "original_name": "Glynna Grimala", - "popularity": 0.631, - "profile_path": null, - "credit_id": "646bb8b1a5046e00e5b76c36", - "department": "Sound", - "job": "ADR Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1436199, - "known_for_department": "Crew", - "name": "Carol McConnaughey", - "original_name": "Carol McConnaughey", - "popularity": 1.105, - "profile_path": null, - "credit_id": "648364a1e375c00139bf88bb", - "department": "Crew", - "job": "Unit Publicist" - }, - { - "adult": false, - "gender": 0, - "id": 1437798, - "known_for_department": "Costume & Make-Up", - "name": "Roxy D'Alonzo", - "original_name": "Roxy D'Alonzo", - "popularity": 0.619, - "profile_path": null, - "credit_id": "63ddeb30ddd52d008482d8bd", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1439735, - "known_for_department": "Visual Effects", - "name": "Corbin Mehl", - "original_name": "Corbin Mehl", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648304fa99259c00e2f418d3", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1439747, - "known_for_department": "Costume & Make-Up", - "name": "Andrew Hunt", - "original_name": "Andrew Hunt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ddeb6262f3350084a6a119", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1439749, - "known_for_department": "Editing", - "name": "Laura Steiger", - "original_name": "Laura Steiger", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483051fbf31f25057057856", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1441365, - "known_for_department": "Camera", - "name": "Peter Wilke", - "original_name": "Peter Wilke", - "popularity": 1.562, - "profile_path": null, - "credit_id": "64833528c9dbf900ad4523a6", - "department": "Camera", - "job": "\"A\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1450955, - "known_for_department": "Production", - "name": "Lex Donovan", - "original_name": "Lex Donovan", - "popularity": 0.632, - "profile_path": null, - "credit_id": "64833660e375c000c526ed16", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1451649, - "known_for_department": "Sound", - "name": "Paul Drenning", - "original_name": "Paul Drenning", - "popularity": 0.729, - "profile_path": null, - "credit_id": "648301f6c9dbf900e3fedafc", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1460571, - "known_for_department": "Camera", - "name": "Jeremiah Kent", - "original_name": "Jeremiah Kent", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f501d2b209014e08a8ad", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 1470154, - "known_for_department": "Art", - "name": "Matthew Clark", - "original_name": "Matthew Clark", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6483344799259c011c3f8f57", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1531509, - "known_for_department": "Visual Effects", - "name": "Stanislas de Lesquen", - "original_name": "Stanislas de Lesquen", - "popularity": 0.609, - "profile_path": null, - "credit_id": "646bc62ba5046e012468f570", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1536539, - "known_for_department": "Costume & Make-Up", - "name": "Deborah Taylor", - "original_name": "Deborah Taylor", - "popularity": 1.4, - "profile_path": null, - "credit_id": "648336fec9dbf900c571027d", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1537508, - "known_for_department": "Camera", - "name": "Craig Grossmueller", - "original_name": "Craig Grossmueller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f516c9dbf900ad458244", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 1543196, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Fernandez", - "original_name": "Jacqueline Fernandez", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63ddeb25cd2046009d4e8eb5", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1543254, - "known_for_department": "Crew", - "name": "Peter Krumov", - "original_name": "Peter Krumov", - "popularity": 1.831, - "profile_path": null, - "credit_id": "646b5f1954a0980155e2c992", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 2, - "id": 1546028, - "known_for_department": "Art", - "name": "Andrew Palmer", - "original_name": "Andrew Palmer", - "popularity": 0.937, - "profile_path": null, - "credit_id": "6461b556a6725400e3d2361f", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1548455, - "known_for_department": "Sound", - "name": "Shane Hayes", - "original_name": "Shane Hayes", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6483f7ef99259c00accc5f2e", - "department": "Sound", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1548953, - "known_for_department": "Production", - "name": "Dan Clay", - "original_name": "Dan Clay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b521ef8b320155554c40", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1550186, - "known_for_department": "Art", - "name": "Benton Jew", - "original_name": "Benton Jew", - "popularity": 1.199, - "profile_path": "/wiYoRBYQ5IxoiZIDs3o3uEHDl3p.jpg", - "credit_id": "6483332ac9dbf9013a05ebd7", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1552475, - "known_for_department": "Camera", - "name": "Taylor Matheson", - "original_name": "Taylor Matheson", - "popularity": 1.003, - "profile_path": null, - "credit_id": "6483f4f1e2726000e8c0657a", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1553295, - "known_for_department": "Production", - "name": "David Cain", - "original_name": "David Cain", - "popularity": 2.622, - "profile_path": null, - "credit_id": "63e6a62fd29bdd00b2f99cf4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1553295, - "known_for_department": "Production", - "name": "David Cain", - "original_name": "David Cain", - "popularity": 2.622, - "profile_path": null, - "credit_id": "64836546bf31f25054b52c9a", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1581175, - "known_for_department": "Art", - "name": "James Doh", - "original_name": "James Doh", - "popularity": 0.634, - "profile_path": null, - "credit_id": "64833310bf31f25055a0226e", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1584868, - "known_for_department": "Art", - "name": "Chris Heap", - "original_name": "Chris Heap", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f0554a0980155e2c982", - "department": "Art", - "job": "Standby Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1636660, - "known_for_department": "Costume & Make-Up", - "name": "Jessica Pazdernik", - "original_name": "Jessica Pazdernik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ddeb4be55937008769ffde", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1669401, - "known_for_department": "Production", - "name": "Kirsty Kinnear", - "original_name": "Kirsty Kinnear", - "popularity": 4.826, - "profile_path": null, - "credit_id": "63fbc8c8344a8e00aa1be492", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1683365, - "known_for_department": "Art", - "name": "Josh Sheppard", - "original_name": "Josh Sheppard", - "popularity": 1.314, - "profile_path": null, - "credit_id": "648332e4bf31f2505f3dd9d9", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1685991, - "known_for_department": "Sound", - "name": "John Casali", - "original_name": "John Casali", - "popularity": 0.73, - "profile_path": null, - "credit_id": "6461b58aa6725401436733d9", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1685994, - "known_for_department": "Art", - "name": "Nick Pelham", - "original_name": "Nick Pelham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648332b8e375c00139bf72fc", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1711214, - "known_for_department": "Directing", - "name": "Vincent Lascoumes", - "original_name": "Vincent Lascoumes", - "popularity": 0.787, - "profile_path": null, - "credit_id": "646bbcd02bcf67011bf47ff4", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1725775, - "known_for_department": "Visual Effects", - "name": "Michael Grobe", - "original_name": "Michael Grobe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc95696e30b009fca3d3f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1789618, - "known_for_department": "Art", - "name": "Adonay Marin Conde", - "original_name": "Adonay Marin Conde", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbd0d33a37600e67bad84", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 1824262, - "known_for_department": "Camera", - "name": "Daniele Postiglione", - "original_name": "Daniele Postiglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc0454a09801386521cb", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 1829852, - "known_for_department": "Camera", - "name": "Steve Ellingworth", - "original_name": "Steve Ellingworth", - "popularity": 1.624, - "profile_path": null, - "credit_id": "64833c89d2b209010c1867bd", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 1, - "id": 1834185, - "known_for_department": "Crew", - "name": "Jade-Eleena Dregorius", - "original_name": "Jade-Eleena Dregorius", - "popularity": 0.722, - "profile_path": "/etgxJoL4HQ1PFRyC7i6dj7Rc22v.jpg", - "credit_id": "648367d899259c01392aa713", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1844654, - "known_for_department": "Art", - "name": "Anthony Liberatore", - "original_name": "Anthony Liberatore", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833282bf31f25054b51771", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1897684, - "known_for_department": "Acting", - "name": "Estelle Darnault", - "original_name": "Estelle Darnault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb97dc3514c2b0741b22e", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1946990, - "known_for_department": "Visual Effects", - "name": "Paul Jones", - "original_name": "Paul Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fbc94ee4b576009d1b382d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1962597, - "known_for_department": "Camera", - "name": "Carlo Postiglione", - "original_name": "Carlo Postiglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbbf7d1857201802df8e8", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1981994, - "known_for_department": "Visual Effects", - "name": "Mariluz Noto", - "original_name": "Mariluz Noto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6db2bcf6700e3bbe3ed", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2020341, - "known_for_department": "Visual Effects", - "name": "François Lambert", - "original_name": "François Lambert", - "popularity": 0.662, - "profile_path": null, - "credit_id": "63fbc97f57176f008544ad1f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2046906, - "known_for_department": "Camera", - "name": "Tulio Duenas", - "original_name": "Tulio Duenas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f536c9dbf9013a064e43", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2069440, - "known_for_department": "Crew", - "name": "Dave Kneath", - "original_name": "Dave Kneath", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc55fa5046e0189427869", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 2094554, - "known_for_department": "Camera", - "name": "Sean Kisch", - "original_name": "Sean Kisch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f542e375c0011c7f8abd", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 2095074, - "known_for_department": "Art", - "name": "Kathryn Pyle", - "original_name": "Kathryn Pyle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b56e6e0d72013dcc88e8", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 2116196, - "known_for_department": "Editing", - "name": "L. Dillon Thomas", - "original_name": "L. Dillon Thomas", - "popularity": 0.73, - "profile_path": null, - "credit_id": "648337a1bf31f25055a02472", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2116242, - "known_for_department": "Art", - "name": "Andy Young", - "original_name": "Andy Young", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6461b561dbbb420170a951d8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2117037, - "known_for_department": "Crew", - "name": "Declan O'Donnell", - "original_name": "Declan O'Donnell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc57a7b7b4d00e4adfe3f", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 2, - "id": 2127274, - "known_for_department": "Sound", - "name": "Jack Cucci", - "original_name": "Jack Cucci", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64830277c9dbf900e3fedb39", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2136902, - "known_for_department": "Sound", - "name": "Bryan Mendoza", - "original_name": "Bryan Mendoza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f57399259c011c3fe842", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2146964, - "known_for_department": "Camera", - "name": "Tom Wade", - "original_name": "Tom Wade", - "popularity": 0.608, - "profile_path": null, - "credit_id": "6483354cd2b20900ad3ba064", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 2148372, - "known_for_department": "Crew", - "name": "Robert Bastens", - "original_name": "Robert Bastens", - "popularity": 1.12, - "profile_path": "/cWGBtJHTcBtzk5i80Ao3YHDrH5B.jpg", - "credit_id": "64d89396bf31f201ca8cc305", - "department": "Crew", - "job": "Stand In" - }, - { - "adult": false, - "gender": 0, - "id": 2256436, - "known_for_department": "Acting", - "name": "Tom Connelly", - "original_name": "Tom Connelly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb9707b7b4d0155f98d4b", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2258650, - "known_for_department": "Crew", - "name": "Christopher McGovern", - "original_name": "Christopher McGovern", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f564e375c000c527519f", - "department": "Camera", - "job": "Camera Loader" - }, - { - "adult": false, - "gender": 2, - "id": 2272446, - "known_for_department": "Crew", - "name": "Kim Fardy", - "original_name": "Kim Fardy", - "popularity": 1.139, - "profile_path": "/qDyu4KnaWLcnAwmh7RqfNMA2Iqh.jpg", - "credit_id": "646bb9b2c3514c2b08517a41", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 2331651, - "known_for_department": "Art", - "name": "Mark Button", - "original_name": "Mark Button", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648331bde375c0011c7f3150", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2363529, - "known_for_department": "Crew", - "name": "Richard Frazer", - "original_name": "Richard Frazer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc64fd18572010199767b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2378823, - "known_for_department": "Acting", - "name": "Brenda Lorena Garcia", - "original_name": "Brenda Lorena Garcia", - "popularity": 1.808, - "profile_path": "/yxoH72yZxvykjONyOdHQjwhf3DN.jpg", - "credit_id": "64836738bf31f2505f3dee25", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2396253, - "known_for_department": "Production", - "name": "Matt Craufurd", - "original_name": "Matt Craufurd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833642c9dbf90100cac2ee", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2396256, - "known_for_department": "Production", - "name": "Matt Risebrow", - "original_name": "Matt Risebrow", - "popularity": 0.742, - "profile_path": null, - "credit_id": "64833615d2b209010c186481", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2423284, - "known_for_department": "Crew", - "name": "Billy Clements", - "original_name": "Billy Clements", - "popularity": 0.703, - "profile_path": null, - "credit_id": "648366f8d2b20900ca1e7f70", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2441229, - "known_for_department": "Crew", - "name": "Oleg Podobin", - "original_name": "Oleg Podobin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bba9133a3760175d3eabd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2441460, - "known_for_department": "Visual Effects", - "name": "Alistair Williams", - "original_name": "Alistair Williams", - "popularity": 0.898, - "profile_path": null, - "credit_id": "6483031099259c00e2f417f4", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2477289, - "known_for_department": "Production", - "name": "Samantha Arnold", - "original_name": "Samantha Arnold", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648363b5e375c0011c7f45e4", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2487281, - "known_for_department": "Art", - "name": "Chloe Kletsa", - "original_name": "Chloe Kletsa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b5436e0d7200e31d2956", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2580099, - "known_for_department": "Sound", - "name": "Alan MacFeely", - "original_name": "Alan MacFeely", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bb8bfd1857201802df85c", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2757911, - "known_for_department": "Costume & Make-Up", - "name": "Tania Couper", - "original_name": "Tania Couper", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64833722bf31f25055a02435", - "department": "Costume & Make-Up", - "job": "Hair Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2833420, - "known_for_department": "Acting", - "name": "John P. Husky", - "original_name": "John P. Husky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833892bf31f25055a024cb", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 1, - "id": 2881848, - "known_for_department": "Crew", - "name": "Aurélia Agel", - "original_name": "Aurélia Agel", - "popularity": 4.904, - "profile_path": "/zHFdxVRVfBI4rrMBUsSyzUbZGzN.jpg", - "credit_id": "646bb8e0c3514c2b0a33729f", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2897052, - "known_for_department": "Sound", - "name": "Mike Lerma", - "original_name": "Mike Lerma", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648301a0d2b209012dfc25ed", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3090492, - "known_for_department": "Art", - "name": "Lance Ashton Slaton", - "original_name": "Lance Ashton Slaton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483336ac9dbf900e3fef317", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3104797, - "known_for_department": "Art", - "name": "Trixie Gardner", - "original_name": "Trixie Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5ef7d185720140321b56", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3114050, - "known_for_department": "Directing", - "name": "Luís Sérgio", - "original_name": "Luís Sérgio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836435bf31f25054b52c4f", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3140713, - "known_for_department": "Visual Effects", - "name": "Jack Dorst", - "original_name": "Jack Dorst", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc63854a098011b2c1ebe", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 1, - "id": 3167141, - "known_for_department": "Production", - "name": "Katie Byles", - "original_name": "Katie Byles", - "popularity": 0.618, - "profile_path": null, - "credit_id": "64833134c9dbf900c570ffd1", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 3167155, - "known_for_department": "Art", - "name": "Alex Caldow", - "original_name": "Alex Caldow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648331d999259c00ff0dd6f7", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3171603, - "known_for_department": "Sound", - "name": "Tavish Grade", - "original_name": "Tavish Grade", - "popularity": 1.078, - "profile_path": null, - "credit_id": "646bb8a5d1857200e5a543c6", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3231760, - "known_for_department": "Production", - "name": "Danny Khoudary", - "original_name": "Danny Khoudary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483367fd2b20900ad3ba10c", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 2, - "id": 3258510, - "known_for_department": "Crew", - "name": "Carlos Castillo", - "original_name": "Carlos Castillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836613bf31f25055a037cb", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3397648, - "known_for_department": "Editing", - "name": "Mike Azevedo", - "original_name": "Mike Azevedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648337bebf31f250570590b9", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3446430, - "known_for_department": "Crew", - "name": "James Apps", - "original_name": "James Apps", - "popularity": 1.105, - "profile_path": null, - "credit_id": "6483680699259c011c3fa3c4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3448760, - "known_for_department": "Camera", - "name": "Peter Hayley-Barker", - "original_name": "Peter Hayley-Barker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833ce299259c00e2f4352f", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3455960, - "known_for_department": "Visual Effects", - "name": "Dayaliyah Lopez", - "original_name": "Dayaliyah Lopez", - "popularity": 0.607, - "profile_path": null, - "credit_id": "646bc690c3514c2b0a3375f0", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3480232, - "known_for_department": "Directing", - "name": "Kyle Williams", - "original_name": "Kyle Williams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64836415e2726000e8c01bea", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3485650, - "known_for_department": "Crew", - "name": "Matthew Bouchard", - "original_name": "Matthew Bouchard", - "popularity": 0.608, - "profile_path": null, - "credit_id": "646bc51ed1857200e5a546a7", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 2, - "id": 3491157, - "known_for_department": "Sound", - "name": "Mikel Parraga-Wills", - "original_name": "Mikel Parraga-Wills", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64830294e272600107216890", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3526390, - "known_for_department": "Camera", - "name": "Lee Godfrey", - "original_name": "Lee Godfrey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833cc2bf31f25054b51c61", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 3532449, - "known_for_department": "Acting", - "name": "Julia Schunevitsch", - "original_name": "Julia Schunevitsch", - "popularity": 0.6, - "profile_path": "/iCGvMtqjwsyLBYRGjY11wbmml9.jpg", - "credit_id": "646bbb03a5046e00e5b76cd4", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3572158, - "known_for_department": "Art", - "name": "Giulia Romolini", - "original_name": "Giulia Romolini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f3d54a098011b2bfa36", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3593550, - "known_for_department": "Production", - "name": "Eleri Coulten", - "original_name": "Eleri Coulten", - "popularity": 0.608, - "profile_path": null, - "credit_id": "648335f2bf31f250569accca", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3596370, - "known_for_department": "Editing", - "name": "Delaney Del Vecchio", - "original_name": "Delaney Del Vecchio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648338c1c9dbf9011dfb4cdf", - "department": "Visual Effects", - "job": "VFX Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3650884, - "known_for_department": "Visual Effects", - "name": "James Schembri", - "original_name": "James Schembri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc705d18572016192d53a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3665887, - "known_for_department": "Crew", - "name": "Ricardo Coelho", - "original_name": "Ricardo Coelho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc52d7b7b4d011b7971d7", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3665900, - "known_for_department": "Crew", - "name": "Valter Évora", - "original_name": "Valter Évora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5c433a3760101fbf4d9", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3693862, - "known_for_department": "Production", - "name": "Danielle Stanners", - "original_name": "Danielle Stanners", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483359199259c011c3f8ffe", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3734578, - "known_for_department": "Crew", - "name": "Aaron Parrott", - "original_name": "Aaron Parrott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5882bcf670155842a66", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3804025, - "known_for_department": "Directing", - "name": "Brunella De Cola", - "original_name": "Brunella De Cola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b52ddbbb420153068abc", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3812676, - "known_for_department": "Visual Effects", - "name": "Tommy Leigh", - "original_name": "Tommy Leigh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc69dc3514c2b0a3375f5", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3845493, - "known_for_department": "Visual Effects", - "name": "David Clifton", - "original_name": "David Clifton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc609a5046e012468f568", - "department": "Visual Effects", - "job": "VFX Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3852774, - "known_for_department": "Crew", - "name": "Nathan Grant", - "original_name": "Nathan Grant", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483376bc9dbf900e3fef50a", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3880571, - "known_for_department": "Art", - "name": "Olivia Dibs", - "original_name": "Olivia Dibs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5eeb2bcf6700e3bbc228", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3897577, - "known_for_department": "Art", - "name": "Joshua Benedetti", - "original_name": "Joshua Benedetti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648335dabf31f2505f3ddb31", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 1, - "id": 4062789, - "known_for_department": "Art", - "name": "Miranda Keeble", - "original_name": "Miranda Keeble", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6461b53a8c44b90119cb1352", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 4074776, - "known_for_department": "Art", - "name": "Jourdan McKee", - "original_name": "Jourdan McKee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f2b33a37600e67b90bd", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 4074777, - "known_for_department": "Art", - "name": "Morena Trevisiol", - "original_name": "Morena Trevisiol", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646b5f4d54a098011b2bfa4b", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 4075433, - "known_for_department": "Crew", - "name": "Brittany Marcotte", - "original_name": "Brittany Marcotte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483674d99259c00ff0def0a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075434, - "known_for_department": "Crew", - "name": "Caitlin McNerney", - "original_name": "Caitlin McNerney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483676bc9dbf900c57116e9", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075444, - "known_for_department": "Crew", - "name": "Anastajah Stearns", - "original_name": "Anastajah Stearns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbb532bcf67013896044a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075447, - "known_for_department": "Crew", - "name": "Arttu Stenberg", - "original_name": "Arttu Stenberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648366adc9dbf9013a060226", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075451, - "known_for_department": "Crew", - "name": "Oli Ward", - "original_name": "Oli Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbb7a2bcf6700fe61a225", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4075464, - "known_for_department": "Costume & Make-Up", - "name": "Chiara Ciotti", - "original_name": "Chiara Ciotti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbc362bcf670172b28f9a", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 4075469, - "known_for_department": "Art", - "name": "Virgilio Leandro", - "original_name": "Virgilio Leandro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bbd36d1857201019973b4", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 4075492, - "known_for_department": "Crew", - "name": "Joshua Connaway", - "original_name": "Joshua Connaway", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc53ca5046e018942785f", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 4075493, - "known_for_department": "Crew", - "name": "Andrea Ghellere", - "original_name": "Andrea Ghellere", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc5507b7b4d0155f99105", - "department": "Crew", - "job": "Special Effects Technician" - }, - { - "adult": false, - "gender": 0, - "id": 4075494, - "known_for_department": "Crew", - "name": "Stuart Lovelock", - "original_name": "Stuart Lovelock", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc56c2bcf67013896072d", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 4075495, - "known_for_department": "Crew", - "name": "Leon Van Der Walt", - "original_name": "Leon Van Der Walt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc59e7b7b4d011b7971ed", - "department": "Crew", - "job": "Special Effects" - }, - { - "adult": false, - "gender": 0, - "id": 4075506, - "known_for_department": "Visual Effects", - "name": "Renée MacCarthy", - "original_name": "Renée MacCarthy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646bc6acc3514c2b0bf36e0a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 1, - "id": 4104243, - "known_for_department": "Art", - "name": "Annabel Gibb", - "original_name": "Annabel Gibb", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833484bf31f250569acbfb", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4104274, - "known_for_department": "Crew", - "name": "Fiona Cousins", - "original_name": "Fiona Cousins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64833af0e2726000c92fef81", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4104520, - "known_for_department": "Directing", - "name": "Nick White", - "original_name": "Nick White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648363fabf31f2505880d480", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 4105289, - "known_for_department": "Camera", - "name": "Holden Miller", - "original_name": "Holden Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f52ae375c000acc505eb", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 4105290, - "known_for_department": "Camera", - "name": "Augustus Bechtold", - "original_name": "Augustus Bechtold", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f555e375c000c5275192", - "department": "Camera", - "job": "Second Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 4105293, - "known_for_department": "Camera", - "name": "Madie Ramser", - "original_name": "Madie Ramser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f59599259c00c5b44b00", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 2, - "id": 4105310, - "known_for_department": "Crew", - "name": "Michael Serr", - "original_name": "Michael Serr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483f819e272600128798855", - "department": "Crew", - "job": "Security" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About the Alfa Romeo", - "key": "mvqhB91E0Is", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-20T16:00:43.000Z", - "id": "650b524181c7be00adff1edd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Agency's Home Invasion is No Match for Jakob and Mia", - "key": "z_rdUKMFpFc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-19T16:00:46.000Z", - "id": "650b526981c7be010052d11c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the 7 Hills of Rome Chase Scene", - "key": "wB64FqJ-H3s", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-17T14:00:40.000Z", - "id": "650b525e0d5d8500c3e9e04a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dom and Dante Face Off in a Race to Settle the Score", - "key": "588qfb08rWM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-15T17:00:02.000Z", - "id": "6504f15642d8a500c4fae970" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Iconic Flaming Bomb Ball Scene", - "key": "n9NpviAdKhs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-15T14:00:37.000Z", - "id": "6504efc3373ac200c530f93c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Return of Hobbs Behind the Scenes", - "key": "of-LdY_oR7E", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-10T16:00:39.000Z", - "id": "650b5253501cf200e3c0f76a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "EVEN MORE Gags, Giggles and Goofy Bloopers from The Fast X Set", - "key": "i3F4zEOfYWA", - "site": "YouTube", - "size": 1080, - "type": "Bloopers", - "official": true, - "published_at": "2023-09-08T16:00:41.000Z", - "id": "64fffa9be0ca7f014f7045c7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "How Fast X Intertwines With All The Other Fast Movies", - "key": "OKsfbx2_8D4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-06T17:06:41.000Z", - "id": "64fffa8ce0ca7f014f7045ba" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Thought Process Behind the Big Truck & Off Road Cars", - "key": "fQxBVl3rk3k", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-03T13:00:27.000Z", - "id": "64fffa71efea7a00fd1b3e9a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Gags, Giggles and Goofy Bloopers from The Fast X Set", - "key": "RTdRK_JWCzE", - "site": "YouTube", - "size": 1080, - "type": "Bloopers", - "official": true, - "published_at": "2023-09-02T13:30:08.000Z", - "id": "64fffa621bf26600ac74a5f6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "My Universal Story: Debbie Evans", - "key": "WwiGlsZpq_c", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-18T16:20:49.000Z", - "id": "64f9dedf5f2b8d0139d0b725" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "My Universal Story: Jalil Jay Lynch", - "key": "ia-WNRo5Kac", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-17T17:27:12.000Z", - "id": "64f9deba5f2b8d00e12e53bd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Directing Fast X With All Things Rio De Janeiro in Mind", - "key": "hHShTJfki7w", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-13T16:00:35.000Z", - "id": "64e37aba544c4100ac3d18c3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Charger: Main 'Character' Energy", - "key": "HTNKJWmWeW4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-12T16:00:12.000Z", - "id": "64e37bb27ef381209b426967" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Han Arrives At Shaw's Safehouse Clip", - "key": "s99sfCLuYV8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-11T16:00:42.000Z", - "id": "64e37c867ef381209f453b15" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About the Cars and Bikes of Fast X", - "key": "5jgc6BWH6zc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-10T16:00:08.000Z", - "id": "64e37ae57ef381209f453a9d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Jakob & Little B Escape Dante's Kidnapping Plan Clip", - "key": "g7Fsvz7Ldgk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-09T16:00:36.000Z", - "id": "64e37adbb77d4b113fc7ed07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Tess Tells Dom About Letty: \"Nothing's Impossible!\" Clip", - "key": "TD3_PfWl0-Y", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-08T16:00:32.000Z", - "id": "64d30969b6c264013a867d42" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "All About Jakob's 1993 LX Mustang Behind the Scenes", - "key": "L9UBYyBzQAM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-07T16:00:15.000Z", - "id": "64d309bad100b600e2674123" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Making of Little B Taking The Wheel Behind the Scenes", - "key": "r8VDA97YYv4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-06T16:00:41.000Z", - "id": "64d3099e94631800e46acc98" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Scene Where Letty Chases Dante in Rome", - "key": "aQD_f0gVyPk", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-31T16:00:00.000Z", - "id": "64cc7ced2f266b09ebdbc3ca" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dom Tells Dante He Burned His Father's Money Movie Clip", - "key": "bXXgx8Y1mxI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-29T16:00:25.000Z", - "id": "64cc7cdd764b99011df5a768" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Complex Character of Aimes Behind the Scenes", - "key": "Aox_XNPvvHg", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-27T16:00:08.000Z", - "id": "64cc7cf8764b9900ae124fd3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Family Generations: The Toretto Family Behind the Scenes", - "key": "35TpKLB6koc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-26T16:00:02.000Z", - "id": "64c1c8cbdf86a8010636e552" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Cena Talks The Cannon Car Behind the Scenes", - "key": "aYLMRU4uLS0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-25T16:00:01.000Z", - "id": "64c0b0c1df86a801258241d8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Yours to Own Promo", - "key": "_aMNKTiVbg4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-25T13:00:32.000Z", - "id": "64c0b099514c4a014412860f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Dante Reyes Plays With Fire Extended Preview", - "key": "Dn4y8t5SlgY", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-13T16:49:30.000Z", - "id": "64b041b1c490480139d0a1ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Scene that Started the Road to Revenge", - "key": "xZd6Kxg_MDQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-23T17:51:17.000Z", - "id": "649a498e0e5aba00ffc351a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Every Fast & Furious Film Explained | Movies 1-9 Recap | Watch Before Fast X", - "key": "SP_h-m2vmv0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-13T14:20:10.000Z", - "id": "648c505342bf010101bd8364" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Time Moves Fast", - "key": "A3GBDEE3zxY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-26T22:50:56.000Z", - "id": "647c3c25174973013501bf63" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Nathalie Emmanuel", - "key": "qIeXWLwM4s0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-26T03:33:44.000Z", - "id": "6472aaf4a199a600f9426240" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Bomb Ball Meets Bus", - "key": "kshxFw49kaI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-18T01:32:37.000Z", - "id": "646671d12bcf6700fe5f1dcc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Rome Bike Chase", - "key": "wU7x1h2f7mE", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T23:09:49.000Z", - "id": "646675592bcf670172b01cc2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Premiere in Rome", - "key": "d5vE5_w6cVE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-17T21:49:27.000Z", - "id": "6466719c006b0100e6b338e1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Brie Larson", - "key": "OCzugJMrFb4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T02:12:59.000Z", - "id": "646671cb2bcf6700e3b9793d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "John Cena", - "key": "K4Gqwv31mGk", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-16T20:10:55.000Z", - "id": "646671c14c1d9a00e59c933c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Battle Royale", - "key": "NacLe5HWXvI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-15T23:05:08.000Z", - "id": "646671b9d1857201802bb6cb" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "eoOaKN4qCKw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-15T16:08:35.000Z", - "id": "64626469a67254012212d915" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "When in Rome", - "key": "TNkbCL_V5DM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-14T02:07:14.000Z", - "id": "646671f32bcf6700e3b9794a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Shooting in Rome", - "key": "qqe1TKbADco", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-11T16:00:28.000Z", - "id": "645d75dabcf8c900feece981" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BTS Experience: Charger Vs. Helicopters", - "key": "lIU6Phjlve4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-11T09:02:08.000Z", - "id": "647a188e0e29a20133c2f706" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Vin & Helen in Rome", - "key": "ruaaUNOX4RE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T20:43:31.000Z", - "id": "645cc14477d23b0119e2b8bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Letty v Cipher", - "key": "h221iD_mavU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T19:54:36.000Z", - "id": "645cc136156cc7011e022490" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Father/Son", - "key": "5PtyiUTuSsk", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-05T16:16:19.000Z", - "id": "645cc121fe077a5caae12275" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Soundtrack - \"Won't Back Down\"", - "key": "2g89gd7SxNo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-04T22:26:28.000Z", - "id": "645cc10c6aa8e000e4bea48a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Open Road", - "key": "vvazj_Ycw_w", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-02T18:33:21.000Z", - "id": "645cc0fc77d23b0119e2b881" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Who Is Dante?", - "key": "YrL5EnT9yeE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-28T16:00:34.000Z", - "id": "644c7cb5336e0102fb73bd40" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A war is coming. Choose your side.", - "key": "p8wBUAP9enQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:52:20.000Z", - "id": "649b4b84c392660125bf165f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "FASTEN your seatbelt for the ultimate showdown", - "key": "29fD-VqB0BM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:50:37.000Z", - "id": "649b4ba1fd4f8000cb30de07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "One Last Ride", - "key": "_3F5v1DU69U", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T07:45:24.000Z", - "id": "649b4bb0fd4f8000cb30de0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer 2", - "key": "aOb15GVFZxU", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-19T21:00:53.000Z", - "id": "64405cc504863802fb116479" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Bronny James - \"Family Business\"", - "key": "o_M9xUOJJjA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-15T20:12:53.000Z", - "id": "643b8e2d46aed4049e4f695f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A Look Inside", - "key": "yyvwReEYUNQ", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-07T16:00:44.000Z", - "id": "64348b2be92d830113089dbc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "For Fans and Family", - "key": "hzO1U2hhZ_o", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-03-31T16:00:09.000Z", - "id": "6427894301b1ca0097fd43e5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game Spot", - "key": "8oBHRjnQCFE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-12T23:55:04.000Z", - "id": "63e97dc6d388ae007d2a15b6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ensemble", - "key": "1w90tQTzJz8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-10T19:15:13.000Z", - "id": "63e6b158a3d02700d333225b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "32RAq6JzY-w", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-02-10T15:44:35.000Z", - "id": "63e6690a9512e1009309fd23" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "vote_average": 5.872, - "vote_count": 25, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fSd5MjJNcauyEbHuzUdCE1TKttK.jpg", - "vote_average": 5.732, - "vote_count": 20, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/felKdfRqoy7AcmdBvPM3wzwlZi9.jpg", - "vote_average": 5.576, - "vote_count": 13, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cFaCF8cDUZiqj4O0S3u1jEF5Sj4.jpg", - "vote_average": 5.518, - "vote_count": 10, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zPmXiPlB9YXT9dtSHzZHQUcpekw.jpg", - "vote_average": 5.406, - "vote_count": 22, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/27u4kBGGOQLqizEudJAOWMkvhip.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/roVhvqWxGYsAEyCCjtcUglsW7wS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/cpdFHkcM9jORFDH2lv62xQpytbx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/xnITQLSAQ2L4Efvte5NeYqCkmNx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSWkX0fTjrBCU2sbEmyRFd1SxPA.jpg", - "vote_average": 5.292, - "vote_count": 18, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "hi", - "file_path": "/fI5RsaM0NSU6TqztRhA2pal5ezv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "te", - "file_path": "/hVUPsfrr8v70t9q7ArmihGa7Rvo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "ta", - "file_path": "/8UkYotdREQ0l2lJpDzzIrmgfaYm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iAFO26JzdXNE20xkpl2fJBQr5Jy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/qYunECmcgtUuh4ka8hIuGZWStxL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/42AUEPTqYcZ5Gs1MAAv4mM7jFAY.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/uTSaToa77yLJnYyZ4uR8TDQBUMF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/nfSrOaiUWTdMsBKG9SDfvFGZ777.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 844, - "iso_639_1": "en", - "file_path": "/ktJfY5nUvwCNr55xsviNCwAk61T.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1500 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": "uk", - "file_path": "/tDpsiLhMATNburj3Gi1l6pWAOfA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/rXXrID2VIhK6ECLnsKvnzLZsCtO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/Am1SL5VTKt2sGkFodub5tlnDo0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/e2Jd0sYMCe6qvMbswGQbM0Mzxt0.jpg", - "vote_average": 4.494, - "vote_count": 26, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4t0oBFrJyweYPt0hocW6RUa0b6H.jpg", - "vote_average": 4.49, - "vote_count": 21, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2e7fc8eNwLXZ5Uvehvl3xj8wVyv.jpg", - "vote_average": 4.49, - "vote_count": 21, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/rWChG4k7aVhALZrIZ7IVAmXUMzn.jpg", - "vote_average": 4.398, - "vote_count": 18, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6l1SV3CWkbbe0DcAK1lyOG8aZ4K.jpg", - "vote_average": 4.382, - "vote_count": 21, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6aQ0iP9fmA5vI6BCFoO4sgHpFhj.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/6HyCSojP7mUVpspykGGkj1RQ3pl.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/hgOvm4Vpa9PzV3hdndhAJzLrVKQ.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/gAo47pvBbcPGvNjjadA65WImQ6X.jpg", - "vote_average": 4.356, - "vote_count": 19, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 801, - "iso_639_1": null, - "file_path": "/e2vAT27F8sa7UimZ70a5EuWIHjo.jpg", - "vote_average": 4.342, - "vote_count": 22, - "width": 1424 - }, - { - "aspect_ratio": 1.778, - "height": 901, - "iso_639_1": null, - "file_path": "/5XsuFCL8yK8vz88YlZbcschVvby.jpg", - "vote_average": 4.342, - "vote_count": 22, - "width": 1602 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": null, - "file_path": "/xPrwx07hpuPaQ5NGg5doB6RlDIM.jpg", - "vote_average": 4.314, - "vote_count": 20, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/vx8LaqLDur3g7MbbCDaciHJQ3Gu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/8An7XwzDmiF0lFmKW4p2pVJMuKA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/r3dTtSUW3bHjPUuKcfapikVIMgk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/iyv4Aym01AjpWBjs7CvKLfFljGT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cn", - "file_path": "/cnyrAW73WfW6SkGME7QDVrKQGP0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "zh", - "file_path": "/uKuzuY8M8vNU6Gkl3F35ReTz4zR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/caUwSNizKijnyw2kUh1rVbyEEBb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/yGEudHGo6XlHGmdrv6qmgdgADqF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "zh", - "file_path": "/aaEMPaY29SxaZieoRIMpu9JhFjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "th", - "file_path": "/qnlhkx3Qk9WGcKzc1upKQ2ylPaY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 2.804, - "height": 499, - "iso_639_1": "zh", - "file_path": "/sbbeY3l3jykr8hXX6TP8vufXXTE.png", - "vote_average": 5.522, - "vote_count": 4, - "width": 1399 - }, - { - "aspect_ratio": 1.886, - "height": 1299, - "iso_639_1": "en", - "file_path": "/8IRi8e5CN6e0p4XYkxLHyG390Su.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 2450 - }, - { - "aspect_ratio": 2.099, - "height": 455, - "iso_639_1": "uk", - "file_path": "/qB9ry34n01k5r0tgBNyOBPeLkMQ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 955 - }, - { - "aspect_ratio": 1.884, - "height": 1299, - "iso_639_1": "en", - "file_path": "/weMV2PLwFCGRBI1pUUka1SOSPt9.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2447 - }, - { - "aspect_ratio": 1.813, - "height": 662, - "iso_639_1": "zh", - "file_path": "/rAXize5F0Fkkf7evu5bQlsmfs4J.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 2.452, - "height": 84, - "iso_639_1": "pt", - "file_path": "/kApAa4zuKKTeEjXO3dp1h05NOUV.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 206 - }, - { - "aspect_ratio": 1.873, - "height": 197, - "iso_639_1": "zh", - "file_path": "/l8N9YO6hyjzZrTSPGGiU0cg9yPv.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 369 - }, - { - "aspect_ratio": 1.866, - "height": 441, - "iso_639_1": "en", - "file_path": "/6QX2PgiB2ff8Yk9fbp9BQPtDXIo.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 823 - }, - { - "aspect_ratio": 2.593, - "height": 302, - "iso_639_1": "en", - "file_path": "/kUdEJqhFYB9mv71SAnKEGSLd9m0.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 783 - }, - { - "aspect_ratio": 1.938, - "height": 292, - "iso_639_1": "en", - "file_path": "/mQh1w7dnrKMUEFWHuTbHp10pDIp.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 566 - }, - { - "aspect_ratio": 2.47, - "height": 200, - "iso_639_1": "pt", - "file_path": "/hSlUz3bG3bxxjClzPBM4MI6pfyR.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 494 - }, - { - "aspect_ratio": 2.779, - "height": 1770, - "iso_639_1": "zh", - "file_path": "/wgh7AAoVrS7o8ypks594WHd5v5k.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4918 - }, - { - "aspect_ratio": 1.884, - "height": 164, - "iso_639_1": "zh", - "file_path": "/peRvWR9C2lHOVqv9PN7OszSLm7o.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 309 - }, - { - "aspect_ratio": 1.744, - "height": 1044, - "iso_639_1": "es", - "file_path": "/bO16PKnnMg4C6nlNvPLHBgITd39.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1821 - }, - { - "aspect_ratio": 2.123, - "height": 489, - "iso_639_1": "en", - "file_path": "/42FReZrLutJ2AqRdK5JLpch5SZ7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1038 - }, - { - "aspect_ratio": 5.259, - "height": 580, - "iso_639_1": "en", - "file_path": "/l9NveI1Y6b8B55p2MhvTAMVAF1S.png", - "vote_average": 0, - "vote_count": 0, - "width": 3050 - }, - { - "aspect_ratio": 2.699, - "height": 459, - "iso_639_1": "cn", - "file_path": "/7nDWAtu8CynSKlkDURKIckj020L.png", - "vote_average": 0, - "vote_count": 0, - "width": 1239 - }, - { - "aspect_ratio": 3.408, - "height": 130, - "iso_639_1": "he", - "file_path": "/cOpAHNnWHpLLmbKKSA0tYGZHmPU.png", - "vote_average": 0, - "vote_count": 0, - "width": 443 - }, - { - "aspect_ratio": 2.085, - "height": 330, - "iso_639_1": "uk", - "file_path": "/vt6wu59s6mmMBHsakXksG2svFMH.png", - "vote_average": 0, - "vote_count": 0, - "width": 688 - }, - { - "aspect_ratio": 1.908, - "height": 348, - "iso_639_1": "fr", - "file_path": "/aqCKHRuG9HjtoEtt0cK9S5JkNej.png", - "vote_average": 0, - "vote_count": 0, - "width": 664 - }, - { - "aspect_ratio": 2.123, - "height": 2588, - "iso_639_1": "en", - "file_path": "/orgwboBz1NEA2j0rkjVP5lVRFTq.png", - "vote_average": 0, - "vote_count": 0, - "width": 5494 - }, - { - "aspect_ratio": 2.302, - "height": 149, - "iso_639_1": "pl", - "file_path": "/wQvIb7wakM9sKv5R916e9esB5nR.png", - "vote_average": 0, - "vote_count": 0, - "width": 343 - }, - { - "aspect_ratio": 1.819, - "height": 271, - "iso_639_1": "tr", - "file_path": "/f67jcTnsPR1jucXJRR0vdOlcA5P.png", - "vote_average": 0, - "vote_count": 0, - "width": 493 - }, - { - "aspect_ratio": 1.884, - "height": 1299, - "iso_639_1": "en", - "file_path": "/pXCpu8nFBeBkTH6Farg5TYPZWFx.png", - "vote_average": 0, - "vote_count": 0, - "width": 2447 - }, - { - "aspect_ratio": 5.259, - "height": 580, - "iso_639_1": "en", - "file_path": "/9LSN6oPksCbt72a2no8ygCg4G1.png", - "vote_average": 0, - "vote_count": 0, - "width": 3050 - }, - { - "aspect_ratio": 1.937, - "height": 350, - "iso_639_1": "en", - "file_path": "/mWMjHXH4tkeHoASv0XRFnt2Rpc1.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 1.885, - "height": 200, - "iso_639_1": "en", - "file_path": "/E8uiJ8vJbJVDXvuY2w2OfRdLt2.png", - "vote_average": 0, - "vote_count": 0, - "width": 377 - }, - { - "aspect_ratio": 2.125, - "height": 1298, - "iso_639_1": "de", - "file_path": "/3mnPion06TMe2T1Cdu4hfzKO38A.png", - "vote_average": 0, - "vote_count": 0, - "width": 2758 - }, - { - "aspect_ratio": 2.11, - "height": 272, - "iso_639_1": "cs", - "file_path": "/9Xpy9nKhCzakFcH554SeBNYSY1k.png", - "vote_average": 0, - "vote_count": 0, - "width": 574 - }, - { - "aspect_ratio": 2.17, - "height": 376, - "iso_639_1": "ja", - "file_path": "/ke3utp3sd1yrIPmK83wSOgaz96y.png", - "vote_average": 0, - "vote_count": 0, - "width": 816 - }, - { - "aspect_ratio": 2.223, - "height": 341, - "iso_639_1": "ja", - "file_path": "/xpxLSIXzWhT6mHejArTH7VpRkKz.png", - "vote_average": 0, - "vote_count": 0, - "width": 758 - }, - { - "aspect_ratio": 2.464, - "height": 276, - "iso_639_1": "lt", - "file_path": "/ujXRlEtoN3hQceWusVLNkZbWC8h.png", - "vote_average": 0, - "vote_count": 0, - "width": 680 - }, - { - "aspect_ratio": 2.224, - "height": 304, - "iso_639_1": "es", - "file_path": "/2t72R8TVcDVhh1OxG8r7rGxuRmo.png", - "vote_average": 0, - "vote_count": 0, - "width": 676 - }, - { - "aspect_ratio": 2.474, - "height": 274, - "iso_639_1": "es", - "file_path": "/bUxkMWeorHO2PjGVDNnmPzvTJ8Y.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 2.214, - "height": 304, - "iso_639_1": "es", - "file_path": "/4FG5GtvI9g4owL02CfIEOL97dCA.png", - "vote_average": 0, - "vote_count": 0, - "width": 673 - }, - { - "aspect_ratio": 2.605, - "height": 1268, - "iso_639_1": "es", - "file_path": "/aVnGAYreEqBx9So29ergHqCxL54.png", - "vote_average": 0, - "vote_count": 0, - "width": 3303 - }, - { - "aspect_ratio": 2.679, - "height": 1233, - "iso_639_1": "es", - "file_path": "/oxJkpQ1Qoa17MLGIsrGtdPaqnGj.png", - "vote_average": 0, - "vote_count": 0, - "width": 3303 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "vote_average": 6.676, - "vote_count": 30, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/wDWAA5QApz5L5BKfFaaj8HJCAQM.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jotrmwciqTzDvIi8qeVGwuxX2sG.jpg", - "vote_average": 6.038, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "kw", - "file_path": "/lpThmdw6ZY339y27MSNeILCGEWQ.jpg", - "vote_average": 5.774, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/fig4qLb0Zujy11RF6l0Kk83Ymn9.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3qabJbQhq8SAzBo2OJjOwggVcIc.jpg", - "vote_average": 5.702, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aAngiE34BMFDTOXpjc04Lr8zsX1.jpg", - "vote_average": 5.67, - "vote_count": 23, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/cXgMC3IJ6l6mUF1qzgTtNEWyrxa.jpg", - "vote_average": 5.58, - "vote_count": 11, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/j3S6HI4omonneHjZN9xypYVfEt0.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/7Br9F8EHrtNT2hFgD5oTfDMRgud.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/wXNihLltMCGR7XepN39syIlCt5X.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1E5baAaEse26fej7uHcjOgEE2t2.jpg", - "vote_average": 5.418, - "vote_count": 40, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1347, - "iso_639_1": "es", - "file_path": "/3P9QvWVN02Etn4kYGC702WVoXEb.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 898 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pAe4mqaHI7wOS7vz4btYAiX4UVN.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/4CWoalqAsRzXD9AFbByD1KnH40E.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/wBkJTzX1sHFUanrI523KQTcj3wm.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/3IZ8I193Y3mWMdOfaUAEWX2JibV.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/eSB9684DTVDbNUhDCsnBx3SU5hx.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/3GkuOxbTk9JL2zHCakRM4eX9N9Y.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/dNHTCruUWuK47FtfOYvd1woj6CG.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/uQ30hRIzo9rcM8HZVC4nm28pQSA.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/hd22RLAKL4qjIPsNQDcUvoEhK95.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qDRrP4NATGTWH8ORJV6T0BeoIhQ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/d5ZbYXDphIYqa9t9tokC1Qonoqr.jpg", - "vote_average": 5.348, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/tSxpZkBCN4xCVM5wIrOtXfn86Nr.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/soRynyMkGw5Q4i5XXHPIWpVLPri.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/7FmST1kvqqo9jA0lxVdWfp1mhlg.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/9vaMNbnOGoHy609Ne0of7hd6NTX.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/j2Z7q87RxIgCDgbQhbfss45YQch.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/tfW94ZOaDTAcrjI3TtLSyX26Tt5.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/di98mdTPBhFCCoJRH564HHV3O3d.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/umNxed58OmtR4GvHfuoahOxM1RR.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/mS9JUVHfhRPmv7JsvpzqeffCuP9.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/nc01e8DqJEr1GLzqoS5vVpZERcL.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "uk", - "file_path": "/rT63a6CVP8I0htX02ydWw053zgQ.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2998, - "iso_639_1": "kk", - "file_path": "/uhHUpWzxWrzY7Fz6XtmosqQCykp.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/brZzXXQ8GuzlAdu4TJxjhC8ebBL.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/zGutba8xgknUJsrGpkDLkmjLiqN.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "fr", - "file_path": "/piYNJlLvSlXYnXh6ZoKzhPdrMfV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/t1vPsJUBsh3gkgkZlqDNmCPyy49.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2953, - "iso_639_1": "nl", - "file_path": "/mvPfKR92ET6As8gsylmKqkFCJ60.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1968 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/y6dM5udfW0O5XpPVfg2fN6zrXVb.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/spnyWY1ZrQf16TZiSZ6OLc24Vyx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/cltj9nKLzl0HXtz2qdu55BoIgOn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/aAbah1LXhItOU9pSPR1ELEacdVN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/x9WJ4B4NEzAgfog1aGOpJV9qod2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/yldJm2GI7kcfoSmtRJBQ9oRZKJy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/3sFkBUkZtGb7bhVMi5uv1MdKlis.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/i2DDZdMndNoQxCte3U7gkGJRl95.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "no", - "file_path": "/ppLCKh7MHB1ioznKwBo16zCjnKI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hr", - "file_path": "/cTctDhck3tthYEwX46BjNTHP1fq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1024, - "iso_639_1": "ja", - "file_path": "/fhiKkTG5b8DLnMzid4oVSS6fUVy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 683 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/cEJzfxB1Da0xhuLsNHYkDrBrleX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.696, - "height": 862, - "iso_639_1": "bg", - "file_path": "/qjQzWj7ag7NELOkTdU0Xx37Edzo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/djyuQERE0JFhzadJjb7q5BJ57iu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.698, - "height": 1500, - "iso_639_1": "el", - "file_path": "/jx9YsketQXqpThnMnWwOl4AqPPZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1047 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/mgBcSHJt8fcRfXn8LcWusrCt0Kw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ibP3keZEVub4ZUw6Ay7Duw6EFHB.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/Ap1pv7nJmTxfoAXwYJ26H1bIqvd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sNgzw1wNvZwa1SfoPun3v5bf3tu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": "en", - "file_path": "/mtODmPdj0QvRGRbA8TbRHwbVDjr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "pt", - "file_path": "/wOXyBCjz276B84vSFcqvBMfyWWu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1551, - "iso_639_1": "pt", - "file_path": "/q4502qjr4xvzezFsdSuruyeqL5K.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1034 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/hC6mLdlgpFU63FOduX80xaGevGj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/diG4W9Ounq7yqbLJOrw7h9grUoi.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/7BOzdJavykpnCZ5oTYvmtTTbK9O.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/4HvouZcwdO4DDhb1RPPARcZWZLV.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x3zlm6VxPvVrYWE3bHkYUQMR798.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "za", - "file_path": "/sojAcZ6Y2OWJp3gcHqdhXvRi477.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/owE3aDOOXZdpTrmoM3mkidZyu5n.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7tbQEN9yEFkuxhsvF0eh7dckLTQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/g0mLydTMY5MFSLrXALvJQprQOF9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/tHLcRopzCvGIG4Ia1H7ai6uE4N0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1421, - "iso_639_1": "tr", - "file_path": "/iX5gKEV1TuAGHBUWNRHhX28H9JE.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 948 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "hr", - "file_path": "/r5nuTdvcaFsIVQyZ9hnNd9eOOri.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/3JT1oE0JIA6CQJaZDG00y3S0kP3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/xdTpK5Wa1z9jK9YEZBVr7ggFctC.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/z0zpP62nuL4KGFoUEcfyN1vQvNF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zeJhXyQ6vKyVlKEfNXkUww19SmY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/mJIeMHYklKvLjA3dSdmbLY2YU42.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/hGfDhCta2BlganQXYzQ0oxduost.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/l31hvzHjfj903hGBgL1v3uGGwU8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2926, - "iso_639_1": "uk", - "file_path": "/qMcNErmznrcaWxQ5WQESBfvNsA3.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1951 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/gsIzuN31hIqfg2uO2FXd5bGzTwH.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/nvRk8SNGTDL9C9rnHPCyIXxyKvA.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1420, - "iso_639_1": "uk", - "file_path": "/fBLYzYXE8SZsdAuYcDo89aOsEpu.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 947 - }, - { - "aspect_ratio": 0.667, - "height": 1588, - "iso_639_1": "ko", - "file_path": "/r2KV0wfO276KFQIylYcBsnrKZtD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1059 - }, - { - "aspect_ratio": 0.666, - "height": 1280, - "iso_639_1": "de", - "file_path": "/45uZLI8ZRDzlVgmNHtXvyn4z0I8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 853 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7kZmCSzwpJ1uJ1liwSznUK1go8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kaVxdesr6etK4i2YXqAc5goLU1l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5nFRXUniyuW8uPH23CEUtBpJHvV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/y9P1FWKHMfygpRM2NzcpzMhITGg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3DD9HZMnOYwnIEWgkB58fdhYNR7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tQEYX2dr12Cx0iDqBegtUsCe1df.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/78kg15rbUg63k2iHs8i1FV2pDMR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pRE8CbnJV6lr5gk1STyRJSlYMBK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/A1alo61fhsNLe1EfrSaPPznoyjk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/55Iy9Kq6A9qV9JM4qkS1eRoiZrR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oRctTWSwiBLxJscJaMSEf9tcXMc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/zdxTu4WOTGhsDTpSjM73XMqnNy7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": null, - "file_path": "/r4FrA32roClXwojIwil0tZEUeym.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5rXqIrwkfDyGtvfnhw7JMkZXpG8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/r6xXjyDJrf1BR5pZpMvdSjqxuJs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mVhZh0bAzMO6lMtIzw13lacZS8w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5wcrcSbP2bmAu0adAwVIxIBNFml.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rEWgUzd4BbOZPmuNOXKZnYYcObU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9isP396pr7SRFPDZhUbJ3EeH6qD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/uwXJyiH2fbfvlF68zOQqzFCvYvg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xQXL4E345NZsD2BDRdTCnnUndZ8.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/kRyZLt4iX8BPsRHxKpGCYXXeCVo.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3IlQxwKiPvBlehocPmH1fgRS6AJ.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/h4ffPbZeAMXVz6buRNrXz9IEQDE.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1515, - "iso_639_1": "es", - "file_path": "/4A76udAc8XWmLs1T29Kocw5Go3H.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1010 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/oJULSxKwGtvN51l2dn71eiXlh8i.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1359, - "iso_639_1": "pt", - "file_path": "/nxrmpkwVdmiVAiRTqSSC2SateN2.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 906 - }, - { - "aspect_ratio": 0.666, - "height": 1236, - "iso_639_1": "en", - "file_path": "/8hE5QQz6lqHdr0P6hpypR1lsoFS.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 823 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sPvUhbXxPGCpVL9vd9Q1PZaJSoh.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/7aqb4WIM17XXjZtJURg7PxctlID.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/dxcEURrL1hZqR4VTFeH5YQQkXfZ.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/flZ5qSTH7sUIMhyUHulSa3BzL1T.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "es", - "file_path": "/7kLe1D8vycFLkMSJJa2sws6CMm8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 839 - }, - { - "aspect_ratio": 0.666, - "height": 758, - "iso_639_1": "es", - "file_path": "/hc2ymDMfOCZ0JqrsMUBgL1GZXnz.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 505 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/MSc1kcaHXvvyGgoyjDa60jxdqq.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.674, - "height": 2780, - "iso_639_1": "zh", - "file_path": "/7RZBVldmMJKftejbKUNM2YBm6mZ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1875 - }, - { - "aspect_ratio": 0.667, - "height": 2841, - "iso_639_1": "zh", - "file_path": "/9Pr0dfOY2aEU6fM09qNwghDV9ZB.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1894 - }, - { - "aspect_ratio": 0.664, - "height": 2764, - "iso_639_1": "zh", - "file_path": "/caGorIvGiJ6wGSyUtLlL1QZEyS4.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1834 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/apBvqyQ7WnjHTPv3XZOtuhSlt55.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/2H8oC0O4VgcjjhWqFz9EtXAYFrV.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qhpHazAbCx4Gaa3IdceZPvbYyNN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4RqPyM4dTKh7jC4udvC4IDs0nRA.jpg", - "vote_average": 5.034, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "en", - "file_path": "/faxj22bQODBwLH5t3XIZuxsNvo4.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/u9gfzwLEQkFO2DtvQbWwdtJd6hX.jpg", - "vote_average": 5.01, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1350, - "iso_639_1": "en", - "file_path": "/mbPcdLZe4tm1dlDPs8Cn5APewTP.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1012 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/2h2Ctf9YN3O7HQFC8ZU6SrzDZrl.jpg", - "vote_average": 4.994, - "vote_count": 15, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "en", - "file_path": "/9wlfuanzf2KYpWIZ8aRz5EUzXuS.jpg", - "vote_average": 4.982, - "vote_count": 13, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1611, - "iso_639_1": "en", - "file_path": "/mdO0ClUWqtmqXXYl9DqkKqkaIkx.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1074 - }, - { - "aspect_ratio": 0.667, - "height": 1941, - "iso_639_1": "en", - "file_path": "/rZXWim0nscxUO55etqe6F3d6She.jpg", - "vote_average": 4.968, - "vote_count": 11, - "width": 1294 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nDVxy2OGomBupaVSyhcgzszcvFD.jpg", - "vote_average": 4.956, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1349, - "iso_639_1": "en", - "file_path": "/nKwrK05LxpjHEDURaEV0DBjdD2o.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 899 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gkT72YFmnHBzjKLlMzq4V6BiNH3.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rHfkMVq4BF5AQlqIqwR1XjcWvDl.jpg", - "vote_average": 4.858, - "vote_count": 27, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1687, - "iso_639_1": "en", - "file_path": "/zWJHY9QYzEcXmQ7BUg0qJxSICzd.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 1125 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/c7C3owsl09O9kO6XH2UQF89yuLw.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3WidiKLlEjtsuEM5P5TsxtXTg2c.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 888, - "iso_639_1": "en", - "file_path": "/2DyEk84XnbJEdPlGF43crxfdtHH.jpg", - "vote_average": 4.844, - "vote_count": 18, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jmdi62j5uJV60EtYY8zsE1LRYEf.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mE7COyDY1e55YIfvqgtv3gQe9xt.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bkk2bajJxs9EIIGmJr4ONcETOMM.jpg", - "vote_average": 4.774, - "vote_count": 10, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cbRMR9p0ity5RtaM2jSW0cS2LIX.jpg", - "vote_average": 4.694, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2X8ylHj0f303Lsqxl6TN98OXXfS.jpg", - "vote_average": 4.694, - "vote_count": 14, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9iHphXoopQeq97myliIc7GFeMBR.jpg", - "vote_average": 4.652, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y1VKMuof5LPItKtQclX9jzDQjNw.jpg", - "vote_average": 4.552, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/aV9JXMuaO9zSDOc64utU6bKk07T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.677, - "height": 1910, - "iso_639_1": "tr", - "file_path": "/yhwvLRgkoUM5hJEpAYUhY73wa6E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1294 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ar", - "file_path": "/qzyVx4lBkkzVV2RzpTUHl09yelU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pl", - "file_path": "/v2Pa7FUIkxm5XTzg6utOPnpNR2p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "th", - "file_path": "/mIEkfTHA11Ubc8itUUXvtc5tXZO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.666, - "height": 947, - "iso_639_1": "th", - "file_path": "/4GskBUWE1SBHDXn1FsyttTVOeAA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 631 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/jixZRAfRfuLqc40B91jTFco8nCm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.66, - "height": 1817, - "iso_639_1": "sk", - "file_path": "/2qZax8AhLklNMuClgmNgLtwNljP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/aHAxvRGLSKEfbaqFJCFqJaKC3Y5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rkzG99xJCNAZKAaXZ9ShxymTpKU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/A7MN4slDFHPcJISYRCYYslqORm5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": null, - "file_path": "/mwaVQzbpvLCGPcv9xXikhiu3EdH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2560, - "iso_639_1": "zu", - "file_path": "/7xlrcerfeU2sA1a6nZnC3nIbgg0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1792 - }, - { - "aspect_ratio": 0.667, - "height": 2914, - "iso_639_1": "ko", - "file_path": "/fnyE1sJm84LZEeEyP8x04GlSA3H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1943 - }, - { - "aspect_ratio": 0.667, - "height": 2914, - "iso_639_1": "ko", - "file_path": "/z5pT1XEg55Q6IjTqNtXZ4UB2pRq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1943 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fYIfzs03Pk4XcE2HNIx7AI79JpW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.718, - "height": 787, - "iso_639_1": "ja", - "file_path": "/hf06h57LgjOxDgEoDUiUvL8FH1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/dYhbTNtz9ix8F95YeiG8H6KsDGn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/xvBVbJs1JJiSqr6qKITg2vBW3lL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/gB6ISbFY0uZbFwhNaF5S03KinyB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/8s7qfcFcA7WvT0rNZlbeTGMIyE0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/eIRvjC0mdsnaQzsvoOT3j3WNoVl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/mPRDpj77pmIwNPsoXeMZCxaxjmV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/lVYxnxDcMiCKQkaNwvl4qbJpxsi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/9qlj3fVcMfqOxo2Ve0oSDulGAf4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/pOeVDC26XSaibLyd3017j7WFIjj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/HaLbHUeBtbCR3IQbz85p7KTWOq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/4TjZBPDXwvLGTATWxHISev3IwBu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/go4ksAV9MH4hEdXryfFy6jMSRAx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/sMA38BuXyaTqVI2NiTZYbmWgXlD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/rT2fUr9tIBkKah6OfPxxbJ5gVzg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/3ptxjOTWr3Cy82o9bGysdDdj50F.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/nzVgbrWSmrqLxYmLEXhiOXYkclH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/z8zTn5ijJBAk6EL31nzxYAT9t0v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/bKbxxIk9ANDFW7to3WVGRIMUNa8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/9zWZseqnqkAJwArp0K6GinCWpNi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/zrvgSFSdnsUvDLnu01Co97W3dr2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/n3gQx8yEdbWuiet9QSPRzhpsUQT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/tunyS7Yo0iEl7LdunC4xXIlM30f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/4GKxrdRmm5MzoJjgBCpkuXzWSPK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 2841, - "iso_639_1": "cs", - "file_path": "/ghF7kZ0g7WLchbSxCVq6WWetzVr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1894 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "cs", - "file_path": "/8pkxFu251FzocZe2YCBKhpm9tkY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/5h1pCos8ysDn6Ai0i8LJOoy4Yiq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 2843, - "iso_639_1": "en", - "file_path": "/baXPd8hwPnFK3ebs20UkilLgrTT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1895 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/ecdUebOh09UqIy6liWuKgrBRoR9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/drqKA1xkwr4HCvV7ekntVKw1m45.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1OuBleSq3Oft7CfWmLaz7Rpo9iI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/y1PqLMCKFOBgc5f6QQpsuG1fbrO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pl", - "file_path": "/ahwbRxeOCX622OsxBIMQWzb1fPb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "no", - "file_path": "/5SPKvugVK3Eq3WVZOnZjo6TpUqI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/nhHLyaLVHoxtPbpMnjmKT5IJTdx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/n7XNJXH5YvjuLjNRalpFukHUv2P.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/ceEa0RTm10fGfv1I3LoKZPNzmLX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/vKPiwMXW8qrPpyM6rbFrSCEe5VU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kUwfhOBdaQisufDeNFq9dZ0Slxz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lemEP2CY7qtD0A3xWZjxfDChfsv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/fsCZi3XgQ6XvuQLDIUt6I7NBkYe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/9Y2XuRUxmspQGTSEGCfmIlSXuRj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6IXbZOtmjbH0nHskvo7wNn3wVkE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/3WCCT16K1GPKGyCLQWdzQetUQ5M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8CXvFsbF3ZYIQVGYhanWmHDsKOu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1241, - "iso_639_1": "en", - "file_path": "/7L8ehosOPTYwSdupyZlUMdyts6X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 828 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jWyV2SRITLGpecGFbA5gDkc9YXP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/mXUhSBKxRToCexcMzEFSq1cPA3f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xZaRkzOFKNvZjVg7TQI9cjgQiLv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uV8AKdHT19Pn5OMcRBROYrB6ths.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 945, - "iso_639_1": "it", - "file_path": "/vzasLLPFRgl8Y7gTnMXe1HQ8XTy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/eCRfNYw5uvqIn9DoiSRiMR2ZX9e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/ud3pulNRAmLD5d5wo372AbM3skj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fxIvSNeQvokXmFcK7jDbmyoW3YB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zVaEBioSbcrIvH888wJ4g07xwrj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3IqnFOvd5y3ZtxFXQIClqKiRzQD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A324Z9ehUAccceb7rK7671jkZs3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/p8ii3mY9srOyHvExdTrl1dlmPE1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fJqbkt94kSTNtZYYvVZ29UEs4jx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/srv2FFRqUAkNJt89UpNCmW2pDYU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/hNQK7yPYBdbhEI4Ml5nPisBtOdn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7M9fGPBkzgsQxbOtQaFW5o2jcLm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/yBhtf4oN3UdB10Noas5r6M1q2QV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/8rDbjXEIXc1meGf8gd35OR4HHfZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qztzRGn3IQaeKzc6fWD6904KMbV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/9mxnNXpF0l0bto1O8CFiGcQM3zO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "lo", - "file_path": "/44ThQ2wboCq9am54LVcEuHUyrsZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/lZWLRUShxjeagwSVcwlHFEWXzhf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/7hoegKGhV4sEqjbMk5GUjpyi5i9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.664, - "height": 2854, - "iso_639_1": "en", - "file_path": "/gfMxmUqjgsqvQ9307ERlp3btOZO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1895 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/rlauVQEHwNE8paTpmcL5pCPMZUY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/12jsJjXbd5TOAPDpzKmHneuFWzd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.658, - "height": 760, - "iso_639_1": "sl", - "file_path": "/xAqu93JmbgmmqKsbY9c6ubm6uaN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/qCcBDPDEuAWDIwByR5P6nq7soyP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/j6aWYiximG3AVXXfh77RtC36h0U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/vrPETU9xkvDmBqr5I5ADnzUvh5c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rJT5bBHWevl3igvv2QdNlOxOspB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/aSRKUkVCUs077o6Q3OxJcd7an5y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/6wF0CWk9v6GEk7umc4Zx4L1a9A.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/565770.json b/examples/view-transitions/src/content/movies/565770.json deleted file mode 100644 index a5ab58670465..000000000000 --- a/examples/view-transitions/src/content/movies/565770.json +++ /dev/null @@ -1,4628 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "belongs_to_collection": null, - "budget": 104000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 878, "name": "Science Fiction" }, - { "id": 12, "name": "Adventure" } - ], - "homepage": "https://www.dc.com/bluebeetle", - "id": 565770, - "imdb_id": "tt9362930", - "original_language": "en", - "original_title": "Blue Beetle", - "overview": "Recent college grad Jaime Reyes returns home full of aspirations for his future, only to find that home is not quite as he left it. As he searches to find his purpose in the world, fate intervenes when Jaime unexpectedly finds himself in possession of an ancient relic of alien biotechnology: the Scarab.", - "popularity": 1007.105, - "poster_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "production_companies": [ - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { "id": 11565, "logo_path": null, "name": "The Safran Company", "origin_country": "US" }, - { - "id": 128064, - "logo_path": "/13F3Jf7EFAcREU0xzZqJnVnyGXu.png", - "name": "DC Films", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-08-16", - "revenue": 120418050, - "runtime": 128, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Portuguese", "iso_639_1": "pt", "name": "Português" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "Jaime Reyes is a superhero whether he likes it or not.", - "title": "Blue Beetle", - "video": false, - "vote_average": 7.157, - "vote_count": 565, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1185997, - "known_for_department": "Acting", - "name": "Xolo Mariduena", - "original_name": "Xolo Mariduena", - "popularity": 32.234, - "profile_path": "/tJMI7BpjlhHSMpzSz9e1XxygnKd.jpg", - "cast_id": 8, - "character": "Jaime Reyes", - "credit_id": "6108c3452f8d090048e996c9", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1622590, - "known_for_department": "Acting", - "name": "Bruna Marquezine", - "original_name": "Bruna Marquezine", - "popularity": 35.661, - "profile_path": "/mGDhenXwsFRaaz1PjbJjDkn2snc.jpg", - "cast_id": 11, - "character": "Jenny Kord", - "credit_id": "62277fa42f791500645ca0cd", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 7370, - "known_for_department": "Acting", - "name": "Damián Alcázar", - "original_name": "Damián Alcázar", - "popularity": 11.485, - "profile_path": "/6IAlrZ2yXubmmVaRsF7fdaP3N7C.jpg", - "cast_id": 17, - "character": "Alberto Reyes", - "credit_id": "62353f15db72c000456bf40b", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 270, - "known_for_department": "Acting", - "name": "Adriana Barraza", - "original_name": "Adriana Barraza", - "popularity": 7.231, - "profile_path": "/1aE7wu22bdgVTa0PMKXbAOSLiZn.jpg", - "cast_id": 15, - "character": "Nana Reyes", - "credit_id": "62353ec334e152001cc649e4", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 4038, - "known_for_department": "Acting", - "name": "Susan Sarandon", - "original_name": "Susan Sarandon", - "popularity": 34.461, - "profile_path": "/oHYYL8bNakAREaLUBtMul5uMG0A.jpg", - "cast_id": 19, - "character": "Victoria Kord", - "credit_id": "62587acf09191b0065327af2", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 17688, - "known_for_department": "Acting", - "name": "Raoul Max Trujillo", - "original_name": "Raoul Max Trujillo", - "popularity": 13.709, - "profile_path": "/dIfHIt1pgnYW9oCksc0DdoY5Mt5.jpg", - "cast_id": 20, - "character": "Carapax", - "credit_id": "62587b48dd2589009b845ea3", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 41798, - "known_for_department": "Acting", - "name": "George Lopez", - "original_name": "George Lopez", - "popularity": 13.812, - "profile_path": "/nyVMk9bZJKJEmk3KHS7jJ1672yN.jpg", - "cast_id": 14, - "character": "Rudy Reyes", - "credit_id": "62353eab8d77c4001bdd453d", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 2381442, - "known_for_department": "Acting", - "name": "Belissa Escobedo", - "original_name": "Belissa Escobedo", - "popularity": 29.376, - "profile_path": "/584tOsPVFbzq7GJxET5diOGZ8p0.jpg", - "cast_id": 12, - "character": "Milagros Reyes", - "credit_id": "62277fb3b76cbb0066dfca60", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1102, - "known_for_department": "Acting", - "name": "Elpidia Carrillo", - "original_name": "Elpidia Carrillo", - "popularity": 17.336, - "profile_path": "/xWlHSiYShbx8Abd1XFUqZw5xZOO.jpg", - "cast_id": 16, - "character": "Rocío Reyes", - "credit_id": "62353f060752880045957c9e", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 210172, - "known_for_department": "Acting", - "name": "Harvey Guillén", - "original_name": "Harvey Guillén", - "popularity": 5.249, - "profile_path": "/yiNBonobPwqMVweB02JWufzp2l9.jpg", - "cast_id": 13, - "character": "Dr. Sanchez", - "credit_id": "62277fbf871b340071c19d2a", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1529446, - "known_for_department": "Acting", - "name": "Becky G", - "original_name": "Becky G", - "popularity": 9.472, - "profile_path": "/9wT0OYw4e708koAg1Xfbyx6mA62.jpg", - "cast_id": 56, - "character": "Khaji-Da (voice)", - "credit_id": "647e111b0e29a22bdfec9cb7", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 1333199, - "known_for_department": "Acting", - "name": "Jorge Jimenez", - "original_name": "Jorge Jimenez", - "popularity": 1.58, - "profile_path": "/hXg5nLmGbverLE1OR1VTpIr1lTX.jpg", - "cast_id": 168, - "character": "Tío Chema", - "credit_id": "64e15428a3b5e601d59e9ee0", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1326614, - "known_for_department": "Acting", - "name": "Eyra Agüero Joubert", - "original_name": "Eyra Agüero Joubert", - "popularity": 1.215, - "profile_path": null, - "cast_id": 169, - "character": "Tía Maru", - "credit_id": "64e15465e19de90100e900fd", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 2557495, - "known_for_department": "Acting", - "name": "Gabrielle Ortiz", - "original_name": "Gabrielle Ortiz", - "popularity": 1.788, - "profile_path": "/tDwB2JENDKS2Fr9GmBJbQDZtatk.jpg", - "cast_id": 54, - "character": "Tía Letty", - "credit_id": "6452c358d861af0138f37d8f", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1618538, - "known_for_department": "Acting", - "name": "Chente Ydrach", - "original_name": "Chente Ydrach", - "popularity": 1.154, - "profile_path": "/swxF5b0t4IibJb0Gtd40zYVTlhk.jpg", - "cast_id": 128, - "character": "Old Man in Airport", - "credit_id": "64de211aa3b5e6013900bb57", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 64326, - "known_for_department": "Acting", - "name": "Modesto Lacen", - "original_name": "Modesto Lacen", - "popularity": 2.448, - "profile_path": "/t6Li2XdnKtTAAec2nlaxbZkGvDZ.jpg", - "cast_id": 118, - "character": "General Crane", - "credit_id": "64de1fb6d100b614b0a519f1", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 4220133, - "known_for_department": "Acting", - "name": "Oshún Ramirez", - "original_name": "Oshún Ramirez", - "popularity": 0.659, - "profile_path": null, - "cast_id": 127, - "character": "Nayeli", - "credit_id": "64de20e459e8a90139d6f6f8", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 4089996, - "known_for_department": "Acting", - "name": "Brianna Quinn Lewis", - "original_name": "Brianna Quinn Lewis", - "popularity": 0.6, - "profile_path": "/qejvhDjAsQ4wcx3yR60aQdwdoED.jpg", - "cast_id": 117, - "character": "Kord Receptionist", - "credit_id": "64dcc35c59e8a900ac07f76c", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1861836, - "known_for_department": "Acting", - "name": "Tahj Vaughans", - "original_name": "Tahj Vaughans", - "popularity": 2.889, - "profile_path": "/mZkJ4Fbx7Mqxm41o8igKNba3S8K.jpg", - "cast_id": 119, - "character": "Dude #1", - "credit_id": "64de1fc4d100b614b3005249", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 4220124, - "known_for_department": "Acting", - "name": "Dante Gonzalez-Abreu", - "original_name": "Dante Gonzalez-Abreu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 120, - "character": "Dude #2", - "credit_id": "64de1fd259e8a900ffff3267", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 4220125, - "known_for_department": "Acting", - "name": "Jon Z", - "original_name": "Jon Z", - "popularity": 0.728, - "profile_path": null, - "cast_id": 121, - "character": "Dude #3", - "credit_id": "64de1fe2a3b5e600acc29a11", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 62067, - "known_for_department": "Acting", - "name": "Carlos Ponce", - "original_name": "Carlos Ponce", - "popularity": 3.927, - "profile_path": "/elNTDau1yinXHgWht9EInLDftxH.jpg", - "cast_id": 122, - "character": "Bentley Owner", - "credit_id": "64de203aa3b5e600e29c9e08", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 4220130, - "known_for_department": "Acting", - "name": "Ayden Rivera", - "original_name": "Ayden Rivera", - "popularity": 0.6, - "profile_path": null, - "cast_id": 124, - "character": "Kid Carapax", - "credit_id": "64de20795ab81a00ad2011d4", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 4220131, - "known_for_department": "Acting", - "name": "Xol Gonzalez", - "original_name": "Xol Gonzalez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Teen Carapax", - "credit_id": "64de209c59e8a900c5a0baac", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 1416333, - "known_for_department": "Acting", - "name": "Franco Castan", - "original_name": "Franco Castan", - "popularity": 1.563, - "profile_path": "/sMhv8CmeWj0MPO9JkKqJokSbiao.jpg", - "cast_id": 170, - "character": "Security Tech #1", - "credit_id": "64e154bb37109700ffba6df2", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 3045119, - "known_for_department": "Acting", - "name": "Perris Drew", - "original_name": "Perris Drew", - "popularity": 0.69, - "profile_path": "/5aB9MOhVcfyRHbGxBbrkAI8LLs3.jpg", - "cast_id": 171, - "character": "Security Tech #2", - "credit_id": "64e154c25ab81a00c5b7ac15", - "order": 25 - }, - { - "adult": false, - "gender": 2, - "id": 131787, - "known_for_department": "Acting", - "name": "Felipe Esparza", - "original_name": "Felipe Esparza", - "popularity": 2.277, - "profile_path": "/5VLaNf2sWM4bhfqR7bRlOTqwvyx.jpg", - "cast_id": 172, - "character": "Security Tech #3", - "credit_id": "64e154cf5ab81a00c5b7ac1a", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 4223963, - "known_for_department": "Acting", - "name": "Walter J. Buck", - "original_name": "Walter J. Buck", - "popularity": 0.6, - "profile_path": null, - "cast_id": 173, - "character": "Security Tech #4", - "credit_id": "64e154dd2495ab0100855ec6", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1779512, - "known_for_department": "Acting", - "name": "Jackson Spidell", - "original_name": "Jackson Spidell", - "popularity": 2.712, - "profile_path": "/7cozKHcmO4MOOViAMqE4FXd0Bmf.jpg", - "cast_id": 174, - "character": "Black Ops Leader", - "credit_id": "64e154e7a3b5e601d9f00faf", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1614324, - "known_for_department": "Acting", - "name": "Esteban Ruiz", - "original_name": "Esteban Ruiz", - "popularity": 0.6, - "profile_path": "/4VpSjERX3qZR8yfhykZ1wOULh9F.jpg", - "cast_id": 175, - "character": "Sebastian - Wall Guard #1", - "credit_id": "64e154fba3b5e601d59e9f0d", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 3160209, - "known_for_department": "Acting", - "name": "Marcus Nelson", - "original_name": "Marcus Nelson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 176, - "character": "Giovanni - Wall Guard #2", - "credit_id": "64e155942495ab00c68bedea", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 4220128, - "known_for_department": "Acting", - "name": "Isabella Aparicio", - "original_name": "Isabella Aparicio", - "popularity": 0.656, - "profile_path": null, - "cast_id": 123, - "character": "Young Jenny Kord", - "credit_id": "64de2057b77d4b114019b6e0", - "order": 31 - }, - { - "adult": false, - "gender": 1, - "id": 2723382, - "known_for_department": "Acting", - "name": "Yuli Zorrilla", - "original_name": "Yuli Zorrilla", - "popularity": 3.376, - "profile_path": "/u8KzPYJrD51fbpIe2ytbggpr6gv.jpg", - "cast_id": 126, - "character": "Carapax's Mom", - "credit_id": "64de20beaaec7103fbea3771", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 1089007, - "known_for_department": "Acting", - "name": "Sergio Valente", - "original_name": "Sergio Valente", - "popularity": 0.6, - "profile_path": "/yJ41OAiAVqe7x3KZgoUO2DkVmhz.jpg", - "cast_id": 177, - "character": "Soldier", - "credit_id": "64e155e5da9ef200e5f25a6c", - "order": 33 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1597, - "known_for_department": "Sound", - "name": "Michael Payne", - "original_name": "Michael Payne", - "popularity": 2.135, - "profile_path": null, - "credit_id": "64e164bc5ab81a01391ab6b3", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3504, - "known_for_department": "Sound", - "name": "David Farmer", - "original_name": "David Farmer", - "popularity": 2.393, - "profile_path": "/oYNchEjc32GucUPvXAHMXajk3xJ.jpg", - "credit_id": "64e164975ab81a00ad21524f", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 5545, - "known_for_department": "Production", - "name": "K.C. Hodenfield", - "original_name": "K.C. Hodenfield", - "popularity": 1.386, - "profile_path": null, - "credit_id": "64cfd74f85090f01445bb859", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 5545, - "known_for_department": "Production", - "name": "K.C. Hodenfield", - "original_name": "K.C. Hodenfield", - "popularity": 1.386, - "profile_path": null, - "credit_id": "63ec2fea813cb60096aa6f23", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 6742, - "known_for_department": "Editing", - "name": "Craig Alpert", - "original_name": "Craig Alpert", - "popularity": 1.275, - "profile_path": "/bYDRvNYRtQW5H9qEqimbJDudcXt.jpg", - "credit_id": "62c02f6f924ce60059cd3afe", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 7625, - "known_for_department": "Writing", - "name": "Steve Ditko", - "original_name": "Steve Ditko", - "popularity": 2.656, - "profile_path": "/liZhKuugdqrSCYMzggzyhYRbfou.jpg", - "credit_id": "64e16abb2495ab00c68bff8b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 9440, - "known_for_department": "Sound", - "name": "Christopher Moriana", - "original_name": "Christopher Moriana", - "popularity": 1.218, - "profile_path": null, - "credit_id": "64e03a40a3b5e601d63a475d", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 9818, - "known_for_department": "Art", - "name": "Julian Ashby", - "original_name": "Julian Ashby", - "popularity": 1.11, - "profile_path": null, - "credit_id": "64e162e8aaec7103fbeb7787", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 9819, - "known_for_department": "Art", - "name": "Jon Billington", - "original_name": "Jon Billington", - "popularity": 2.287, - "profile_path": "/3wMaenFPT4rhJuPKJcE49eH7WGk.jpg", - "credit_id": "62c02fb6325a5100c3a486f1", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 13173, - "known_for_department": "Sound", - "name": "Tami Treadwell", - "original_name": "Tami Treadwell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1643fe19de900adfd241e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 13179, - "known_for_department": "Sound", - "name": "Tony Lamberti", - "original_name": "Tony Lamberti", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e164aa37109700c51f2272", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 14753, - "known_for_department": "Production", - "name": "David Siegel", - "original_name": "David Siegel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16ada2495ab013a0897dd", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 17675, - "known_for_department": "Costume & Make-Up", - "name": "Mayes C. Rubeo", - "original_name": "Mayes C. Rubeo", - "popularity": 0.62, - "profile_path": null, - "credit_id": "6482d27ac9dbf9013a05befe", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 18866, - "known_for_department": "Writing", - "name": "Jack Kirby", - "original_name": "Jack Kirby", - "popularity": 5.306, - "profile_path": "/ihhR019gL1WrXdSQNJITAY6dont.jpg", - "credit_id": "64e16ac2e19de9011d5e928b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 33673, - "known_for_department": "Art", - "name": "Jennifer M. Gentile", - "original_name": "Jennifer M. Gentile", - "popularity": 1.45, - "profile_path": null, - "credit_id": "63ec2f92699fb7009e3d18cd", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 19535, - "known_for_department": "Writing", - "name": "John Rogers", - "original_name": "John Rogers", - "popularity": 3.236, - "profile_path": null, - "credit_id": "64e16a72da9ef200c859446c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 29206, - "known_for_department": "Production", - "name": "Garrett Grant", - "original_name": "Garrett Grant", - "popularity": 0.931, - "profile_path": null, - "credit_id": "6434752622af3e00d5a7926b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 47365, - "known_for_department": "Production", - "name": "Walter Hamada", - "original_name": "Walter Hamada", - "popularity": 3.224, - "profile_path": "/cykm5UtrpVYMY6gc5CfFt6eXZXG.jpg", - "credit_id": "6366d57be7c097007aeb708d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 53254, - "known_for_department": "Crew", - "name": "Geo Corvera", - "original_name": "Geo Corvera", - "popularity": 1.858, - "profile_path": "/6Q3PcNIyKIbaW6EPAGiZttQJCw5.jpg", - "credit_id": "64ceba2985090f00c87ce7e0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 83875, - "known_for_department": "Acting", - "name": "Will Eisner", - "original_name": "Will Eisner", - "popularity": 1.24, - "profile_path": null, - "credit_id": "64e16a915ab81a00ad2155ae", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 92471, - "known_for_department": "Visual Effects", - "name": "Kelvin McIlwain", - "original_name": "Kelvin McIlwain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "643475a022af3e01139725ce", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 74322, - "known_for_department": "Costume & Make-Up", - "name": "Kimberly Jones", - "original_name": "Kimberly Jones", - "popularity": 1.165, - "profile_path": null, - "credit_id": "64e038f7371097011c53d1ec", - "department": "Costume & Make-Up", - "job": "Makeup Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 123097, - "known_for_department": "Writing", - "name": "Cully Hamner", - "original_name": "Cully Hamner", - "popularity": 0.861, - "profile_path": null, - "credit_id": "64e16a7caaec7103f7e43590", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 123169, - "known_for_department": "Acting", - "name": "Michelle Rose", - "original_name": "Michelle Rose", - "popularity": 2.776, - "profile_path": "/rrbWOv23N8wI93HSVE1Ml3Qu0cb.jpg", - "credit_id": "64ceb91e303c85013a14d86c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 131532, - "known_for_department": "Crew", - "name": "J.J. Perry", - "original_name": "J.J. Perry", - "popularity": 2.801, - "profile_path": "/57assDPZceZ4x7YWrkPE5FqVn1f.jpg", - "credit_id": "6462960e532acb01195990bb", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 2, - "id": 173658, - "known_for_department": "Writing", - "name": "Len Wein", - "original_name": "Len Wein", - "popularity": 1.449, - "profile_path": "/jA38DskVXNIryKgPgc9Tc3GyaGH.jpg", - "credit_id": "64e16ac9076ce800e313a940", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 548441, - "known_for_department": "Sound", - "name": "Whit Norris", - "original_name": "Whit Norris", - "popularity": 0.743, - "profile_path": null, - "credit_id": "64e163d9da9ef200e5f265d8", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 938688, - "known_for_department": "Acting", - "name": "Dan Didio", - "original_name": "Dan Didio", - "popularity": 1.001, - "profile_path": null, - "credit_id": "64e16aace19de9013a28a6ce", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1031764, - "known_for_department": "Sound", - "name": "Darren Sunny Warkentin", - "original_name": "Darren Sunny Warkentin", - "popularity": 0.94, - "profile_path": null, - "credit_id": "64e03a5a5ab81a01391a4058", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1031811, - "known_for_department": "Sound", - "name": "Andrew DeCristofaro", - "original_name": "Andrew DeCristofaro", - "popularity": 1.199, - "profile_path": null, - "credit_id": "64e03a1b076ce800e3132a43", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1116283, - "known_for_department": "Production", - "name": "John Rickard", - "original_name": "John Rickard", - "popularity": 1.158, - "profile_path": null, - "credit_id": "61bbe67b54a0980042e9660d", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1128684, - "known_for_department": "Production", - "name": "Zev Foreman", - "original_name": "Zev Foreman", - "popularity": 0.78, - "profile_path": null, - "credit_id": "64347503391b9c11e1494667", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1142261, - "known_for_department": "Crew", - "name": "Airon Armstrong", - "original_name": "Airon Armstrong", - "popularity": 3.848, - "profile_path": "/cVOMBcU6qFsT7tpo4QjKrCRJ7oW.jpg", - "credit_id": "64ceba74614c6d00ff3118e0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1188571, - "known_for_department": "Acting", - "name": "Jeremy Marinas", - "original_name": "Jeremy Marinas", - "popularity": 0.797, - "profile_path": "/9TwJxsHeCp99V1eGXFFwitPcQb6.jpg", - "credit_id": "64ceb9b2303c85011dd3b335", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1190482, - "known_for_department": "Camera", - "name": "Eduardo Mariota", - "original_name": "Eduardo Mariota", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd2f5258ae012ca37906", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1222509, - "known_for_department": "Writing", - "name": "Keith Giffen", - "original_name": "Keith Giffen", - "popularity": 1.757, - "profile_path": null, - "credit_id": "64e16a43e19de900adfd27bd", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1259516, - "known_for_department": "Crew", - "name": "John Dixon", - "original_name": "John Dixon", - "popularity": 2.461, - "profile_path": "/5aHPScnn7icFDPHhBSV1fggmtNZ.jpg", - "credit_id": "64ceba184d6791011c174081", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1272901, - "known_for_department": "Acting", - "name": "Efka Kvaraciejus", - "original_name": "Efka Kvaraciejus", - "popularity": 2.178, - "profile_path": "/xC12DoEHB9h3jJQ5YrJ1WSoLEWs.jpg", - "credit_id": "64e167a34a52f8011e1e5cc6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1302532, - "known_for_department": "Production", - "name": "Roberto Gómez", - "original_name": "Roberto Gómez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16b39076ce8011d159435", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1338484, - "known_for_department": "Sound", - "name": "Chris Terhune", - "original_name": "Chris Terhune", - "popularity": 0.688, - "profile_path": null, - "credit_id": "64e03a4d5ab81a00ffc216b2", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1352973, - "known_for_department": "Visual Effects", - "name": "Sarah Swick", - "original_name": "Sarah Swick", - "popularity": 0.692, - "profile_path": null, - "credit_id": "64e4df851feac100fe5ad09d", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1360098, - "known_for_department": "Sound", - "name": "Luis Galdames", - "original_name": "Luis Galdames", - "popularity": 1.052, - "profile_path": null, - "credit_id": "64e03a29b77d4b1141f9ac3a", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1360099, - "known_for_department": "Sound", - "name": "Lee Gilmore", - "original_name": "Lee Gilmore", - "popularity": 0.937, - "profile_path": null, - "credit_id": "64e164ce4a52f800c7a32d28", - "department": "Sound", - "job": "Supervising Sound Effects Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1370799, - "known_for_department": "Acting", - "name": "Jwaundace Candece", - "original_name": "Jwaundace Candece", - "popularity": 4.192, - "profile_path": null, - "credit_id": "64ceba596d4c97010d508da9", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1378196, - "known_for_department": "Art", - "name": "Kristen McGary", - "original_name": "Kristen McGary", - "popularity": 1.001, - "profile_path": null, - "credit_id": "64e166222495ab00ae835f18", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 1379990, - "known_for_department": "Visual Effects", - "name": "Russell Earl", - "original_name": "Russell Earl", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e4deac594c94011c34eef9", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1386320, - "known_for_department": "Crew", - "name": "Gianni Biasetti Jr.", - "original_name": "Gianni Biasetti Jr.", - "popularity": 1.4, - "profile_path": "/frt102sL0yaSl51pTv3hWj5NQAY.jpg", - "credit_id": "64ceba55d9f4a603b8757e88", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1389133, - "known_for_department": "Sound", - "name": "Will Files", - "original_name": "Will Files", - "popularity": 1.961, - "profile_path": null, - "credit_id": "64e1648fe19de90100e90c43", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1389133, - "known_for_department": "Sound", - "name": "Will Files", - "original_name": "Will Files", - "popularity": 1.961, - "profile_path": null, - "credit_id": "64e164eb37109700c51f2299", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1389138, - "known_for_department": "Directing", - "name": "Jody Blose", - "original_name": "Jody Blose", - "popularity": 0.666, - "profile_path": null, - "credit_id": "63ec3079813cb600dc07154f", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1395709, - "known_for_department": "Sound", - "name": "Mark Paterson", - "original_name": "Mark Paterson", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64e164f537109700ac456d04", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1397823, - "known_for_department": "Sound", - "name": "Alyson Dee Moore", - "original_name": "Alyson Dee Moore", - "popularity": 2.827, - "profile_path": null, - "credit_id": "64e16461076ce800c6427334", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1399638, - "known_for_department": "Crew", - "name": "Rob King", - "original_name": "Rob King", - "popularity": 1.548, - "profile_path": null, - "credit_id": "64ceb9d2d9f4a603b6c891bd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1399865, - "known_for_department": "Visual Effects", - "name": "Chad Wiebe", - "original_name": "Chad Wiebe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfccc3c89100c681041d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1400555, - "known_for_department": "Art", - "name": "George Lee", - "original_name": "George Lee", - "popularity": 1.399, - "profile_path": null, - "credit_id": "64e03ade076ce8011d152145", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1401135, - "known_for_department": "Sound", - "name": "Angelo Palazzo", - "original_name": "Angelo Palazzo", - "popularity": 1.566, - "profile_path": null, - "credit_id": "64e164b3e19de900c68beb2b", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1406389, - "known_for_department": "Sound", - "name": "Bruce Tanis", - "original_name": "Bruce Tanis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64e165e1076ce8013a29f687", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1427715, - "known_for_department": "Crew", - "name": "Jon Valera", - "original_name": "Jon Valera", - "popularity": 1.608, - "profile_path": "/BLRKYySRdVpbvcDI8qC2laPRQ3.jpg", - "credit_id": "64ceb941d9f4a603b796f576", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1442097, - "known_for_department": "Costume & Make-Up", - "name": "Jeri Baker", - "original_name": "Jeri Baker", - "popularity": 0.692, - "profile_path": null, - "credit_id": "64e16686b77d4b1143495cd5", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 1451255, - "known_for_department": "Camera", - "name": "Eric Townsend", - "original_name": "Eric Townsend", - "popularity": 0.6, - "profile_path": null, - "credit_id": "649af4de0e5aba00ffc3c805", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1456721, - "known_for_department": "Crew", - "name": "Marian Green", - "original_name": "Marian Green", - "popularity": 1.962, - "profile_path": null, - "credit_id": "64ceb9e1fa27f400c50af809", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1463327, - "known_for_department": "Art", - "name": "Ellen Lampl", - "original_name": "Ellen Lampl", - "popularity": 0.62, - "profile_path": null, - "credit_id": "64e163b2b77d4b1141fa1c82", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1463668, - "known_for_department": "Crew", - "name": "Daniel Graham", - "original_name": "Daniel Graham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9f2549dda00c53eeb25", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1493864, - "known_for_department": "Art", - "name": "Jay Pelissier", - "original_name": "Jay Pelissier", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63ec2f54813cb600dc07132a", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1500758, - "known_for_department": "Directing", - "name": "Ángel Manuel Soto", - "original_name": "Ángel Manuel Soto", - "popularity": 5.288, - "profile_path": "/7lu6zFhXB1Na5ANy2pPTIERaAhi.jpg", - "credit_id": "60353737e786870040d25f6c", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 1510872, - "known_for_department": "Production", - "name": "Chelsea Ellis Bloch", - "original_name": "Chelsea Ellis Bloch", - "popularity": 3.844, - "profile_path": null, - "credit_id": "63ec2eda1b7294007c49dd47", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1517176, - "known_for_department": "Costume & Make-Up", - "name": "Susan Reilly LeHane", - "original_name": "Susan Reilly LeHane", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e0391fe19de9013a28272c", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1529990, - "known_for_department": "Sound", - "name": "Season Kent", - "original_name": "Season Kent", - "popularity": 1.004, - "profile_path": "/xJHOwAJVwaBVyQTMSkCm23ZfGeW.jpg", - "credit_id": "64821713e375c000acc41e81", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1530712, - "known_for_department": "Visual Effects", - "name": "Mark Hawker", - "original_name": "Mark Hawker", - "popularity": 0.753, - "profile_path": null, - "credit_id": "63ec30a2f92532009d92bebe", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1544399, - "known_for_department": "Crew", - "name": "Bobby Jordan", - "original_name": "Bobby Jordan", - "popularity": 2.522, - "profile_path": "/tOFBAfy0LnrRqLscwZPeLYM0VnZ.jpg", - "credit_id": "64ceb9bc4d6791011c17406a", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1544403, - "known_for_department": "Acting", - "name": "Matthew Austin Murray", - "original_name": "Matthew Austin Murray", - "popularity": 0.71, - "profile_path": null, - "credit_id": "64ceb98bfa27f40139163cfa", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1548416, - "known_for_department": "Crew", - "name": "Oliver Schulz", - "original_name": "Oliver Schulz", - "popularity": 0.63, - "profile_path": null, - "credit_id": "64e4df6d63e6fb011d0e487b", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1548530, - "known_for_department": "Costume & Make-Up", - "name": "Robert Wilson", - "original_name": "Robert Wilson", - "popularity": 1.815, - "profile_path": null, - "credit_id": "64e166bfe19de900e34398e4", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 2, - "id": 1550064, - "known_for_department": "Costume & Make-Up", - "name": "Edward T. Hanley", - "original_name": "Edward T. Hanley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e039ee076ce8011d1520be", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1562008, - "known_for_department": "Sound", - "name": "Kevin Cerchiai", - "original_name": "Kevin Cerchiai", - "popularity": 0.91, - "profile_path": null, - "credit_id": "63ec30c51b7294008e15f4d7", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1570787, - "known_for_department": "Camera", - "name": "Angel Pastrana", - "original_name": "Angel Pastrana", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64e4dd6263e6fb0100500333", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 1, - "id": 1574097, - "known_for_department": "Visual Effects", - "name": "Katrin Arndt", - "original_name": "Katrin Arndt", - "popularity": 1.38, - "profile_path": null, - "credit_id": "64e4de7bc3c89100e35ea7e4", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1575736, - "known_for_department": "Visual Effects", - "name": "Malcolm Humphreys", - "original_name": "Malcolm Humphreys", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4ded406f984010c6df85d", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1578121, - "known_for_department": "Writing", - "name": "Gareth Dunnet-Alcocer", - "original_name": "Gareth Dunnet-Alcocer", - "popularity": 3.242, - "profile_path": "/4WdVtBGBaS0hIapSpFbDKLhLFr9.jpg", - "credit_id": "63ec2e681f3e60007fb5aa37", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1580941, - "known_for_department": "Sound", - "name": "Bobby Krlic", - "original_name": "Bobby Krlic", - "popularity": 2.072, - "profile_path": "/edyQ97jkTRbWBARUaB31ghl4mMT.jpg", - "credit_id": "642e1e67158c8501031fc8b8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 1, - "id": 1608766, - "known_for_department": "Production", - "name": "Marisol Roncali", - "original_name": "Marisol Roncali", - "popularity": 2.128, - "profile_path": null, - "credit_id": "63ec2ef2813cb60079425376", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1635212, - "known_for_department": "Crew", - "name": "Jared Losano", - "original_name": "Jared Losano", - "popularity": 1.168, - "profile_path": null, - "credit_id": "64e16978b77d4b1142605aec", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1650351, - "known_for_department": "Camera", - "name": "Pawel Pogorzelski", - "original_name": "Pawel Pogorzelski", - "popularity": 2.493, - "profile_path": "/mCUSXTkDMmJaX4FoQ7adjIcJaOu.jpg", - "credit_id": "61f76863e2bca800efdf6e63", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1693343, - "known_for_department": "Art", - "name": "Juan Cervantes", - "original_name": "Juan Cervantes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03aa2371097011c53d30a", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1711856, - "known_for_department": "Crew", - "name": "Maya Santandrea", - "original_name": "Maya Santandrea", - "popularity": 0.652, - "profile_path": "/zPWqVw9Kje3BvqnQb9qpnpeRJeL.jpg", - "credit_id": "64e167782495ab011dd464b1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1715153, - "known_for_department": "Costume & Make-Up", - "name": "Amanda Bianchi", - "original_name": "Amanda Bianchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1670aa3b5e601da48ee88", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1717376, - "known_for_department": "Acting", - "name": "Caleb Spillyards", - "original_name": "Caleb Spillyards", - "popularity": 2.347, - "profile_path": "/5r7Q82C3g8CCIR2Eew6gc2oWSK2.jpg", - "credit_id": "64ceb937d9f4a603bafa5996", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1760572, - "known_for_department": "Sound", - "name": "Jason Oliver", - "original_name": "Jason Oliver", - "popularity": 1.307, - "profile_path": null, - "credit_id": "64e16438da9ef200c859409f", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1760573, - "known_for_department": "Sound", - "name": "Darrin Mann", - "original_name": "Darrin Mann", - "popularity": 0.866, - "profile_path": null, - "credit_id": "64e03a36b77d4b1141f9ac40", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1768007, - "known_for_department": "Crew", - "name": "Renae Moneymaker", - "original_name": "Renae Moneymaker", - "popularity": 2.915, - "profile_path": "/k96lYjDhLJbhIDLjmxcOxCcHumW.jpg", - "credit_id": "64cea61f85090f00c87ce318", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1797602, - "known_for_department": "Acting", - "name": "Richard Marrero", - "original_name": "Richard Marrero", - "popularity": 0.637, - "profile_path": "/dkyrndpFfzJolEmvVKHb6lwQeGC.jpg", - "credit_id": "64e167b5da9ef2011fe47216", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1813752, - "known_for_department": "Acting", - "name": "Bobby Hernandez", - "original_name": "Bobby Hernandez", - "popularity": 1.103, - "profile_path": "/z2QZ5YSHxhHOKYSGuRqanICNkXU.jpg", - "credit_id": "64e167575ab81a00e25c2f47", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1818190, - "known_for_department": "Sound", - "name": "Jeffrey Roy", - "original_name": "Jeffrey Roy", - "popularity": 0.769, - "profile_path": null, - "credit_id": "64e16446a3b5e601d59eac5e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1825134, - "known_for_department": "Crew", - "name": "Danya Bateman", - "original_name": "Danya Bateman", - "popularity": 1.41, - "profile_path": "/zm8g9IYRwh60NGMfPcpwnprZjTc.jpg", - "credit_id": "64ceba66fa27f40139163d27", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1825652, - "known_for_department": "Art", - "name": "Colton Comans", - "original_name": "Colton Comans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03aace19de900c68b7218", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 1830688, - "known_for_department": "Acting", - "name": "Michelle Cortés", - "original_name": "Michelle Cortés", - "popularity": 1.856, - "profile_path": "/uP0qpUWb3oK3Whlx7BjFd59oxQn.jpg", - "credit_id": "64ceba386d4c97010d508d9e", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1870912, - "known_for_department": "Crew", - "name": "Ross Kohnstam", - "original_name": "Ross Kohnstam", - "popularity": 1.4, - "profile_path": "/obU47dDIs42MRoG6SLtYni1dToo.jpg", - "credit_id": "64ceb9a685090f01445b36f6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1900168, - "known_for_department": "Acting", - "name": "Anis Cheurfa", - "original_name": "Anis Cheurfa", - "popularity": 0.799, - "profile_path": "/sToFORAIVPHffNHKcsIYjEISMv0.jpg", - "credit_id": "64ceba4cd9f4a603b6c891e1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1957333, - "known_for_department": "Visual Effects", - "name": "Clement Zveguintzoff", - "original_name": "Clement Zveguintzoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dff463e6fb00c6f20f52", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2021211, - "known_for_department": "Art", - "name": "Ricky Aguirre", - "original_name": "Ricky Aguirre", - "popularity": 0.753, - "profile_path": null, - "credit_id": "63ec2f04813cb60084b2b135", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2026825, - "known_for_department": "Art", - "name": "Nathan Krochmal", - "original_name": "Nathan Krochmal", - "popularity": 0.615, - "profile_path": null, - "credit_id": "63ec2f298e8702008640ed66", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2047762, - "known_for_department": "Crew", - "name": "Monica Lopez Aleman", - "original_name": "Monica Lopez Aleman", - "popularity": 1.779, - "profile_path": "/4TZp3UapzlaHjuwCfLbNQ56XHTC.jpg", - "credit_id": "64ceb8e96d4c9700cb7dccc1", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2056252, - "known_for_department": "Costume & Make-Up", - "name": "JT Franchuk", - "original_name": "JT Franchuk", - "popularity": 0.699, - "profile_path": null, - "credit_id": "64e038e6aaec7103f7e3c1ae", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 2062055, - "known_for_department": "Crew", - "name": "Miguel-Andres Garcia", - "original_name": "Miguel-Andres Garcia", - "popularity": 0.73, - "profile_path": "/efvnUP6UlXiOdZDA6Yod71uP8AU.jpg", - "credit_id": "64ceb9fe6d4c97012e8ade54", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2069486, - "known_for_department": "Production", - "name": "Kristi Lugo", - "original_name": "Kristi Lugo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd99c3c89100c6810318", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2092975, - "known_for_department": "Costume & Make-Up", - "name": "Addy Steigerwalt", - "original_name": "Addy Steigerwalt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03a06e19de90100e89b69", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2121116, - "known_for_department": "Costume & Make-Up", - "name": "Brittanie Cruz", - "original_name": "Brittanie Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038cf37109700c51eb8e8", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2138579, - "known_for_department": "Production", - "name": "Alice S. Kim", - "original_name": "Alice S. Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e162c6aaec7103fa48c6f6", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2178720, - "known_for_department": "Crew", - "name": "Holly Dowell", - "original_name": "Holly Dowell", - "popularity": 3.185, - "profile_path": "/zwnrOAdqZOHvmcCSOTMJ3rifAjM.jpg", - "credit_id": "64ceba07fa27f400c50af817", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2258647, - "known_for_department": "Art", - "name": "Arielle Ness-Cohn", - "original_name": "Arielle Ness-Cohn", - "popularity": 0.608, - "profile_path": null, - "credit_id": "63ec2f3f1f3e6000a1c548bd", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2423013, - "known_for_department": "Crew", - "name": "Blanca Rosa Rosario", - "original_name": "Blanca Rosa Rosario", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb90c303c85013a14d865", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2434231, - "known_for_department": "Acting", - "name": "Jenin Gonzalez", - "original_name": "Jenin Gonzalez", - "popularity": 1.588, - "profile_path": "/4GQPEUpfKdb5gY47KcVbflHmNjb.jpg", - "credit_id": "64ceb9ed6d4c9700ec578bf0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2475246, - "known_for_department": "Production", - "name": "Galen Vaisman", - "original_name": "Galen Vaisman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6434751fa1353300d4f669ef", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2492753, - "known_for_department": "Costume & Make-Up", - "name": "Jacqueline Bell", - "original_name": "Jacqueline Bell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038b9a3b5e601d875212b", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2583980, - "known_for_department": "Art", - "name": "Chris Cortner", - "original_name": "Chris Cortner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03ab7b77d4b11425ff02e", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2584002, - "known_for_department": "Art", - "name": "Stephanie L. Allen", - "original_name": "Stephanie L. Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03a89e19de9013a28281c", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 2690280, - "known_for_department": "Costume & Make-Up", - "name": "Maegan Robinson", - "original_name": "Maegan Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e039fb5ab81a00ad20e76c", - "department": "Costume & Make-Up", - "job": "Set Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 2722089, - "known_for_department": "Crew", - "name": "Lenny Cruz", - "original_name": "Lenny Cruz", - "popularity": 0.98, - "profile_path": null, - "credit_id": "64ceba24303c8500ade3fc19", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 2735941, - "known_for_department": "Acting", - "name": "Michael D. Jenkins", - "original_name": "Michael D. Jenkins", - "popularity": 0.607, - "profile_path": null, - "credit_id": "64ceb9c14d679100e2403e98", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2782661, - "known_for_department": "Art", - "name": "Emma Sparer", - "original_name": "Emma Sparer", - "popularity": 0.703, - "profile_path": null, - "credit_id": "64e1637e5ab81a00e25c2c47", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2816790, - "known_for_department": "Acting", - "name": "Justin Ortiz", - "original_name": "Justin Ortiz", - "popularity": 0.627, - "profile_path": null, - "credit_id": "64ceb97d6d4c9700afadb69c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2836764, - "known_for_department": "Camera", - "name": "Christopher M. Bauer", - "original_name": "Christopher M. Bauer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd0606f984014e66c4e1", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2860254, - "known_for_department": "Crew", - "name": "Tony Vo", - "original_name": "Tony Vo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb94e549dda013932927c", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 2899647, - "known_for_department": "Crew", - "name": "Cara Marie Chooljian", - "original_name": "Cara Marie Chooljian", - "popularity": 0.716, - "profile_path": null, - "credit_id": "64ceba3c303c8500c6137855", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2902440, - "known_for_department": "Crew", - "name": "Emely Cartagena", - "original_name": "Emely Cartagena", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64e16765a3b5e601d63ac7f3", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2909029, - "known_for_department": "Art", - "name": "Diem Ngo", - "original_name": "Diem Ngo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03af5aaec7103fcfde770", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2976492, - "known_for_department": "Visual Effects", - "name": "Ryan Wilk", - "original_name": "Ryan Wilk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfdbe0ca7f013a9850fe", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3057436, - "known_for_department": "Acting", - "name": "Alec Back", - "original_name": "Alec Back", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba62614c6d00e2bcc51d", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 3062786, - "known_for_department": "Art", - "name": "Margaret Ditre", - "original_name": "Margaret Ditre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03ac1b77d4b1141f9ac96", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3107577, - "known_for_department": "Visual Effects", - "name": "Samuel Tremblay", - "original_name": "Samuel Tremblay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfa95258ae00eaa259c0", - "department": "Visual Effects", - "job": "Visual Effects" - }, - { - "adult": false, - "gender": 1, - "id": 3119216, - "known_for_department": "Crew", - "name": "Marché Day", - "original_name": "Marché Day", - "popularity": 0.696, - "profile_path": null, - "credit_id": "64ceba14d9f4a603b6c891d2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3122273, - "known_for_department": "Camera", - "name": "Stephen Grum", - "original_name": "Stephen Grum", - "popularity": 1.03, - "profile_path": null, - "credit_id": "64e4dd1506f984014e66c4eb", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 3122273, - "known_for_department": "Camera", - "name": "Stephen Grum", - "original_name": "Stephen Grum", - "popularity": 1.03, - "profile_path": null, - "credit_id": "64e16a02a3b5e601d875a111", - "department": "Lighting", - "job": "Chief Lighting Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3166598, - "known_for_department": "Visual Effects", - "name": "Arian Nikjeh", - "original_name": "Arian Nikjeh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e152b55ab81a011c2f438a", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3292110, - "known_for_department": "Production", - "name": "Tini Wider", - "original_name": "Tini Wider", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dfbfe0ca7f01006fc8a1", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3322720, - "known_for_department": "Crew", - "name": "William Tang", - "original_name": "William Tang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb94785090f00e796c5d4", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3322723, - "known_for_department": "Crew", - "name": "Kade Pittman", - "original_name": "Kade Pittman", - "popularity": 0.616, - "profile_path": null, - "credit_id": "64e1699de19de900c68beecd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3322737, - "known_for_department": "Art", - "name": "Artie Contreras", - "original_name": "Artie Contreras", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec2f151b7294008e15f17b", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3340944, - "known_for_department": "Writing", - "name": "Joe Gill", - "original_name": "Joe Gill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16ab4076ce8011d1593f8", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3348333, - "known_for_department": "Writing", - "name": "Paris Cullins", - "original_name": "Paris Cullins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16a8b5ab81a00c5b7bc38", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3546499, - "known_for_department": "Acting", - "name": "Erika Keck", - "original_name": "Erika Keck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9c5d9f4a603b4a0195f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3616280, - "known_for_department": "Crew", - "name": "Erin Haus", - "original_name": "Erin Haus", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb9d66d4c97012e8ade46", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 3650884, - "known_for_department": "Visual Effects", - "name": "James Schembri", - "original_name": "James Schembri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4df5a06f98400ae4740f6", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3695659, - "known_for_department": "Acting", - "name": "Jaden Ponce", - "original_name": "Jaden Ponce", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1696c5ab81a00ad215506", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3757536, - "known_for_department": "Camera", - "name": "Natasha I. Nieves", - "original_name": "Natasha I. Nieves", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e4dd46c3c891011d9ccee6", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3785729, - "known_for_department": "Art", - "name": "Yolande Thame", - "original_name": "Yolande Thame", - "popularity": 0.652, - "profile_path": null, - "credit_id": "64e03b03b77d4b113e0728a1", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3790206, - "known_for_department": "Directing", - "name": "Ben White", - "original_name": "Ben White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec30448e8702007a1a476c", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3921100, - "known_for_department": "Production", - "name": "Anna Elisa Mackowiak", - "original_name": "Anna Elisa Mackowiak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec2fcc1f3e6000a1c549da", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3961339, - "known_for_department": "Crew", - "name": "Michelle Andrea Adams", - "original_name": "Michelle Andrea Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba6f303c8500e3388ce2", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4090188, - "known_for_department": "Crew", - "name": "Diego Davila-Rivera", - "original_name": "Diego Davila-Rivera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceba2dfa27f4011c84c764", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4164736, - "known_for_department": "Crew", - "name": "Kyle Murillo", - "original_name": "Kyle Murillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb987549dda011c27ce09", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4194255, - "known_for_department": "Production", - "name": "Rusty Grimes II", - "original_name": "Rusty Grimes II", - "popularity": 0.77, - "profile_path": null, - "credit_id": "64e03ace5ab81a00ffc216fb", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 4199440, - "known_for_department": "Crew", - "name": "Nicole Diane Rios", - "original_name": "Nicole Diane Rios", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1678d5ab81a00c5b7ba8f", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4199450, - "known_for_department": "Crew", - "name": "Jewelianna Ramos-Ortiz", - "original_name": "Jewelianna Ramos-Ortiz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ceb96a614c6d00acb19775", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4222746, - "known_for_department": "Costume & Make-Up", - "name": "Mollie Ennis", - "original_name": "Mollie Ennis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e038db5ab81a00c5b73aca", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4222760, - "known_for_department": "Art", - "name": "Tina Cianfaro Watson", - "original_name": "Tina Cianfaro Watson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e03b2ae19de9011d5e1ef1", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 4224008, - "known_for_department": "Art", - "name": "Aaron Kelly", - "original_name": "Aaron Kelly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e1632b076ce800e313a3b9", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 4224012, - "known_for_department": "Art", - "name": "Sara Corral", - "original_name": "Sara Corral", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e163aa076ce800adceb0d1", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4224050, - "known_for_department": "Crew", - "name": "Mike Norton", - "original_name": "Mike Norton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64e16aa5b77d4b1143495f28", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Party Bug", - "key": "vsBwcxu8bAQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-17T23:14:17.000Z", - "id": "64e34ed4d7cd06011f38f4c0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official IMAX® Interview", - "key": "ZO4BlX7oqI8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-15T19:22:25.000Z", - "id": "64dcc18eb77d4b11401909f0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Final Trailer", - "key": "4wxyy8Rcz4k", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-11T20:00:01.000Z", - "id": "64adbf6f66a0d30100db2e48" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer Out Now", - "key": "6UtM-MRfXuo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-03T18:21:29.000Z", - "id": "643491ade635710093af53b7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "vS3_72Gb-bI", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-03T15:39:24.000Z", - "id": "642af85e01b1ca00d5e8e821" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer Tomorrow", - "key": "7xtccqnqMBY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-02T16:02:00.000Z", - "id": "643491f2e6357100b4475dce" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1syW9SNna38rSl9fnXwc9fP7POW.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/gSba8P2SmfBIVtbjQa2TxREna0X.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p1xvfoZHkwSQsCAYz5wBbmxVEal.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/A1d0w5Y73pfzhkz93ZUxTicAE6J.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/hfvt0hG926BlottV9yldiJ2HYFM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/538XjiC3FCUAonW5TCXLtzY9lB1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ixZzr4PyM2TPs5fka3IJj058WYo.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8sk3ojnJRa7OW3pNygwDwGdFZaB.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/3H9NA1KWEQN0ItL3Wl3SFZYP6yV.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/uRk2gZilBhcIMF4Ki8lELmPZspi.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fhr2eVrFh3Su9MvC2kitSFQkHwz.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wqlXU5QdiQhZwvhG5YVq8PFZhWE.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4ulDBdJiV2WGGUBuvwidPJ9WvfF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pN3019XAjYeVApwFNkZi5l7kGRc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/lVC4FZ1nbgzZg7lkPLti0BgNd0q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1800, - "iso_639_1": null, - "file_path": "/wbxgNVvtFnRyT8uu4OF0qipgigy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3200 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/igTfOL6fv6FNooGeUiDjT7QodCd.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/YQws02lWsOXJYFAcboLiC2lPYY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/x0GGS0r4ig4fMMehTRVPyXkxKTI.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1898, - "iso_639_1": null, - "file_path": "/pEDXiMgHC3Mi3EhW0UtGwIeCn6F.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3374 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nudmzgatA3Fc3kUh15uwHbzu2KA.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5DnCxUxZRsmrvKr3rhDyA3pcrzA.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/qoQwraFZQna4bSgkEghGXC9HImz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2kNM8V2ozjaobCdeis9EyqkUOzg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1SMdoRIWVmhwDOhH6AAp1RmnJNA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1CHyZlPYp0RdI3EZ70OgJ5POqTK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1181, - "iso_639_1": null, - "file_path": "/zbq2bWb63UVh90lNRxbkrJDzrh7.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2100 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tYGRC6ixeC3r71FqQHYeQGHYTV6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1843, - "iso_639_1": null, - "file_path": "/eMEMHjhRGqJCkLg0DNB6cLGEudG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3276 - }, - { - "aspect_ratio": 1.778, - "height": 1623, - "iso_639_1": null, - "file_path": "/xBq1xp97qTyX2v3Sa5xbhyL54Tr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2886 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/iM3Be1dm8FFZq68Eq0QDHi41AFt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/xSsQyV9qpdN0wmErN6QBgHSoQQY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/qL0UonO9Y7kIGHF44ILyma9OJNt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ci9f5jOpbgrRZw1NQmhKQOr3bpc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/iMzqsTbfavsSejjmCS1ih1BIqLQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/ja7zdEpuSdap9wxgA3n1OwXXqlQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/386gq1X0GwmNhxycBfuESDQPPXz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 3.934, - "height": 1098, - "iso_639_1": "en", - "file_path": "/zanKFaGoXMI5p22vj4VB3rvM5Eg.png", - "vote_average": 5.454, - "vote_count": 3, - "width": 4319 - }, - { - "aspect_ratio": 4.349, - "height": 993, - "iso_639_1": "en", - "file_path": "/dlU4GkC1I029iiU7IBE9M74A00u.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 4.31, - "height": 1002, - "iso_639_1": "en", - "file_path": "/u0Qqi8gPDOHjtNEuPcUMlNdmNCh.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 3.934, - "height": 1098, - "iso_639_1": "en", - "file_path": "/k8Z507a2MayhwXL29iMInD2rQ5e.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 3.813, - "height": 422, - "iso_639_1": "en", - "file_path": "/mRWlF9Q9lus5h8szEgqiftLSAEo.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 1609 - }, - { - "aspect_ratio": 1.323, - "height": 756, - "iso_639_1": "en", - "file_path": "/axlYTmd1RdbpMGsXhXiscxMKZiE.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 4.36, - "height": 369, - "iso_639_1": "en", - "file_path": "/ciraTOWc154Oke76h6vBYVMRAhX.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1609 - }, - { - "aspect_ratio": 3.898, - "height": 1108, - "iso_639_1": "en", - "file_path": "/9bVnd7Niij7OYyoAumpfArEIvuR.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 2.943, - "height": 245, - "iso_639_1": "he", - "file_path": "/yNOhF4IiOzdiE9exmx1VqcioaLg.png", - "vote_average": 0, - "vote_count": 0, - "width": 721 - }, - { - "aspect_ratio": 4.643, - "height": 168, - "iso_639_1": "en", - "file_path": "/zy7c57SQXy9nG2k9hkdraMnKHq8.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 4.699, - "height": 156, - "iso_639_1": "pt", - "file_path": "/7OaQMxO4xIIPFlKGANrXk8uxm9K.png", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.879, - "height": 844, - "iso_639_1": "th", - "file_path": "/iEzpmKKF4rLgBN79pArdHPcoewt.png", - "vote_average": 0, - "vote_count": 0, - "width": 742 - }, - { - "aspect_ratio": 1.825, - "height": 326, - "iso_639_1": "zh", - "file_path": "/yO0gCSlYOC25jzgEBKI2vs2NqPS.png", - "vote_average": 0, - "vote_count": 0, - "width": 595 - }, - { - "aspect_ratio": 4.873, - "height": 314, - "iso_639_1": "ru", - "file_path": "/qGPrGjAYvuZeiPlH4z62EoK3xB3.png", - "vote_average": 0, - "vote_count": 0, - "width": 1530 - }, - { - "aspect_ratio": 4.416, - "height": 332, - "iso_639_1": "pt", - "file_path": "/vgXoUURXbTfylGQYYb1YV77m9Lb.png", - "vote_average": 0, - "vote_count": 0, - "width": 1466 - }, - { - "aspect_ratio": 0.98, - "height": 749, - "iso_639_1": "th", - "file_path": "/qz2EUtXgjjc0ojnhZ5gxNL9FbNu.png", - "vote_average": 0, - "vote_count": 0, - "width": 734 - }, - { - "aspect_ratio": 4.713, - "height": 916, - "iso_639_1": "pt", - "file_path": "/7z1SZEbzJd0a60Ux0SK2Gen7xWb.png", - "vote_average": 0, - "vote_count": 0, - "width": 4317 - }, - { - "aspect_ratio": 4.788, - "height": 902, - "iso_639_1": "pt", - "file_path": "/kHjcvXfbi8WjLzMKwKUzNgUc2Wu.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 4.643, - "height": 168, - "iso_639_1": "en", - "file_path": "/bzqmSP8AD7xjIWNFouyM4O0ZIhF.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 1.345, - "height": 293, - "iso_639_1": "en", - "file_path": "/8tibzjAcgseQZ9yEoxY8v46pK8h.png", - "vote_average": 0, - "vote_count": 0, - "width": 394 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "vote_average": 5.46, - "vote_count": 31, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lZ2sOCMCcGaPppaXj0Wiv0S7A08.jpg", - "vote_average": 5.416, - "vote_count": 36, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5bz0tNZTToWPuH7n9pDW1eR9RRY.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9sYNRlGP73ma8mJfaRhtmIAP9uj.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6OvZRu67nL0QRrMOanA6k60X1cV.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/y5sdkgO4IJMTnkjh9PG7kREPWrP.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/m0JDXK5ZsrqfQEqVFw22mbCjTns.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/wbrLT37qjp97GHgfXusN3zFCjkN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "no", - "file_path": "/dWyDHz3kiJODxyCpeUbbM76xyJ0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/34lVeftC5BSisD4RYRMacpIPCFR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2000, - "iso_639_1": "th", - "file_path": "/6h5i6v2glDlKwbcsdsFUu5cWhXQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1350 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/ox6lUfuBmoehxo8ybmSkFAHpTf4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/aHT0qcPPJGnF5ZhrRAdpfmEnl5Z.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/xSVtl6ZF7fNuZIoXkZbzI2EzoAD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/v3qaCZ3extC4N14QHgAUy3aj22X.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/ie86mV447tCRGlgxu7WrMweCMw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/uZTxZXddzqSYoVbH6jZ09xcz7AK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/1C1fcfwbcdfywMbp7KPqMe7PL6u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/cD8mb9nPzXGUjmjpDApMOQqss0X.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uhNBl6jmfmqTNbXesC1maphFbf4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/uSmlM9PSnb5Z090IXAGEQ7nF1Lq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rhrFsGQlMSlEbYac5xxtMPP6e1u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7roEyyMoDiDxt5qwhm01i3nU0Mw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xirQxdlqRulAaOGCzWbemeB9n1u.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mjQaIpA1zH6vCpyMu8w9VJG5nDO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1884, - "iso_639_1": "en", - "file_path": "/rBy9lo6qOIId6UuDS720SUHK6xg.jpg", - "vote_average": 5.286, - "vote_count": 16, - "width": 1256 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/gA6sEygZlszxZZZTR5jD9rfleZO.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": null, - "file_path": "/3Yd0UEiePNibCvZNwYmxZRCYxvy.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/h4BoV9d1rNIWfjlTwZtNbaCkGwn.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "he", - "file_path": "/3K1pUHns1dzIAfiVtLFjkJsaSNn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "he", - "file_path": "/bM00Q4UA5S2v9ft1esDqfEYctUt.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.677, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/5DR8In3q84FEl28PP6m9xGCIdjh.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 731 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jlAqIzokpv44VfjRz52u6z2LeJR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tZ27BFee4UDeJd5iYQWGu5sKcXm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cEvVX27LrcOo9EfUvEPFOQLSmsQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pskcOrsL5y3fUPksTwkj6PwoREu.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/w1hEtKWI9a6zlIfamYCltAQxPo3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/o3gSSs8fTy0POvrwA7ACjFrJvsa.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/mDzL6Y71ORikYczwy7GEEU5zjcx.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/paLAIjZH0SnR6sWDN1tkaOOb6Pr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/3yJHNWsE7a7Qj2a0S0jbIW0QnlX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3V7uP7LsFo34Vm1cPy2cQpjrHE6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pIV1yvdtjY0gmLLTIgjUteNY62Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/3V0QIu5TuRovxDP3RwvPOwTIOp9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/v9I1NIynaooDNYuma98u6TwwDDU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1012 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/yVZVTpbQvU0buMcRGE7G58nyYu7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/z5mkvXYNRauSzHdZgxAj6MzrLTY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/cZfIrJ7m5Vorq7rXLs85Uzo2r7M.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fRBxEAWotCXih5ZxYLNJOSiaeZs.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/89I5oCMtNdbBRRbhfvY1Sgji31v.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iyev5udSI2NecJHpl3EstYeQBJ7.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tf5Mqgoj1fFIeP7Ktfn8KGrYhup.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "es", - "file_path": "/tAXWRVMiJpj19lJKbTv5it6CJzS.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qlUOZvoi2KJ5bPAORfm4qfsieWa.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/a2QIFBp0P8tMsmX1RmOEvL0Zw93.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/k2n1BxjGT2NwH2ok0EFJM7UAdgz.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qmWBOQYl0EOTDEwh0evEsMsGBDZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1936, - "iso_639_1": "tr", - "file_path": "/Au9bxO4TSYx6MarEsevfNZRO3FF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1291 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/pI2ImSPAfU8DxpYlUVX1i9nxXQ9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/vHxvE2xY07pKzPAh4Zzk1H47g66.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/iScHswSyuhwswC0txfCNCf97Obm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.712, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/nD0peP0SbmKD5Pm8IkdRo9OKoah.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 769 - }, - { - "aspect_ratio": 0.7, - "height": 1097, - "iso_639_1": "he", - "file_path": "/1I342886DSewBNSAIO8QQx3Nnrb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 768 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/3Woi0H9vrNy98NWrtL9bM39zSDw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/j4vBzLeaFtiHyLAOWiMR9xFHVaH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/xNjEEvq7av2gQWyH0hE7okjNgJo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "id", - "file_path": "/7grtmsbCMlSjBUV4BsgDwwPSVY1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "pt", - "file_path": "/AhmVkXerBVsuI6PejPeqaaW2wwT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/fisvE0CSo4jcYXUri9gVhZYqgYc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/rj8wTeJK92BGYdOYPNfugdtoobg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/63aWvNI3ezyRWl8CS1I7F4hI6iB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 756 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/oaduqp6ExNHArukDZ9St11lk2Ak.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/13MlMT5yRroffGk7JixpkJnhCDy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "en", - "file_path": "/wYwDiw9DZotu19QLqB8gmnoSEs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/kNa6ZykQrIYVF6yU0PnYxulyMQq.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/esYoyv5ZK2iUHRViwpbYNHcK4pp.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/czxZ3KEUf3aHGwul9M0pWIfxXb8.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 1433 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/aP11o5chP0w0DBNBvP7OzWHlEp0.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wPhtO8xdaJ1sH5IO1wW4QPwi5Jd.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zJHWMrlD2c5rfvSLK9F7VE4EOqc.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xQoej3bB0ShPJZEkEhlYst5MViI.jpg", - "vote_average": 5.12, - "vote_count": 17, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/nDhb1nCRvOfGPzjfNBW4WQOCp2D.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/fZMC0yybKbgwPAC3jhZ478HhNFu.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/3CZnRDDDVnKFih4uLvxaTfoF0Zd.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1884, - "iso_639_1": "en", - "file_path": "/rJ4zo2g6YBfhzW1dLActAPaDzgf.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1256 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hdp0jBU1lmDe7KASASynbs2M31j.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/1FneYIlyDxj7OxoJCk5d15zU63X.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "en", - "file_path": "/A7v65jbPVg6vw21YMPEKjlZURQB.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "en", - "file_path": "/qcLQTYXybOQHC9Fgsm9eM6gBB22.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/iAXXhSgqzfQLyyxZIYnhEOYjaE5.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1433 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/u2kcJNpaVpK9yS0Wxz1l2iI0s5y.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/LbSdA9vPDf1B3op7MihSyawR7B.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/3zfgSsy4hslFILCQiswVkDQSMEN.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": "es", - "file_path": "/m2jDL4NCgEdMDEoMfe6SObyqobz.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ek0sxJba7pEWf3GUEOKuQwtMCOf.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "uk", - "file_path": "/tBs1x0hVV650dN14nUvBmfvPkzq.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bmS5kcSgjmUs3KxWJUb6RMPnuYe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3x0f6SXY0jQ1f5slXL8XlGYPcZb.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ctQcPmVSZP4GJsJ7n8AvxC4oc2z.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 1363, - "iso_639_1": null, - "file_path": "/oHKUgmCbqece4VrdBDgxvfkJvw2.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 923 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gvtMN1IWBqqPYYlPy2saWaPbmP9.jpg", - "vote_average": 4.828, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/2Dk0mkkgjwCIJ7VMThFQP21g4gJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/bz4ka7Lssz42ONfQrvO4fR3kMg7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/2RsgwIP90Ojks9ERqAmtOYEQHge.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/vg1neJPGKuPdXO1vbveZ5k2Lrn7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/xIs4wAi0yUUCh59oLs7YsOJ9Bjh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "vi", - "file_path": "/cswPVyXwQ13dFHU1KFS8dpFxIyY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nEvWdHCKJdILLM8qmlW7ENVHVTy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.756, - "height": 2021, - "iso_639_1": "he", - "file_path": "/o32uJAYiYGRFF7Yp6icHjNaWdxU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1527 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/pwitYbgZjp671xGHmRlUg6R9Ta1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2000, - "iso_639_1": "th", - "file_path": "/3LFAzqQ0M6OA4y62mOtcfXncORG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1350 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ANtP8YVd5EUSUYc81fxsDVyknp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/1eXJqj1yexxOy6iGBpPyVal7zRp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/hokoqUNkqIALjHyyo7nZGnCWVur.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/mIvuor5SxE496jfd3FWOPbK7bHO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/34LEzx0eFkPaaoxa90aWgdRiwCY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.711, - "height": 1368, - "iso_639_1": "cn", - "file_path": "/lb1PSzNGQhQ9Qv0PtgzcVUH1KJ7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/nH29grXgxdia1qrSqZPcwWQNn6g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3Lg78oIccQ7gyOvdM5sPq2UXzXj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/2ouedD64HcydhzaxcBxSo0NWWKQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": "en", - "file_path": "/41UXsvPpkRV3iORyPVoOHiamai3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/xzXdyFygjKsnWFQviUAM9lAhSU4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/AsPJHyXksywO0LV6roX02gdE3AR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/aUuNJLySLkNc3PcTSIjbWSbfI4w.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/32xnAwCOAtFrj7qBy14BAYMyNrT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/9sIs2A4TZFGDxixtCpWS7pUlcOM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1269, - "iso_639_1": "en", - "file_path": "/t4e6D6ozKqC5vF5VhaHIyDhlWXf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 846 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/24mR8VZzC7uqLR03ayYr3Ugl4IG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/qY1uMA0z2LS3mPkoxVLI2XGsVu4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/q3ovr3TZNOQuIjop2ellWAG1zpR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2045, - "iso_639_1": "en", - "file_path": "/aGpxMVUCnpwu4YbUU3NVpJRTy9S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2047, - "iso_639_1": "pt", - "file_path": "/nKwuNVWYYFX3mOr31wSoZzCxe6K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.745, - "height": 1278, - "iso_639_1": "it", - "file_path": "/bRWzcHHdRtkWs0wReFHHsGucA7S.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 952 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xA2GNgVQMvl83C3FugtqBcPGsaO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/y5Ek6QVbbgdxcrmRH6T9EUPaVeN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dbYLojLYoPKVlxsnAXJQlXdHx2q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tH3fPwwug59g61feTuBiB6nX5pF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ldOzVWOgbatI9YpCX8B245OiepD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/mmNmnc022XlJzybgrXNeHzOwXH4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2149, - "iso_639_1": "en", - "file_path": "/pQ8PgklBPse69G8Yhh4PPbR9EmI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1433 - }, - { - "aspect_ratio": 0.666, - "height": 1280, - "iso_639_1": "it", - "file_path": "/tLozeOrfk5RJCCo9GmmYoD6PH9G.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 853 - }, - { - "aspect_ratio": 0.667, - "height": 832, - "iso_639_1": "en", - "file_path": "/zIStZc9gZX3kwWm5PxWbcg51mC7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 555 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/aTeynJFUHOHM6e5mR7ng6DaIEXz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/7BjndUK1vMOfOKAQI1kYQWAttlY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mXLOHHc1Zeuwsl4xYKjKh2280oL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hYB4xWR1mC9RoUU0BYXPq800xDI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/cox6PsDGDijVzbZdWPtps0tFTwZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gbjrr85rOyLLE9LcRMhs5xZOTG4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/c1E3fxp9uwSwu7RGbyEGLYnLxM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/egeTmHXvQhh8J4lCQg2xBS2D2Jt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/supY7sJTETSTrgQ83SKoTIIjGkk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/cADAApE5vxYN4x9hmqR1vrxs8iW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "es", - "file_path": "/wG6VgyvZ8uiFIl34tzUplt5u2sM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "en", - "file_path": "/xWreFzKvkYoHxmoF3jLLqYspp7h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/n8R8Fd5Zz3vSUpYB2Ew8iGRdkWk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wZZEIm9MyiX3XN5qHj9hYYUXTxq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/qYP807BKA69BUKhxzgrdx54j4D6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/bNiB2PizVGrqmbztt6MlGnwgk6r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/569094.json b/examples/view-transitions/src/content/movies/569094.json deleted file mode 100644 index 0dd550911f73..000000000000 --- a/examples/view-transitions/src/content/movies/569094.json +++ /dev/null @@ -1,13946 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "belongs_to_collection": { - "id": 573436, - "name": "Spider-Man: Spider-Verse Collection", - "poster_path": "/eD4bGQNfmqExIAzKdvX5gDHhI2.jpg", - "backdrop_path": "/14F6gMaRjzgsN6EEpiwH87R1I00.jpg" - }, - "budget": 100000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" } - ], - "homepage": "https://www.acrossthespiderverse.movie", - "id": 569094, - "imdb_id": "tt9362722", - "original_language": "en", - "original_title": "Spider-Man: Across the Spider-Verse", - "overview": "After reuniting with Gwen Stacy, Brooklyn’s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse’s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.", - "popularity": 842.076, - "poster_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "production_companies": [ - { - "id": 5, - "logo_path": "/wrweLpBqRYcAM7kCSaHDJRxKGOP.png", - "name": "Columbia Pictures", - "origin_country": "US" - }, - { - "id": 2251, - "logo_path": "/5ilV5mH3gxTEU7p5wjxptHvXkyr.png", - "name": "Sony Pictures Animation", - "origin_country": "US" - }, - { - "id": 77973, - "logo_path": "/9y5lW86HnxKUZOFencYk3TIIRCM.png", - "name": "Lord Miller", - "origin_country": "US" - }, - { - "id": 84041, - "logo_path": "/nw4kyc29QRpNtFbdsBHkRSFavvt.png", - "name": "Pascal Pictures", - "origin_country": "US" - }, - { "id": 14439, "logo_path": null, "name": "Arad Productions", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-05-31", - "revenue": 683241751, - "runtime": 140, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Hindi", "iso_639_1": "hi", "name": "हिन्दी" }, - { "english_name": "Italian", "iso_639_1": "it", "name": "Italiano" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" } - ], - "status": "Released", - "tagline": "It's how you wear the mask that matters.", - "title": "Spider-Man: Across the Spider-Verse", - "video": false, - "vote_average": 8.5, - "vote_count": 4262, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 587506, - "known_for_department": "Acting", - "name": "Shameik Moore", - "original_name": "Shameik Moore", - "popularity": 11.475, - "profile_path": "/uJNaSTsfBOvtFWsPP23zNthknsB.jpg", - "cast_id": 705, - "character": "Miles Morales / Spider-Man (voice)", - "credit_id": "6489a4f8e375c000e251ab48", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 130640, - "known_for_department": "Acting", - "name": "Hailee Steinfeld", - "original_name": "Hailee Steinfeld", - "popularity": 26.098, - "profile_path": "/q4UpZMEuvNCN5lL5L6xa3ICpheJ.jpg", - "cast_id": 706, - "character": "Gwen Stacy / Spider-Woman (voice)", - "credit_id": "6489a502d2b209010c1b8eda", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 17881, - "known_for_department": "Acting", - "name": "Jason Schwartzman", - "original_name": "Jason Schwartzman", - "popularity": 17.987, - "profile_path": "/gCjMdmW1DiPAClHVl4zHEIffIsE.jpg", - "cast_id": 710, - "character": "Jonathan Ohnn / Spot (voice)", - "credit_id": "6489a530e2726000e8c320c7", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 25072, - "known_for_department": "Acting", - "name": "Oscar Isaac", - "original_name": "Oscar Isaac", - "popularity": 37.736, - "profile_path": "/dW5U5yrIIPmMjRThR9KT2xH6nTz.jpg", - "cast_id": 709, - "character": "Miguel O'Hara / Spider-Man 2099 (voice)", - "credit_id": "6489a527e2726001287c06d5", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 226366, - "known_for_department": "Acting", - "name": "Brian Tyree Henry", - "original_name": "Brian Tyree Henry", - "popularity": 8.861, - "profile_path": "/1UgDnFt3OteCJQPiUelWzIR5bvT.jpg", - "cast_id": 30, - "character": "Jeff Morales (voice)", - "credit_id": "6271f53b89d97f005085abd7", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 141610, - "known_for_department": "Acting", - "name": "Luna Lauren Velez", - "original_name": "Luna Lauren Velez", - "popularity": 12.112, - "profile_path": "/98BvmTJCZHx0jPv0oNcv04Jkmfb.jpg", - "cast_id": 707, - "character": "Rio Morales (voice)", - "credit_id": "6489a50dbf31f2505708a397", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 543505, - "known_for_department": "Acting", - "name": "Jake Johnson", - "original_name": "Jake Johnson", - "popularity": 13.469, - "profile_path": "/3gASdJlbZYxTDYMaX6ALo4BDEjN.jpg", - "cast_id": 708, - "character": "Peter B. Parker / Spider-Man (voice)", - "credit_id": "6489a51ae375c0011c8201e0", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1455336, - "known_for_department": "Acting", - "name": "Issa Rae", - "original_name": "Issa Rae", - "popularity": 9.214, - "profile_path": "/1tX1T5ZNCMh2KYP1jMgfg8P26vm.jpg", - "cast_id": 711, - "character": "Jessica Drew / Spider-Woman (voice)", - "credit_id": "6489a538e375c000c52a3cae", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 1109702, - "known_for_department": "Acting", - "name": "Karan Soni", - "original_name": "Karan Soni", - "popularity": 17.895, - "profile_path": "/hkyWd9bcuOqUAUepOJLE47izTWR.jpg", - "cast_id": 713, - "character": "Pavitr Prabhakar / Spider-Man India (voice)", - "credit_id": "6489a549e2726000c932c67d", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 74242, - "known_for_department": "Acting", - "name": "Shea Whigham", - "original_name": "Shea Whigham", - "popularity": 14.14, - "profile_path": "/yHOYG5qKi3b0DhKOrPoBnELjR7z.jpg", - "cast_id": 714, - "character": "George Stacy (voice)", - "credit_id": "6489a55b6f8d95011f2435e3", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1260481, - "known_for_department": "Acting", - "name": "Greta Lee", - "original_name": "Greta Lee", - "popularity": 12.102, - "profile_path": "/6SydTis4XUcovlwIGskT59JowLX.jpg", - "cast_id": 38, - "character": "LYLA (voice)", - "credit_id": "63695b7d1684f7007a9bf5d7", - "order": 10 - }, - { - "adult": false, - "gender": 3, - "id": 561869, - "known_for_department": "Acting", - "name": "Amandla Stenberg", - "original_name": "Amandla Stenberg", - "popularity": 19.539, - "profile_path": "/an4LrFOKPQxUVqfJ6M8Ck4y0FiP.jpg", - "cast_id": 83, - "character": "Margo Kess: Spider-Byte (voice)", - "credit_id": "64756ba16743fa00df865ea0", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 1664716, - "known_for_department": "Acting", - "name": "Jharrel Jerome", - "original_name": "Jharrel Jerome", - "popularity": 5.443, - "profile_path": "/rh9EcyoIhmWTXBCdgadGQaerfbA.jpg", - "cast_id": 130, - "character": "Miles G. Morales (voice)", - "credit_id": "647a40e8e375c000c1a6aac4", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 62861, - "known_for_department": "Acting", - "name": "Andy Samberg", - "original_name": "Andy Samberg", - "popularity": 40.214, - "profile_path": "/uDHHDEoySchljXtIMxjha0Odyfj.jpg", - "cast_id": 76, - "character": "Ben Reilly / Scarlet Spider (voice)", - "credit_id": "644afc50fba62502fbd5626d", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1030513, - "known_for_department": "Acting", - "name": "Jack Quaid", - "original_name": "Jack Quaid", - "popularity": 26.439, - "profile_path": "/nI6ULvUIxxajya5DeTxcCdV3cal.jpg", - "cast_id": 86, - "character": "Peter Parker / The Lizard (voice)", - "credit_id": "64779d8fcf4b8b0122742009", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 32905, - "known_for_department": "Acting", - "name": "Rachel Dratch", - "original_name": "Rachel Dratch", - "popularity": 7.474, - "profile_path": "/hXBDjoU53c3B1Ni2htWTc0YA7RB.jpg", - "cast_id": 32, - "character": "Ms. Weber (voice)", - "credit_id": "6271f59aa313b8006527fbbe", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 154857, - "known_for_department": "Acting", - "name": "Ziggy Marley", - "original_name": "Ziggy Marley", - "popularity": 8.355, - "profile_path": "/9WZVDvWi6P8sg5hQ6JUf017d2SQ.jpg", - "cast_id": 110, - "character": "Lenny (voice)", - "credit_id": "647994ece323f3014815cc4e", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 62863, - "known_for_department": "Acting", - "name": "Jorma Taccone", - "original_name": "Jorma Taccone", - "popularity": 10.092, - "profile_path": "/x7x4NvDauuQ7HA6psLZYZ6m3zTd.jpg", - "cast_id": 34, - "character": "Adriano Tumino / '67 (voice)", - "credit_id": "62a735a565e0a200ab233adf", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 206919, - "known_for_department": "Acting", - "name": "Daniel Kaluuya", - "original_name": "Daniel Kaluuya", - "popularity": 19.365, - "profile_path": "/a07Tqzgp0IrW9YkcOQiuKavP4tm.jpg", - "cast_id": 712, - "character": "Hobie Brown / Spider-Punk (voice)", - "credit_id": "6489a53f99259c00accf0de2", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 932967, - "known_for_department": "Acting", - "name": "Mahershala Ali", - "original_name": "Mahershala Ali", - "popularity": 12.841, - "profile_path": "/9ZmSejm5lnUVY5IJ1iNx2QEjnHb.jpg", - "cast_id": 96, - "character": "Uncle Aaron (voice)", - "credit_id": "6478805ee323f30148154bb4", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 18999, - "known_for_department": "Acting", - "name": "J.K. Simmons", - "original_name": "J.K. Simmons", - "popularity": 28.983, - "profile_path": "/ScmKoJ9eiSUOthAt1PDNLi8Fkw.jpg", - "cast_id": 98, - "character": "J. Jonah Jameson (voice)", - "credit_id": "64794809caef2d01362a1503", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 119589, - "known_for_department": "Acting", - "name": "Donald Glover", - "original_name": "Donald Glover", - "popularity": 15.202, - "profile_path": "/jqVkQfeeEmdga1G0jpBwwXXwwSK.jpg", - "cast_id": 92, - "character": "Aaron Davis", - "credit_id": "64787bdf93828e0116231395", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 20, - "known_for_department": "Acting", - "name": "Elizabeth Perkins", - "original_name": "Elizabeth Perkins", - "popularity": 18.63, - "profile_path": "/vTWYllD9V76rgv9XAbtkkjjeunG.jpg", - "cast_id": 111, - "character": "May / Quippy Spider-Person (voice)", - "credit_id": "647995370e29a200a65f86d2", - "order": 22 - }, - { - "adult": false, - "gender": 1, - "id": 17696, - "known_for_department": "Acting", - "name": "Kathryn Hahn", - "original_name": "Kathryn Hahn", - "popularity": 10.509, - "profile_path": "/9sVllAKfEls3SJD3GoPm2JEZoa5.jpg", - "cast_id": 131, - "character": "Doc Ock (voice)", - "credit_id": "647a417717497300c131d600", - "order": 23 - }, - { - "adult": false, - "gender": 1, - "id": 2195140, - "known_for_department": "Acting", - "name": "Ayo Edebiri", - "original_name": "Ayo Edebiri", - "popularity": 12.118, - "profile_path": "/rhI5KCgJTqmHlOYmEXfbo5BzjHK.jpg", - "cast_id": 109, - "character": "Glory (voice)", - "credit_id": "647994e093828e0116239872", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 1814694, - "known_for_department": "Writing", - "name": "Nicole Delaney", - "original_name": "Nicole Delaney", - "popularity": 0.791, - "profile_path": null, - "cast_id": 132, - "character": "MJ (voice)", - "credit_id": "647a41b9e323f300a7d51b34", - "order": 25 - }, - { - "adult": false, - "gender": 1, - "id": 4094163, - "known_for_department": "Editing", - "name": "Antonina Lentini", - "original_name": "Antonina Lentini", - "popularity": 0.6, - "profile_path": null, - "cast_id": 133, - "character": "Betty (voice)", - "credit_id": "647a41e4caef2d00aa420ddf", - "order": 26 - }, - { - "adult": false, - "gender": 1, - "id": 932639, - "known_for_department": "Acting", - "name": "Atsuko Okatsuka", - "original_name": "Atsuko Okatsuka", - "popularity": 2.165, - "profile_path": "/iHMzMqLfiKcyOvXcR4KekkS6vII.jpg", - "cast_id": 107, - "character": "Yuri (voice)", - "credit_id": "647994b80e29a200bf1e0e36", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "cast_id": 82, - "character": "Ganke (voice)", - "credit_id": "6474077dcc277c01338924f1", - "order": 28 - }, - { - "adult": false, - "gender": 1, - "id": 587697, - "known_for_department": "Acting", - "name": "Melissa Sturm", - "original_name": "Melissa Sturm", - "popularity": 4.084, - "profile_path": "/kIOM0WSOAczBIMQE9y6hTrOkDUS.jpg", - "cast_id": 108, - "character": "Mary Jane (voice)", - "credit_id": "647994cce323f3014815cc3b", - "order": 29 - }, - { - "adult": false, - "gender": 1, - "id": 1261105, - "known_for_department": "Acting", - "name": "Lorraine Velez", - "original_name": "Lorraine Velez", - "popularity": 0.766, - "profile_path": null, - "cast_id": 135, - "character": "Maria (voice)", - "credit_id": "647a43cdcf4b8b0122756db2", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 928698, - "known_for_department": "Acting", - "name": "Nic Novicki", - "original_name": "Nic Novicki", - "popularity": 1.882, - "profile_path": "/rBStZ7SkvUBeBFibMV1NV6rNJYe.jpg", - "cast_id": 122, - "character": "Lego Spider-Man (voice)", - "credit_id": "6479a1240e29a200dcba1d1b", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 1213573, - "known_for_department": "Acting", - "name": "Taran Killam", - "original_name": "Taran Killam", - "popularity": 7.619, - "profile_path": "/zE4JnkNgs7Yx6zOzdOcxHB4vA1t.jpg", - "cast_id": 106, - "character": "Web-Slinger (voice)", - "credit_id": "6479945c93828e00f9d678ed", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "cast_id": 78, - "character": "Metro Spider-Man (voice)", - "credit_id": "646ac810c3514c011dcb8dd9", - "order": 33 - }, - { - "adult": false, - "gender": 2, - "id": 20903, - "known_for_department": "Acting", - "name": "Josh Keaton", - "original_name": "Josh Keaton", - "popularity": 12.381, - "profile_path": "/9ss2EXbN0VarF1tM2Qotwxy6fJs.jpg", - "cast_id": 84, - "character": "Spectacular Spider-Man (voice)", - "credit_id": "647789c9076ce800a821a88e", - "order": 34 - }, - { - "adult": false, - "gender": 1, - "id": 2119084, - "known_for_department": "Acting", - "name": "Sofia Barclay", - "original_name": "Sofia Barclay", - "popularity": 4.861, - "profile_path": "/9cm0R93QKdG3Rhta41ZwSoZhOPe.jpg", - "cast_id": 103, - "character": "Malala Windsor: Spider-UK (voice)", - "credit_id": "647993bdcaef2d00df87b453", - "order": 35 - }, - { - "adult": false, - "gender": 1, - "id": 3208721, - "known_for_department": "Acting", - "name": "Danielle Perez", - "original_name": "Danielle Perez", - "popularity": 2.082, - "profile_path": "/hFCONhnCIigLIgPQzPylLp5iNPu.jpg", - "cast_id": 104, - "character": "Charlotte Webber: Sun-Spider (voice)", - "credit_id": "647993e8cf4b8b01418e48b2", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 127387, - "known_for_department": "Acting", - "name": "Yuri Lowenthal", - "original_name": "Yuri Lowenthal", - "popularity": 11.351, - "profile_path": "/41mC1hbV8XNVsqUmRrBFwHNHVp.jpg", - "cast_id": 102, - "character": "Insomniac Spider-Man (voice)", - "credit_id": "64799340e323f301061451f6", - "order": 37 - }, - { - "adult": false, - "gender": 1, - "id": 2344237, - "known_for_department": "Acting", - "name": "Rita Rani Ahuja", - "original_name": "Rita Rani Ahuja", - "popularity": 0.6, - "profile_path": null, - "cast_id": 136, - "character": "Additional Voices (voice)", - "credit_id": "647a45d8e375c000a8e2085f", - "order": 38 - }, - { - "adult": false, - "gender": 2, - "id": 128154, - "known_for_department": "Acting", - "name": "Ismail Bashey", - "original_name": "Ismail Bashey", - "popularity": 1.423, - "profile_path": "/8siTb4IKjtbPinJvVygWlShdr0A.jpg", - "cast_id": 137, - "character": "Additional Voices (voice)", - "credit_id": "647a45e5caef2d0119bf0c59", - "order": 39 - }, - { - "adult": false, - "gender": 2, - "id": 1036171, - "known_for_department": "Acting", - "name": "Oscar Camacho", - "original_name": "Oscar Camacho", - "popularity": 0.792, - "profile_path": "/ckY22gfNS6bCERRFK0jqU57CqFA.jpg", - "cast_id": 138, - "character": "Additional Voices (voice)", - "credit_id": "647a45ef93828e00dcdc24b7", - "order": 40 - }, - { - "adult": false, - "gender": 2, - "id": 4094194, - "known_for_department": "Editing", - "name": "Freddy Ferrari", - "original_name": "Freddy Ferrari", - "popularity": 0.6, - "profile_path": null, - "cast_id": 139, - "character": "Additional Voices (voice)", - "credit_id": "647a45fee323f301061497c5", - "order": 41 - }, - { - "adult": false, - "gender": 0, - "id": 2784051, - "known_for_department": "Acting", - "name": "Kerry Gutierrez", - "original_name": "Kerry Gutierrez", - "popularity": 0.845, - "profile_path": null, - "cast_id": 140, - "character": "Additional Voices (voice)", - "credit_id": "647a4608caef2d00fce5194f", - "order": 42 - }, - { - "adult": false, - "gender": 2, - "id": 2842817, - "known_for_department": "Acting", - "name": "Kamal Khan", - "original_name": "Kamal Khan", - "popularity": 1.047, - "profile_path": null, - "cast_id": 141, - "character": "Additional Voices (voice)", - "credit_id": "647a4627cf4b8b01031dcac1", - "order": 43 - }, - { - "adult": false, - "gender": 2, - "id": 4094197, - "known_for_department": "Acting", - "name": "Angelo Sekou Kouyate", - "original_name": "Angelo Sekou Kouyate", - "popularity": 0.6, - "profile_path": null, - "cast_id": 142, - "character": "Additional Voices (voice)", - "credit_id": "647a465de375c000de574470", - "order": 44 - }, - { - "adult": false, - "gender": 2, - "id": 2597017, - "known_for_department": "Editing", - "name": "Andrew Leviton", - "original_name": "Andrew Leviton", - "popularity": 0.6, - "profile_path": null, - "cast_id": 143, - "character": "Additional Voices (voice)", - "credit_id": "647a4668e375c000fb0071fe", - "order": 45 - }, - { - "adult": false, - "gender": 2, - "id": 104617, - "known_for_department": "Acting", - "name": "David Michie", - "original_name": "David Michie", - "popularity": 2.292, - "profile_path": "/87z5A1ylR4I3jB8lzrLgfILYdYu.jpg", - "cast_id": 144, - "character": "Additional Voices (voice)", - "credit_id": "647a46750e29a20133c3070c", - "order": 46 - }, - { - "adult": false, - "gender": 0, - "id": 4094198, - "known_for_department": "Acting", - "name": "Sumit Naig", - "original_name": "Sumit Naig", - "popularity": 0.6, - "profile_path": null, - "cast_id": 145, - "character": "Additional Voices (voice)", - "credit_id": "647a4683caef2d0119bf0c8c", - "order": 47 - }, - { - "adult": false, - "gender": 2, - "id": 1363155, - "known_for_department": "Acting", - "name": "Juan Pacheco", - "original_name": "Juan Pacheco", - "popularity": 1.952, - "profile_path": "/ffXpriyG5QbmjCLmQ4boEjxc1ID.jpg", - "cast_id": 146, - "character": "Additional Voices (voice)", - "credit_id": "647a468c0e29a200bf1e57ad", - "order": 48 - }, - { - "adult": false, - "gender": 1, - "id": 87363, - "known_for_department": "Acting", - "name": "Chrystee Pharris", - "original_name": "Chrystee Pharris", - "popularity": 3.668, - "profile_path": "/2EdWOWrlirgaXsLatarQQOrOQkl.jpg", - "cast_id": 147, - "character": "Additional Voices (voice)", - "credit_id": "647a4696e323f300a7d51c7a", - "order": 49 - }, - { - "adult": false, - "gender": 2, - "id": 1243782, - "known_for_department": "Acting", - "name": "Ben Pronsky", - "original_name": "Ben Pronsky", - "popularity": 5.751, - "profile_path": "/d4I1Y8LiELi6mY8A9RLX0ZHfdlL.jpg", - "cast_id": 148, - "character": "Additional Voices (voice)", - "credit_id": "647a469f93828e01337720f6", - "order": 50 - }, - { - "adult": false, - "gender": 2, - "id": 1214171, - "known_for_department": "Acting", - "name": "Al Rodrigo", - "original_name": "Al Rodrigo", - "popularity": 2.964, - "profile_path": "/kyQSlxHVnla3MfXzs2XhKCRHWMw.jpg", - "cast_id": 149, - "character": "Additional Voices (voice)", - "credit_id": "647a46abe323f300a7d51c81", - "order": 51 - }, - { - "adult": false, - "gender": 2, - "id": 2528107, - "known_for_department": "Acting", - "name": "Stan Sellers", - "original_name": "Stan Sellers", - "popularity": 1.63, - "profile_path": "/2va92n2gYR0InEBPkZNSAV8NTuC.jpg", - "cast_id": 198, - "character": "Additional Voices (voice)", - "credit_id": "647a4956caef2d00c299a9f3", - "order": 52 - }, - { - "adult": false, - "gender": 2, - "id": 2068548, - "known_for_department": "Acting", - "name": "Warren Sroka", - "original_name": "Warren Sroka", - "popularity": 3.4, - "profile_path": "/gC6YSW8SLmqMU7rZ5W1xpZ9c0w6.jpg", - "cast_id": 199, - "character": "Additional Voices (voice)", - "credit_id": "647a4961e375c001356cbc62", - "order": 53 - }, - { - "adult": false, - "gender": 2, - "id": 1454441, - "known_for_department": "Acting", - "name": "Jasper Johannes Andrews", - "original_name": "Jasper Johannes Andrews", - "popularity": 0.897, - "profile_path": null, - "cast_id": 153, - "character": "Additional Voices (voice)", - "credit_id": "647a46fce323f300c42976d1", - "order": 54 - }, - { - "adult": false, - "gender": 2, - "id": 2014785, - "known_for_department": "Production", - "name": "Gredel Berrios Calladine", - "original_name": "Gredel Berrios Calladine", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Additional Voices (voice)", - "credit_id": "647a4708cf4b8b00c3d1ab10", - "order": 55 - }, - { - "adult": false, - "gender": 1, - "id": 1367223, - "known_for_department": "Acting", - "name": "Natalia Castellanos", - "original_name": "Natalia Castellanos", - "popularity": 0.908, - "profile_path": null, - "cast_id": 155, - "character": "Additional Voices (voice)", - "credit_id": "647a471593828e00dcdc24ef", - "order": 56 - }, - { - "adult": false, - "gender": 2, - "id": 4094203, - "known_for_department": "Production", - "name": "Russell Tyre Francis", - "original_name": "Russell Tyre Francis", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Additional Voices (voice)", - "credit_id": "647a472dcf4b8b0122756eab", - "order": 57 - }, - { - "adult": false, - "gender": 1, - "id": 176829, - "known_for_department": "Acting", - "name": "Deepti Gupta", - "original_name": "Deepti Gupta", - "popularity": 1.054, - "profile_path": "/kMvUaVfUXBbFpoRTwIiaeKlg1vj.jpg", - "cast_id": 157, - "character": "Additional Voices (voice)", - "credit_id": "647a473a17497300fb3a4852", - "order": 58 - }, - { - "adult": false, - "gender": 1, - "id": 1891226, - "known_for_department": "Acting", - "name": "Sohm Kapila", - "original_name": "Sohm Kapila", - "popularity": 1.28, - "profile_path": "/ySLjCzMYmeMKiP0xVO48F2aJLTE.jpg", - "cast_id": 158, - "character": "Additional Voices (voice)", - "credit_id": "647a4744e323f300c42976eb", - "order": 59 - }, - { - "adult": false, - "gender": 0, - "id": 2723084, - "known_for_department": "Acting", - "name": "Pradnya Kuwadekar", - "original_name": "Pradnya Kuwadekar", - "popularity": 0.6, - "profile_path": null, - "cast_id": 159, - "character": "Additional Voices (voice)", - "credit_id": "647a475a93828e00bf9dd27d", - "order": 60 - }, - { - "adult": false, - "gender": 1, - "id": 2581798, - "known_for_department": "Acting", - "name": "Ashley London", - "original_name": "Ashley London", - "popularity": 1.058, - "profile_path": null, - "cast_id": 160, - "character": "Additional Voices (voice)", - "credit_id": "647a4762caef2d0119bf0cbf", - "order": 61 - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "cast_id": 161, - "character": "Additional Voices (voice)", - "credit_id": "647a476fcf4b8b00e2d538fb", - "order": 62 - }, - { - "adult": false, - "gender": 1, - "id": 210826, - "known_for_department": "Acting", - "name": "Andrea Navedo", - "original_name": "Andrea Navedo", - "popularity": 4.568, - "profile_path": "/jTEuBC4T3lQiN0Uc8SOxc9rcxvo.jpg", - "cast_id": 162, - "character": "Additional Voices (voice)", - "credit_id": "647a4778e323f300a7d51cb7", - "order": 63 - }, - { - "adult": false, - "gender": 0, - "id": 4094207, - "known_for_department": "Acting", - "name": "Lakshmi Patel", - "original_name": "Lakshmi Patel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 163, - "character": "Additional Voices (voice)", - "credit_id": "647a4787caef2d00aa420f22", - "order": 64 - }, - { - "adult": false, - "gender": 1, - "id": 146392, - "known_for_department": "Acting", - "name": "Jacqueline Pinol", - "original_name": "Jacqueline Pinol", - "popularity": 5.795, - "profile_path": "/cqGFRdObF3UkMc3aTTA8fYSHQez.jpg", - "cast_id": 164, - "character": "Additional Voices (voice)", - "credit_id": "647a4795cf4b8b01031dcb1c", - "order": 65 - }, - { - "adult": false, - "gender": 2, - "id": 1456760, - "known_for_department": "Acting", - "name": "Eliyas Qureshi", - "original_name": "Eliyas Qureshi", - "popularity": 1.695, - "profile_path": "/y2qe3r9HueD3CcYw4uwJk0ae5C6.jpg", - "cast_id": 165, - "character": "Additional Voices (voice)", - "credit_id": "647a47a1e323f30127511f4c", - "order": 66 - }, - { - "adult": false, - "gender": 1, - "id": 2555587, - "known_for_department": "Directing", - "name": "Lashana Rodriguez", - "original_name": "Lashana Rodriguez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 166, - "character": "Additional Voices (voice)", - "credit_id": "647a47ade375c000a8e208bd", - "order": 67 - }, - { - "adult": false, - "gender": 2, - "id": 2173025, - "known_for_department": "Acting", - "name": "Jaswant Dev Shrestha", - "original_name": "Jaswant Dev Shrestha", - "popularity": 1.03, - "profile_path": "/blaiUznOljVlY3Nl9bEYkv7svtI.jpg", - "cast_id": 150, - "character": "Additional Voices (voice)", - "credit_id": "647a46b893828e00bf9dd253", - "order": 68 - }, - { - "adult": false, - "gender": 1, - "id": 2085351, - "known_for_department": "Production", - "name": "Libby Thomas Dickey", - "original_name": "Libby Thomas Dickey", - "popularity": 0.722, - "profile_path": null, - "cast_id": 151, - "character": "Additional Voices (voice)", - "credit_id": "647a46cbe375c000c1a6ac13", - "order": 69 - }, - { - "adult": false, - "gender": 2, - "id": 2597021, - "known_for_department": "Acting", - "name": "Jason Linere-White", - "original_name": "Jason Linere-White", - "popularity": 1.251, - "profile_path": "/pAFtUbLVa2uhnHvosjlW4c0QvQg.jpg", - "cast_id": 200, - "character": "Additional Voices (voice)", - "credit_id": "647a496ae323f300c429777c", - "order": 70 - }, - { - "adult": false, - "gender": 1, - "id": 1585158, - "known_for_department": "Acting", - "name": "Sitara Attaie", - "original_name": "Sitara Attaie", - "popularity": 2.479, - "profile_path": "/iPCRQ4UUh37otbd5cj982zq33rq.jpg", - "cast_id": 169, - "character": "Additional Voices (voice)", - "credit_id": "647a47d1cf4b8b00a87712f1", - "order": 71 - }, - { - "adult": false, - "gender": 1, - "id": 4094217, - "known_for_department": "Acting", - "name": "Mayuri Bhandari", - "original_name": "Mayuri Bhandari", - "popularity": 0.6, - "profile_path": null, - "cast_id": 170, - "character": "Additional Voices (voice)", - "credit_id": "647a47e0caef2d00df87fdac", - "order": 72 - }, - { - "adult": false, - "gender": 1, - "id": 172696, - "known_for_department": "Acting", - "name": "June Christopher", - "original_name": "June Christopher", - "popularity": 4.112, - "profile_path": "/f2JzxHGRfS0TL6kysHfVfaAeruP.jpg", - "cast_id": 171, - "character": "Additional Voices (voice)", - "credit_id": "647a47ebe375c000de5744f4", - "order": 73 - }, - { - "adult": false, - "gender": 1, - "id": 1734564, - "known_for_department": "Acting", - "name": "Michelle Jubilee Gonzalez", - "original_name": "Michelle Jubilee Gonzalez", - "popularity": 4.621, - "profile_path": "/rs6h9fvozdaRa2uCFKtPRQb9bFa.jpg", - "cast_id": 172, - "character": "Additional Voices (voice)", - "credit_id": "647a47f40e29a20116ac3f8c", - "order": 74 - }, - { - "adult": false, - "gender": 1, - "id": 1999048, - "known_for_department": "Acting", - "name": "Marabina Jaimes", - "original_name": "Marabina Jaimes", - "popularity": 1.273, - "profile_path": "/xhp7Hmz2kGjfLD7UUi2nLLypAjt.jpg", - "cast_id": 173, - "character": "Additional Voices (voice)", - "credit_id": "647a4817e375c000c1a6ac4a", - "order": 75 - }, - { - "adult": false, - "gender": 2, - "id": 144311, - "known_for_department": "Acting", - "name": "Rez Kempton", - "original_name": "Rez Kempton", - "popularity": 2.228, - "profile_path": "/d7r7wjKjs3dYiq036oFaGIZRbC9.jpg", - "cast_id": 174, - "character": "Additional Voices (voice)", - "credit_id": "647a4820caef2d00df87fdc0", - "order": 76 - }, - { - "adult": false, - "gender": 2, - "id": 571309, - "known_for_department": "Acting", - "name": "Lex Lang", - "original_name": "Lex Lang", - "popularity": 2.82, - "profile_path": "/hrgjiwtrnI6meAg2Q1eTGpyTrDX.jpg", - "cast_id": 175, - "character": "Additional Voices (voice)", - "credit_id": "647a482a17497300fb3a488c", - "order": 77 - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "cast_id": 176, - "character": "Additional Voices (voice)", - "credit_id": "647a4833caef2d01362a88d5", - "order": 78 - }, - { - "adult": false, - "gender": 2, - "id": 64448, - "known_for_department": "Acting", - "name": "Richard Miro", - "original_name": "Richard Miro", - "popularity": 1.615, - "profile_path": null, - "cast_id": 177, - "character": "Additional Voices (voice)", - "credit_id": "647a4842cf4b8b0122756efb", - "order": 79 - }, - { - "adult": false, - "gender": 2, - "id": 1370757, - "known_for_department": "Editing", - "name": "Doug Nicholas", - "original_name": "Doug Nicholas", - "popularity": 3.198, - "profile_path": null, - "cast_id": 178, - "character": "Additional Voices (voice)", - "credit_id": "647a4850caef2d0119bf0d19", - "order": 80 - }, - { - "adult": false, - "gender": 1, - "id": 2104889, - "known_for_department": "Acting", - "name": "Shakira Ja'nai Paye", - "original_name": "Shakira Ja'nai Paye", - "popularity": 2.136, - "profile_path": "/lLfE7s8uX0aklFCHeyJEDfgpJOl.jpg", - "cast_id": 179, - "character": "Additional Voices (voice)", - "credit_id": "647a485dcf4b8b0122756f09", - "order": 81 - }, - { - "adult": false, - "gender": 2, - "id": 4094221, - "known_for_department": "Acting", - "name": "James Pirri", - "original_name": "James Pirri", - "popularity": 0.6, - "profile_path": null, - "cast_id": 180, - "character": "Additional Voices (voice)", - "credit_id": "647a4879caef2d01362a88eb", - "order": 82 - }, - { - "adult": false, - "gender": 1, - "id": 4094225, - "known_for_department": "Acting", - "name": "Marley Ralph", - "original_name": "Marley Ralph", - "popularity": 0.6, - "profile_path": null, - "cast_id": 181, - "character": "Additional Voices (voice)", - "credit_id": "647a488793828e011623dc55", - "order": 83 - }, - { - "adult": false, - "gender": 1, - "id": 81380, - "known_for_department": "Acting", - "name": "Michelle Ruff", - "original_name": "Michelle Ruff", - "popularity": 2.228, - "profile_path": "/wO6VvUeVRlVm2N4lutsz6ayBxL5.jpg", - "cast_id": 182, - "character": "Additional Voices (voice)", - "credit_id": "647a48900e29a20133c3078b", - "order": 84 - }, - { - "adult": false, - "gender": 2, - "id": 2204259, - "known_for_department": "Acting", - "name": "Dennis Singletary", - "original_name": "Dennis Singletary", - "popularity": 2.037, - "profile_path": "/rlUQcql7XFfIWBNccKvIW0WnIPW.jpg", - "cast_id": 167, - "character": "Additional Voices (voice)", - "credit_id": "647a47b7174973013500d5f9", - "order": 85 - }, - { - "adult": false, - "gender": 1, - "id": 1354657, - "known_for_department": "Acting", - "name": "Amanda Troop", - "original_name": "Amanda Troop", - "popularity": 3.666, - "profile_path": "/oIiz7YCwDCphqCWNA6zUzl30WQ9.jpg", - "cast_id": 168, - "character": "Additional Voices (voice)", - "credit_id": "647a47c017497300de65cc0d", - "order": 86 - }, - { - "adult": false, - "gender": 2, - "id": 1445768, - "known_for_department": "Acting", - "name": "Ruth Zalduondo", - "original_name": "Ruth Zalduondo", - "popularity": 3.289, - "profile_path": "/sf9FN5qZg07PdRR49N1ijBmcMap.jpg", - "cast_id": 152, - "character": "Additional Voices (voice)", - "credit_id": "647a46d5caef2d00c299a966", - "order": 87 - }, - { - "adult": false, - "gender": 0, - "id": 1542616, - "known_for_department": "Acting", - "name": "Kimberly Bailey", - "original_name": "Kimberly Bailey", - "popularity": 6.958, - "profile_path": "/6es4CpmmlA7j6VCxpVvlSTfvi76.jpg", - "cast_id": 185, - "character": "Additional Voices (voice)", - "credit_id": "647a48b0e323f300e523fbef", - "order": 88 - }, - { - "adult": false, - "gender": 2, - "id": 208833, - "known_for_department": "Acting", - "name": "Sanjay Chandani", - "original_name": "Sanjay Chandani", - "popularity": 1.561, - "profile_path": "/rMNrvpeqAETZqvQivewVYDhK5pS.jpg", - "cast_id": 186, - "character": "Additional Voices (voice)", - "credit_id": "647a48bbe375c0011876919d", - "order": 89 - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "cast_id": 187, - "character": "Additional Voices (voice)", - "credit_id": "647a48c593828e00a763ec0e", - "order": 90 - }, - { - "adult": false, - "gender": 2, - "id": 1265056, - "known_for_department": "Directing", - "name": "Jorge R. Gutierrez", - "original_name": "Jorge R. Gutierrez", - "popularity": 6.566, - "profile_path": "/dhL3pHR1WkbONH9dD4Sya9DbrXq.jpg", - "cast_id": 188, - "character": "Additional Voices (voice)", - "credit_id": "647a48cfe375c000de574525", - "order": 91 - }, - { - "adult": false, - "gender": 2, - "id": 1703174, - "known_for_department": "Directing", - "name": "Miguel Jiron", - "original_name": "Miguel Jiron", - "popularity": 1.343, - "profile_path": "/sBEHuSRFK6T9DqBYQX93qSAFAFU.jpg", - "cast_id": 189, - "character": "Additional Voices (voice)", - "credit_id": "647a48db0e29a200dcba6299", - "order": 92 - }, - { - "adult": false, - "gender": 1, - "id": 3565686, - "known_for_department": "Acting", - "name": "Deepti Kingra-Mickelsen", - "original_name": "Deepti Kingra-Mickelsen", - "popularity": 0.63, - "profile_path": null, - "cast_id": 190, - "character": "Additional Voices (voice)", - "credit_id": "647a48e693828e011623dc63", - "order": 93 - }, - { - "adult": false, - "gender": 1, - "id": 106800, - "known_for_department": "Acting", - "name": "Luisa Leschin", - "original_name": "Luisa Leschin", - "popularity": 3.254, - "profile_path": "/gMCsy4g818oR5V5Q6B4TQvYQAOr.jpg", - "cast_id": 191, - "character": "Additional Voices (voice)", - "credit_id": "647a48f2e375c000fb0072b3", - "order": 94 - }, - { - "adult": false, - "gender": 1, - "id": 59055, - "known_for_department": "Production", - "name": "Caitlin McKenna", - "original_name": "Caitlin McKenna", - "popularity": 4.18, - "profile_path": "/cPfk4htR9X7gUnr1jYsKs0Y5qBq.jpg", - "cast_id": 192, - "character": "Additional Voices (voice)", - "credit_id": "647a48fe93828e0133772175", - "order": 95 - }, - { - "adult": false, - "gender": 2, - "id": 80823, - "known_for_department": "Sound", - "name": "Andrew Morgado", - "original_name": "Andrew Morgado", - "popularity": 9.997, - "profile_path": "/rDkWTPcsFtw5MQCi1qxSXXZlXG2.jpg", - "cast_id": 193, - "character": "Additional Voices (voice)", - "credit_id": "647a490e0e29a200a65fd2a9", - "order": 96 - }, - { - "adult": false, - "gender": 2, - "id": 1999054, - "known_for_department": "Acting", - "name": "Arthur Ortiz", - "original_name": "Arthur Ortiz", - "popularity": 1.504, - "profile_path": "/26L5ZNu9uV9onUB04RbEeKwB085.jpg", - "cast_id": 194, - "character": "Additional Voices (voice)", - "credit_id": "647a491e17497300fb3a48e2", - "order": 97 - }, - { - "adult": false, - "gender": 1, - "id": 4094234, - "known_for_department": "Acting", - "name": "Eliana A. Perez", - "original_name": "Eliana A. Perez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 195, - "character": "Additional Voices (voice)", - "credit_id": "647a4934e375c000c1a6ac95", - "order": 98 - }, - { - "adult": false, - "gender": 2, - "id": 1735014, - "known_for_department": "Acting", - "name": "Juan Pope", - "original_name": "Juan Pope", - "popularity": 4.889, - "profile_path": "/ucc4oGk140GBPVTkWNkreV0lxlw.jpg", - "cast_id": 196, - "character": "Additional Voices (voice)", - "credit_id": "647a4941e375c000fb0072ca", - "order": 99 - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "cast_id": 197, - "character": "Additional Voices (voice)", - "credit_id": "647a494ccf4b8b01031dcb7e", - "order": 100 - }, - { - "adult": false, - "gender": 1, - "id": 2012497, - "known_for_department": "Editing", - "name": "Erika Scopelli", - "original_name": "Erika Scopelli", - "popularity": 0.6, - "profile_path": null, - "cast_id": 755, - "character": "Additional Voices (voice)", - "credit_id": "64d8572737109700c51b16cb", - "order": 101 - }, - { - "adult": false, - "gender": 2, - "id": 4094227, - "known_for_department": "Acting", - "name": "Narender Sood", - "original_name": "Narender Sood", - "popularity": 0.6, - "profile_path": null, - "cast_id": 183, - "character": "Additional Voices (voice)", - "credit_id": "647a489a93828e00dcdc2558", - "order": 102 - }, - { - "adult": false, - "gender": 2, - "id": 1452946, - "known_for_department": "Acting", - "name": "Cedric L. Williams", - "original_name": "Cedric L. Williams", - "popularity": 1.292, - "profile_path": "/sBxfuNnJMHq60KJP1HRYxLSRBR6.jpg", - "cast_id": 184, - "character": "Additional Voices (voice)", - "credit_id": "647a48a6e323f300e523fbeb", - "order": 103 - }, - { - "adult": false, - "gender": 1, - "id": 1443708, - "known_for_department": "Acting", - "name": "Kimiko Glenn", - "original_name": "Kimiko Glenn", - "popularity": 6.207, - "profile_path": "/6QnVIyHKbzx0ZsUr3BmIwnZxujL.jpg", - "cast_id": 100, - "character": "Peni Parker (voice) (uncredited)", - "credit_id": "6479515a93828e013376bfbc", - "order": 104 - }, - { - "adult": false, - "gender": 1, - "id": 2141479, - "known_for_department": "Acting", - "name": "Peggy Lu", - "original_name": "Peggy Lu", - "popularity": 2.67, - "profile_path": "/ng5eaDcOf9kSwIYGNmwF9wEfIHp.jpg", - "cast_id": 79, - "character": "Mrs. Chen (archive footage) (uncredited)", - "credit_id": "646edcf817c443013608747f", - "order": 105 - }, - { - "adult": false, - "gender": 2, - "id": 37625, - "known_for_department": "Acting", - "name": "Andrew Garfield", - "original_name": "Andrew Garfield", - "popularity": 39.386, - "profile_path": "/5ydZ6TluPtxlz5G8nlWMB7SGmow.jpg", - "cast_id": 598, - "character": "Peter Parker / Spider-Man (archive footage) (uncredited)", - "credit_id": "647dc3fd0e29a22be08df4ab", - "order": 106 - }, - { - "adult": false, - "gender": 2, - "id": 5724, - "known_for_department": "Acting", - "name": "Denis Leary", - "original_name": "Denis Leary", - "popularity": 13.219, - "profile_path": "/nAqHuIw8z1QodcXdaJQShKogVFa.jpg", - "cast_id": 599, - "character": "Captain Stacy (archive footage) (uncredited)", - "credit_id": "647dc40ecf4b8b0141902cd0", - "order": 107 - }, - { - "adult": false, - "gender": 2, - "id": 2219, - "known_for_department": "Acting", - "name": "Tobey Maguire", - "original_name": "Tobey Maguire", - "popularity": 30.012, - "profile_path": "/kOJelnLSb89SeivbOCt1l94Hz2d.jpg", - "cast_id": 600, - "character": "Peter Parker / Spider-Man (archive footage) (uncredited)", - "credit_id": "647dc41ecf4b8b0141902cda", - "order": 108 - }, - { - "adult": false, - "gender": 2, - "id": 19153, - "known_for_department": "Acting", - "name": "Cliff Robertson", - "original_name": "Cliff Robertson", - "popularity": 12.039, - "profile_path": "/8pH2RWCPtXKzT9P33MbzgnzPlF0.jpg", - "cast_id": 601, - "character": "Ben Parker (archive footage) (uncredited)", - "credit_id": "647dc42bcaef2d0119c0c05c", - "order": 109 - }, - { - "adult": false, - "gender": 2, - "id": 658, - "known_for_department": "Acting", - "name": "Alfred Molina", - "original_name": "Alfred Molina", - "popularity": 17.212, - "profile_path": "/nJo91Czesn6z0d0pkfbDoVZY3sg.jpg", - "cast_id": 602, - "character": "Doctor Octopus (voice) (archive footage) (uncredited)", - "credit_id": "647dc43d93828e00bf9f6ce3", - "order": 110 - }, - { - "adult": false, - "gender": 2, - "id": 1821863, - "known_for_department": "Acting", - "name": "Post Malone", - "original_name": "Post Malone", - "popularity": 11.19, - "profile_path": "/v25LUebWdx60p6mMy1OzIHc0EVs.jpg", - "cast_id": 603, - "character": "Brooklyn Bystander (voice) (archive footage) (uncredited)", - "credit_id": "647dc47c17497300fb3bf507", - "order": 111 - }, - { - "adult": false, - "gender": 2, - "id": 933558, - "known_for_department": "Acting", - "name": "John Mulaney", - "original_name": "John Mulaney", - "popularity": 8.758, - "profile_path": "/fag9JGgIVSeraG4FQ4WSmq4qCIA.jpg", - "cast_id": 760, - "character": "Peter Porker / Spider-Ham (voice) (archive footage) (uncredited)", - "credit_id": "64f93bdbffc9de0138eafaac", - "order": 112 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 7626, - "known_for_department": "Production", - "name": "Avi Arad", - "original_name": "Avi Arad", - "popularity": 4.319, - "profile_path": "/cxmqw0anGfxC7RwUNQj3EwhX9pP.jpg", - "credit_id": "60835778e8601700294f11de", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 7903, - "known_for_department": "Production", - "name": "Mary Hidalgo", - "original_name": "Mary Hidalgo", - "popularity": 3.335, - "profile_path": null, - "credit_id": "6093a5193f8ede002a45c5c8", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 8047, - "known_for_department": "Visual Effects", - "name": "Peter Nash", - "original_name": "Peter Nash", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bb85217497300de66713c", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 8166, - "known_for_department": "Sound", - "name": "Juan Peralta", - "original_name": "Juan Peralta", - "popularity": 0.706, - "profile_path": "/e89pv3PlTiauZHa1CuC9i8M34Wl.jpg", - "credit_id": "647bc68693828e00a7649275", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 19103, - "known_for_department": "Sound", - "name": "Paul Francis Webster", - "original_name": "Paul Francis Webster", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884208d2b20900ca213126", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 35666, - "known_for_department": "Production", - "name": "Christina Steinberg", - "original_name": "Christina Steinberg", - "popularity": 2.235, - "profile_path": "/5o9DnKyNJVVi8TkKDvLmk65JGxQ.jpg", - "credit_id": "608357872da84600297f2281", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57264, - "known_for_department": "Writing", - "name": "Dave Callaham", - "original_name": "Dave Callaham", - "popularity": 3.361, - "profile_path": "/mbppbv25p2o2W6FAtPbFNSUeGLj.jpg", - "credit_id": "63ec32a78e870200823b1007", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 1, - "id": 59055, - "known_for_department": "Production", - "name": "Caitlin McKenna", - "original_name": "Caitlin McKenna", - "popularity": 4.18, - "profile_path": "/cPfk4htR9X7gUnr1jYsKs0Y5qBq.jpg", - "credit_id": "647bc7bbcf4b8b01031e6b9f", - "department": "Production", - "job": "ADR Voice Casting" - }, - { - "adult": false, - "gender": 2, - "id": 59918, - "known_for_department": "Writing", - "name": "Rodney Rothman", - "original_name": "Rodney Rothman", - "popularity": 6.665, - "profile_path": "/75yKuJr1wL8qesEDYL2IHK67BEx.jpg", - "credit_id": "6399153ce263bb009106bb8a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 76748, - "known_for_department": "Art", - "name": "Peter Zaslav", - "original_name": "Peter Zaslav", - "popularity": 1.289, - "profile_path": null, - "credit_id": "647be7ef93828e00a764a9d1", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 81634, - "known_for_department": "Writing", - "name": "Chris Mitchell", - "original_name": "Chris Mitchell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0890e29a20133c3b018", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "credit_id": "5dbcf5e90792e100184c3def", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 107446, - "known_for_department": "Production", - "name": "Phil Lord", - "original_name": "Phil Lord", - "popularity": 6.892, - "profile_path": "/yGLAUCnWwB0cQM0Ivb5FKzv3tr4.jpg", - "credit_id": "63ec32821b729400aab4ec63", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 89596, - "known_for_department": "Directing", - "name": "Joaquim Dos Santos", - "original_name": "Joaquim Dos Santos", - "popularity": 3.429, - "profile_path": "/w45GPb3cW6TqPw4FxB5Hc6zzAwx.jpg", - "credit_id": "5c17ccfe0e0a26037f3e5aa6", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 95353, - "known_for_department": "Acting", - "name": "Lil Wayne", - "original_name": "Lil Wayne", - "popularity": 1.211, - "profile_path": "/90bC08uoGQ9d9AKNplaumlgnUAm.jpg", - "credit_id": "648841ab99259c00c5b63401", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 149993, - "known_for_department": "Acting", - "name": "Reggie Yates", - "original_name": "Reggie Yates", - "popularity": 0.641, - "profile_path": "/eO5SQzSRcdfz0bdF8CtVyMnxhrg.jpg", - "credit_id": "647bb34893828e00a7648de1", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 151007, - "known_for_department": "Directing", - "name": "Peter Ramsey", - "original_name": "Peter Ramsey", - "popularity": 4.081, - "profile_path": "/eAL9QdCEYyxiMP9cl9lQddg8zEa.jpg", - "credit_id": "61ac16ed62e86f008f3b1f93", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "credit_id": "5dbcf5f9a58902001c6b61cd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 155267, - "known_for_department": "Production", - "name": "Christopher Miller", - "original_name": "Christopher Miller", - "popularity": 10.188, - "profile_path": "/dr2yCgYtmNmO5vzjk9KNbjTpbzO.jpg", - "credit_id": "63ec32948e870200a9896b34", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 156223, - "known_for_department": "Writing", - "name": "Peter David", - "original_name": "Peter David", - "popularity": 2.142, - "profile_path": null, - "credit_id": "647be5fb93828e00a764a84a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 224855, - "known_for_department": "Acting", - "name": "Rakim", - "original_name": "Rakim", - "popularity": 2.12, - "profile_path": "/umq9c1mNZAKRHi3QC2yYhElOEps.jpg", - "credit_id": "64883f2be2726001287b63c6", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 548445, - "known_for_department": "Sound", - "name": "Jeffrey Wilhoit", - "original_name": "Jeffrey Wilhoit", - "popularity": 1.287, - "profile_path": null, - "credit_id": "647bc79717497300a819798c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 552252, - "known_for_department": "Acting", - "name": "Hasan Minhaj", - "original_name": "Hasan Minhaj", - "popularity": 6.677, - "profile_path": "/6vHHhLnbKBCPmYc90qAV2Cde95F.jpg", - "credit_id": "647be88193828e00a764aa4c", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 582922, - "known_for_department": "Sound", - "name": "Daniel Pemberton", - "original_name": "Daniel Pemberton", - "popularity": 2.494, - "profile_path": "/dPcjpSoCg1nraqCUD4tvRK3QtHQ.jpg", - "credit_id": "6093a50b54508d002aedfe2a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 587970, - "known_for_department": "Directing", - "name": "Matthew A. Cherry", - "original_name": "Matthew A. Cherry", - "popularity": 1.887, - "profile_path": "/uCuy3eVgWzl4EoJcxn2GTz1vXQO.jpg", - "credit_id": "647bb0d8e323f3014816b7b9", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 928346, - "known_for_department": "Costume & Make-Up", - "name": "Trayce Gigi Field", - "original_name": "Trayce Gigi Field", - "popularity": 0.6, - "profile_path": "/lYTLLM21WTtBrqQmedivhlKXBRq.jpg", - "credit_id": "647be6fccaef2d00df88bede", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 928661, - "known_for_department": "Visual Effects", - "name": "Navjit Singh Gill", - "original_name": "Navjit Singh Gill", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ea2e375c0011c7f5504", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 936670, - "known_for_department": "Production", - "name": "Bob Persichetti", - "original_name": "Bob Persichetti", - "popularity": 2.182, - "profile_path": "/cNd5VyMI3sNgiHOwLIB7WDiH128.jpg", - "credit_id": "63991532ce9e910087c86f90", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 951362, - "known_for_department": "Visual Effects", - "name": "Pablo Holcer", - "original_name": "Pablo Holcer", - "popularity": 0.775, - "profile_path": null, - "credit_id": "647ba50c8d2f8d00aa5dd96f", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 968411, - "known_for_department": "Art", - "name": "Michael Kurinsky", - "original_name": "Michael Kurinsky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb69be323f300c42a143f", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 1046497, - "known_for_department": "Art", - "name": "Justin K. Thompson", - "original_name": "Justin K. Thompson", - "popularity": 3.593, - "profile_path": "/mRMi8Q2fmlfbDYkE7A63gzFtGsZ.jpg", - "credit_id": "607e088a01b1ca0041e6957a", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1127833, - "known_for_department": "Editing", - "name": "Arthur D. Noda", - "original_name": "Arthur D. Noda", - "popularity": 0.628, - "profile_path": null, - "credit_id": "64d85228d100b600c5d1a964", - "department": "Editing", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1133968, - "known_for_department": "Sound", - "name": "Matt Dunkley", - "original_name": "Matt Dunkley", - "popularity": 0.84, - "profile_path": "/7NE9BflY3sri76hQ6P84NAUs1Dl.jpg", - "credit_id": "647bc7e993828e00a76492c8", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 1133968, - "known_for_department": "Sound", - "name": "Matt Dunkley", - "original_name": "Matt Dunkley", - "popularity": 0.84, - "profile_path": "/7NE9BflY3sri76hQ6P84NAUs1Dl.jpg", - "credit_id": "647bc7eecaef2d00df88a9a9", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 1210253, - "known_for_department": "Visual Effects", - "name": "Joe Moshier", - "original_name": "Joe Moshier", - "popularity": 0.6, - "profile_path": "/ijjGmMXeqsPskMcrQVEqgSrahOj.jpg", - "credit_id": "647bb48193828e00dcdcd34c", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1225024, - "known_for_department": "Writing", - "name": "Jeff Loveness", - "original_name": "Jeff Loveness", - "popularity": 4.063, - "profile_path": "/uq3MZhGWq6jvDgrYiHkofUpd5e4.jpg", - "credit_id": "647be71393828e00dcdceff4", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1236340, - "known_for_department": "Sound", - "name": "Dylan Tuomy-Wilhoit", - "original_name": "Dylan Tuomy-Wilhoit", - "popularity": 0.884, - "profile_path": null, - "credit_id": "647bc79ee323f3014816bd84", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1242714, - "known_for_department": "Acting", - "name": "Bobby Bland", - "original_name": "Bobby Bland", - "popularity": 0.828, - "profile_path": null, - "credit_id": "648841e7e272600147bb719d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1245364, - "known_for_department": "Acting", - "name": "Jeff Koons", - "original_name": "Jeff Koons", - "popularity": 1.268, - "profile_path": "/omhHKQPGdsnZ1clyX4k1x3gfu38.jpg", - "credit_id": "647be70e93828e00bf9e9326", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1260953, - "known_for_department": "Visual Effects", - "name": "Eric R. Huang", - "original_name": "Eric R. Huang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbde17497300fb3af56e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1274309, - "known_for_department": "Sound", - "name": "Randy Singer", - "original_name": "Randy Singer", - "popularity": 1.35, - "profile_path": null, - "credit_id": "647bc76fe323f3014816bd7a", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1320090, - "known_for_department": "Production", - "name": "Aditya Sood", - "original_name": "Aditya Sood", - "popularity": 1.4, - "profile_path": "/jtL8x7tcNJSF1muFcGSF16K7SUw.jpg", - "credit_id": "61ac16fd62e86f0063cd21c8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1327776, - "known_for_department": "Editing", - "name": "T.J. Young", - "original_name": "T.J. Young", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec32ee699fb7008cd5bd82", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1354982, - "known_for_department": "Writing", - "name": "Rachna Fruchbom", - "original_name": "Rachna Fruchbom", - "popularity": 0.696, - "profile_path": null, - "credit_id": "647be70317497300c13293ed", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1370749, - "known_for_department": "Writing", - "name": "Craig Berry", - "original_name": "Craig Berry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e6835cf4b8b00e2d6f2fb", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1371064, - "known_for_department": "Sound", - "name": "Gregg Barbanell", - "original_name": "Gregg Barbanell", - "popularity": 0.716, - "profile_path": null, - "credit_id": "647bc786cf4b8b00e2d5da09", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1378828, - "known_for_department": "Sound", - "name": "Michael Semanick", - "original_name": "Michael Semanick", - "popularity": 1.559, - "profile_path": "/poGaVc3vdZmkZCvSLNIkkIsxffj.jpg", - "credit_id": "647bc68193828e013377cced", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1379766, - "known_for_department": "Directing", - "name": "David Ehrlich", - "original_name": "David Ehrlich", - "popularity": 1.697, - "profile_path": null, - "credit_id": "647be64ee323f300e524b36b", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1382000, - "known_for_department": "Writing", - "name": "Brian Michael Bendis", - "original_name": "Brian Michael Bendis", - "popularity": 1.575, - "profile_path": "/zYcyWooAjXFJCU7GVyzvHDqpPP0.jpg", - "credit_id": "6399155ba8b2ca00c3ff5748", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1388872, - "known_for_department": "Visual Effects", - "name": "Katherine Renee Jones", - "original_name": "Katherine Renee Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba51393828e00dcdccf76", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1389592, - "known_for_department": "Production", - "name": "Alonzo Ruvalcaba", - "original_name": "Alonzo Ruvalcaba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "607e4d44160e730040dea4bb", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1393382, - "known_for_department": "Sound", - "name": "David Werntz", - "original_name": "David Werntz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6d117497300de6674c8", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1393444, - "known_for_department": "Sound", - "name": "Ryan Collins", - "original_name": "Ryan Collins", - "popularity": 0.736, - "profile_path": null, - "credit_id": "647bc76793828e0116248d69", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1395405, - "known_for_department": "Visual Effects", - "name": "Tyler Kakac", - "original_name": "Tyler Kakac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc4ecf4b8b01031e690a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1399327, - "known_for_department": "Sound", - "name": "Barbara McDermott", - "original_name": "Barbara McDermott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc7e00e29a200f981ef7c", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1404364, - "known_for_department": "Sound", - "name": "Robert Getty", - "original_name": "Robert Getty", - "popularity": 0.748, - "profile_path": null, - "credit_id": "647bc710cf4b8b01418f3a4d", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1404364, - "known_for_department": "Sound", - "name": "Robert Getty", - "original_name": "Robert Getty", - "popularity": 0.748, - "profile_path": null, - "credit_id": "647bc7260e29a20133c3b5eb", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1406389, - "known_for_department": "Sound", - "name": "Bruce Tanis", - "original_name": "Bruce Tanis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc6d70e29a200dcbb0d6f", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1407812, - "known_for_department": "Sound", - "name": "Geoffrey G. Rubay", - "original_name": "Geoffrey G. Rubay", - "popularity": 0.821, - "profile_path": null, - "credit_id": "647bc690e323f300c42a181b", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1413092, - "known_for_department": "Sound", - "name": "James Morioka", - "original_name": "James Morioka", - "popularity": 1.249, - "profile_path": null, - "credit_id": "647bc6c093828e00bf9e7c7b", - "department": "Sound", - "job": "Supervising ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1413092, - "known_for_department": "Sound", - "name": "James Morioka", - "original_name": "James Morioka", - "popularity": 1.249, - "profile_path": null, - "credit_id": "647bc6b7cf4b8b00e2d5d9c3", - "department": "Sound", - "job": "Supervising Dialogue Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1414145, - "known_for_department": "Sound", - "name": "Alex Ullrich", - "original_name": "Alex Ullrich", - "popularity": 0.736, - "profile_path": null, - "credit_id": "647bc78bcf4b8b0122761e7e", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 1, - "id": 1425616, - "known_for_department": "Production", - "name": "Amy Pascal", - "original_name": "Amy Pascal", - "popularity": 1.85, - "profile_path": "/texxoBV4naFHyuSii6jyxlfuEvK.jpg", - "credit_id": "5c2943ac0e0a26541c36f188", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1425978, - "known_for_department": "Sound", - "name": "Gary Summers", - "original_name": "Gary Summers", - "popularity": 1.774, - "profile_path": null, - "credit_id": "647bc760cf4b8b00c3d25303", - "department": "Sound", - "job": "Additional Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1433721, - "known_for_department": "Sound", - "name": "Greg ten Bosch", - "original_name": "Greg ten Bosch", - "popularity": 1.684, - "profile_path": null, - "credit_id": "647bc6dd0e29a200dcbb0d73", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1440822, - "known_for_department": "Sound", - "name": "John Pospisil", - "original_name": "John Pospisil", - "popularity": 1.006, - "profile_path": null, - "credit_id": "647bc698e323f30106153c11", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1441747, - "known_for_department": "Visual Effects", - "name": "Agustín Ross Beraldi", - "original_name": "Agustín Ross Beraldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb861cf4b8b00a877abfe", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1447395, - "known_for_department": "Art", - "name": "Richard Daskas", - "original_name": "Richard Daskas", - "popularity": 0.638, - "profile_path": "/84L31yTnywKtIpoBkkvAArVjDaD.jpg", - "credit_id": "647be5f0caef2d00fce5cbe9", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1451299, - "known_for_department": "Art", - "name": "Matt Jones", - "original_name": "Matt Jones", - "popularity": 0.713, - "profile_path": null, - "credit_id": "647baf550e29a200bf1efd6e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1453004, - "known_for_department": "Visual Effects", - "name": "Toby Pedersen", - "original_name": "Toby Pedersen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe8717497300c1327ccb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1453502, - "known_for_department": "Visual Effects", - "name": "David Vandervoort", - "original_name": "David Vandervoort", - "popularity": 0.652, - "profile_path": null, - "credit_id": "647bc545e323f300a7d5c20a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1455615, - "known_for_department": "Visual Effects", - "name": "Philip Rudolph", - "original_name": "Philip Rudolph", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba438cf4b8b00a877a78b", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 1458304, - "known_for_department": "Visual Effects", - "name": "Aurélien Predal", - "original_name": "Aurélien Predal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6d6e323f3012751c74a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1459751, - "known_for_department": "Visual Effects", - "name": "Dave Mah", - "original_name": "Dave Mah", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd7093828e00dcdcd5f7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1460510, - "known_for_department": "Visual Effects", - "name": "Mario Richard", - "original_name": "Mario Richard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc16817497300de667384", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1463586, - "known_for_department": "Crew", - "name": "Conrad Olson", - "original_name": "Conrad Olson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f2dc9dbf90100cae6a4", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 1464412, - "known_for_department": "Visual Effects", - "name": "Frank E. Abney III", - "original_name": "Frank E. Abney III", - "popularity": 0.6, - "profile_path": "/9UNcxSpcBuEmaDYWx8yWh6ca7Gx.jpg", - "credit_id": "647bb89e17497300de667153", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1466867, - "known_for_department": "Writing", - "name": "Max Perkins", - "original_name": "Max Perkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf8fcf4b8b00e2d5d46e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1473414, - "known_for_department": "Visual Effects", - "name": "Jocelyn Cofer", - "original_name": "Jocelyn Cofer", - "popularity": 0.614, - "profile_path": null, - "credit_id": "647bb9ffcaef2d0119bfbbce", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1511473, - "known_for_department": "Writing", - "name": "Mark Ackland", - "original_name": "Mark Ackland", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bb045cf4b8b00c3d24d90", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1521445, - "known_for_department": "Acting", - "name": "A$AP Rocky", - "original_name": "A$AP Rocky", - "popularity": 8.254, - "profile_path": "/gL0NFnIrqLosSbdxAHExOHAMkFH.jpg", - "credit_id": "6488427ce27260010723d607", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1528686, - "known_for_department": "Visual Effects", - "name": "Ramón de la Cuesta", - "original_name": "Ramón de la Cuesta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba7ecaef2d0119bfbc02", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1528730, - "known_for_department": "Visual Effects", - "name": "Pedro de la Llave", - "original_name": "Pedro de la Llave", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba960e29a20133c3b2b1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1529446, - "known_for_department": "Acting", - "name": "Becky G", - "original_name": "Becky G", - "popularity": 9.472, - "profile_path": "/9wT0OYw4e708koAg1Xfbyx6mA62.jpg", - "credit_id": "64883fb299259c00e2f6a4f2", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 1530088, - "known_for_department": "Sound", - "name": "Kier Lehman", - "original_name": "Kier Lehman", - "popularity": 2.324, - "profile_path": null, - "credit_id": "63ec33c1699fb7009e3d20ce", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1534197, - "known_for_department": "Sound", - "name": "Katie Greathouse", - "original_name": "Katie Greathouse", - "popularity": 1.143, - "profile_path": null, - "credit_id": "647bc7d90e29a20116ace8a8", - "department": "Sound", - "job": "Supervising Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1545164, - "known_for_department": "Sound", - "name": "Mark Baechle", - "original_name": "Mark Baechle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6494c50b880551014413fced", - "department": "Sound", - "job": "Orchestrator" - }, - { - "adult": false, - "gender": 2, - "id": 1546437, - "known_for_department": "Editing", - "name": "Michael Andrews", - "original_name": "Michael Andrews", - "popularity": 1.407, - "profile_path": null, - "credit_id": "647234c49408ec00e14c6160", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1577480, - "known_for_department": "Art", - "name": "Denise Koyama", - "original_name": "Denise Koyama", - "popularity": 0.73, - "profile_path": null, - "credit_id": "647baf5fcaef2d00c29a4e54", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1595460, - "known_for_department": "Art", - "name": "John Bell", - "original_name": "John Bell", - "popularity": 1.245, - "profile_path": null, - "credit_id": "6483ae61bf31f2505705b85c", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 1597629, - "known_for_department": "Visual Effects", - "name": "Craig Kellman", - "original_name": "Craig Kellman", - "popularity": 1.211, - "profile_path": "/c5LqdP9ouyqaZeOhF9D05PjOSeu.jpg", - "credit_id": "647be709cf4b8b00c3d2683a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1609692, - "known_for_department": "Acting", - "name": "Halavah Sofsky", - "original_name": "Halavah Sofsky", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be78517497300c132944f", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1615286, - "known_for_department": "Art", - "name": "Dean Gordon", - "original_name": "Dean Gordon", - "popularity": 0.743, - "profile_path": "/khLOsf9QWyscE5zUZ7XjhGZy5Hs.jpg", - "credit_id": "63ec335b813cb600dc071a13", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1615799, - "known_for_department": "Camera", - "name": "Rich Turner", - "original_name": "Rich Turner", - "popularity": 0.6, - "profile_path": "/ilIa48mdt1zlg37p7VRiHoyYidA.jpg", - "credit_id": "647ba0710e29a20133c3ac04", - "department": "Camera", - "job": "Head of Layout" - }, - { - "adult": false, - "gender": 1, - "id": 1634460, - "known_for_department": "Editing", - "name": "Natasha Leonnet", - "original_name": "Natasha Leonnet", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc8aacf4b8b00c3d2534f", - "department": "Editing", - "job": "Digital Colorist" - }, - { - "adult": false, - "gender": 1, - "id": 1645479, - "known_for_department": "Production", - "name": "Jessica Berri", - "original_name": "Jessica Berri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647b9fb6e323f301061532d3", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1646562, - "known_for_department": "Visual Effects", - "name": "Emmanuel Gatera", - "original_name": "Emmanuel Gatera", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0fae323f300e52496a5", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "credit_id": "647bb155caef2d0119bfb994", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 1673809, - "known_for_department": "Visual Effects", - "name": "Laide Agunbiade", - "original_name": "Laide Agunbiade", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fb8bd2b209014e0a2e4b", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1673809, - "known_for_department": "Visual Effects", - "name": "Laide Agunbiade", - "original_name": "Laide Agunbiade", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fb9099259c011c414185", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1677223, - "known_for_department": "Visual Effects", - "name": "Florian Parrot", - "original_name": "Florian Parrot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe710e29a200a6607cdc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1703174, - "known_for_department": "Directing", - "name": "Miguel Jiron", - "original_name": "Miguel Jiron", - "popularity": 1.343, - "profile_path": "/sBEHuSRFK6T9DqBYQX93qSAFAFU.jpg", - "credit_id": "647ba00d17497301187109ae", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 0, - "id": 1712630, - "known_for_department": "Visual Effects", - "name": "Florent Limouzin", - "original_name": "Florent Limouzin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcec93828e00bf9e79f6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1718384, - "known_for_department": "Writing", - "name": "Octavio E. Rodriguez", - "original_name": "Octavio E. Rodriguez", - "popularity": 0.6, - "profile_path": "/yOJEtXMYMQcEnM1MxOLiSPIQLw.jpg", - "credit_id": "647ba0058d2f8d00c2c0300a", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 1, - "id": 1762345, - "known_for_department": "Visual Effects", - "name": "Cynthia Collins", - "original_name": "Cynthia Collins", - "popularity": 0.98, - "profile_path": null, - "credit_id": "647bba2617497300de6671af", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1768431, - "known_for_department": "Sound", - "name": "Andy Sisul", - "original_name": "Andy Sisul", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc70793828e013377cd1a", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1783130, - "known_for_department": "Art", - "name": "Aymeric Kevin", - "original_name": "Aymeric Kevin", - "popularity": 0.685, - "profile_path": "/bB6Ie0fObUaDHFgH8HAxKNfE0tZ.jpg", - "credit_id": "647e6bf50e29a22be08e335d", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1783890, - "known_for_department": "Visual Effects", - "name": "Sam Surplice", - "original_name": "Sam Surplice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc25ccf4b8b00e2d5d8dc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 1828305, - "known_for_department": "Visual Effects", - "name": "David Cohan", - "original_name": "David Cohan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e681b17497300de67a593", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1840305, - "known_for_department": "Production", - "name": "Theresa Bentz", - "original_name": "Theresa Bentz", - "popularity": 0.6, - "profile_path": "/2iQlxiphvi1YIxY4MV1yA6zHha3.jpg", - "credit_id": "647be5e50e29a200a6609364", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1840315, - "known_for_department": "Sound", - "name": "Will Digby", - "original_name": "Will Digby", - "popularity": 0.91, - "profile_path": null, - "credit_id": "647bc70117497300c1327ef2", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1840320, - "known_for_department": "Visual Effects", - "name": "Lorena García Romero", - "original_name": "Lorena García Romero", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a0585090f00e7980673", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 1840321, - "known_for_department": "Visual Effects", - "name": "Andrea Matamoros", - "original_name": "Andrea Matamoros", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a71945d3600ffcead07", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 1840323, - "known_for_department": "Visual Effects", - "name": "Mike Feil", - "original_name": "Mike Feil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbad00e29a20133c3b2c5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1840331, - "known_for_department": "Visual Effects", - "name": "Hiroya Sonoda", - "original_name": "Hiroya Sonoda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1d40e29a20116ace71e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1840333, - "known_for_department": "Visual Effects", - "name": "Roberto Tifi", - "original_name": "Roberto Tifi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc277cf4b8b00c3d251da", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1853490, - "known_for_department": "Visual Effects", - "name": "Ami Thompson", - "original_name": "Ami Thompson", - "popularity": 0.694, - "profile_path": null, - "credit_id": "647bb48a0e29a200bf1efebd", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1853494, - "known_for_department": "Visual Effects", - "name": "Spencer Wan", - "original_name": "Spencer Wan", - "popularity": 1.814, - "profile_path": null, - "credit_id": "647bb658e323f3014816b926", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1855895, - "known_for_department": "Crew", - "name": "Haydn Masuda", - "original_name": "Haydn Masuda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f16d2b20900ad3bc651", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 1858116, - "known_for_department": "Directing", - "name": "Alfonso de la Cruz", - "original_name": "Alfonso de la Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13b58549dda011c291567", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1858116, - "known_for_department": "Directing", - "name": "Alfonso de la Cruz", - "original_name": "Alfonso de la Cruz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13b5d945d3601394e9a0d", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1869297, - "known_for_department": "Visual Effects", - "name": "Jeffrey M. Thompson", - "original_name": "Jeffrey M. Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be79e0e29a200dcbb2244", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 1915688, - "known_for_department": "Visual Effects", - "name": "Christian Hejnal", - "original_name": "Christian Hejnal", - "popularity": 1.4, - "profile_path": "/rXtNKABdPr0cNPCljWtvRDiEtqc.jpg", - "credit_id": "647b9fb0e323f300a7d5b95c", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1931443, - "known_for_department": "Directing", - "name": "Violaine Briat", - "original_name": "Violaine Briat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf02caef2d00c29a4e3e", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1938286, - "known_for_department": "Directing", - "name": "Florent Arnould", - "original_name": "Florent Arnould", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8de174973011871102b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 1947504, - "known_for_department": "Crew", - "name": "Bret St. Clair", - "original_name": "Bret St. Clair", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85424001bbd013aee1f12", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 1965274, - "known_for_department": "Visual Effects", - "name": "Hanung Lee", - "original_name": "Hanung Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcc00e29a200bf1f00e7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1994880, - "known_for_department": "Lighting", - "name": "Sarah M. Sweeney", - "original_name": "Sarah M. Sweeney", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f97e375c0011c7f5547", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 1994943, - "known_for_department": "Visual Effects", - "name": "Darrell W. Johnson", - "original_name": "Darrell W. Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf3017497300fb3af1e7", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2001204, - "known_for_department": "Visual Effects", - "name": "Francois F. Laurent", - "original_name": "Francois F. Laurent", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc8c17497300a81976ef", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002366, - "known_for_department": "Visual Effects", - "name": "Morgan N. Greene", - "original_name": "Morgan N. Greene", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb51cf4b8b00e2d5d746", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002528, - "known_for_department": "Visual Effects", - "name": "Jason Baldwin", - "original_name": "Jason Baldwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb81fe323f3014816b9bc", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2006129, - "known_for_department": "Visual Effects", - "name": "Joan Marc Fuentes Iglesias", - "original_name": "Joan Marc Fuentes Iglesias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb25cf4b8b00a877ac9d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2006135, - "known_for_department": "Visual Effects", - "name": "Daniel Pozo", - "original_name": "Daniel Pozo", - "popularity": 0.677, - "profile_path": null, - "credit_id": "647ba43293828e00a76489f1", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2008268, - "known_for_department": "Visual Effects", - "name": "Nideep Varghese", - "original_name": "Nideep Varghese", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2c60e29a200dcbb0c71", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2010418, - "known_for_department": "Visual Effects", - "name": "Megan Wong", - "original_name": "Megan Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3c5cf4b8b01031e6a9d", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 2010992, - "known_for_department": "Lighting", - "name": "Mallory Mahar", - "original_name": "Mallory Mahar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f06e375c0011c7f5515", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2011007, - "known_for_department": "Sound", - "name": "Alec Rubay", - "original_name": "Alec Rubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc69e0e29a20116ace855", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2011792, - "known_for_department": "Visual Effects", - "name": "Eric Stinnissen", - "original_name": "Eric Stinnissen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1e8caef2d00fce5b79b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2012497, - "known_for_department": "Editing", - "name": "Erika Scopelli", - "original_name": "Erika Scopelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77393828e01162488e6", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2012572, - "known_for_department": "Visual Effects", - "name": "Bhavin Joshi", - "original_name": "Bhavin Joshi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc3be323f300a7d5bff6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2012688, - "known_for_department": "Visual Effects", - "name": "Yuchung Peter Chan", - "original_name": "Yuchung Peter Chan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb59de323f300e5249b63", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2013845, - "known_for_department": "Crew", - "name": "Michael Lasker", - "original_name": "Michael Lasker", - "popularity": 1.342, - "profile_path": "/4aGkIMP0EQljzqATYli7wYkyRzi.jpg", - "credit_id": "647b9f7217497300fb3aedf3", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2013847, - "known_for_department": "Crew", - "name": "Darren Lurie", - "original_name": "Darren Lurie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67ef1749730118725095", - "department": "Crew", - "job": "Digital Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2013880, - "known_for_department": "Visual Effects", - "name": "Kevin Jackson", - "original_name": "Kevin Jackson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc0e17497300fb3af585", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2013881, - "known_for_department": "Visual Effects", - "name": "Robert Lehman", - "original_name": "Robert Lehman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba424cf4b8b01418f321b", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2013883, - "known_for_department": "Visual Effects", - "name": "Ina Marczinczik", - "original_name": "Ina Marczinczik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd8b93828e00dcdcd603", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2013909, - "known_for_department": "Visual Effects", - "name": "Zachary Torok", - "original_name": "Zachary Torok", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc28ccf4b8b00a877ae81", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2013923, - "known_for_department": "Visual Effects", - "name": "Kelsey Wagner", - "original_name": "Kelsey Wagner", - "popularity": 0.765, - "profile_path": null, - "credit_id": "647ba45b0e29a200f981e6c0", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2013956, - "known_for_department": "Lighting", - "name": "Brian Adams", - "original_name": "Brian Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc3899259c00c5b5a9be", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2013956, - "known_for_department": "Lighting", - "name": "Brian Adams", - "original_name": "Brian Adams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc41c0348b01027923e4", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2013962, - "known_for_department": "Lighting", - "name": "Jared Brient", - "original_name": "Jared Brient", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e66bf31f2505f3dfc93", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2014013, - "known_for_department": "Lighting", - "name": "Nakia McGlynn", - "original_name": "Nakia McGlynn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f1de375c000e24ec851", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2014025, - "known_for_department": "Lighting", - "name": "Rambo Snyder", - "original_name": "Rambo Snyder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f87e375c00139bf9937", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2014043, - "known_for_department": "Crew", - "name": "Benjamin Aguillon", - "original_name": "Benjamin Aguillon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba489caef2d00df88a0e2", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2014047, - "known_for_department": "Visual Effects", - "name": "Yohan Bang", - "original_name": "Yohan Bang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb82893828e013377c94a", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2014054, - "known_for_department": "Visual Effects", - "name": "Taehyun Park", - "original_name": "Taehyun Park", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139e56d4c9700ec58a940", - "department": "Visual Effects", - "job": "Modelling Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2014082, - "known_for_department": "Visual Effects", - "name": "Alan Hawkins", - "original_name": "Alan Hawkins", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64f8da04e0ca7f00ae3c4766", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2014787, - "known_for_department": "Sound", - "name": "Mike Marino", - "original_name": "Mike Marino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc77ecaef2d00fce5b8e0", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 2014825, - "known_for_department": "Crew", - "name": "Jeff Panko", - "original_name": "Jeff Panko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba42e93828e00bf9e73c6", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2015434, - "known_for_department": "Acting", - "name": "A Boogie Wit Da Hoodie", - "original_name": "A Boogie Wit Da Hoodie", - "popularity": 1.096, - "profile_path": "/4KgTVzi6sgAElRRyK35VSVcUFd4.jpg", - "credit_id": "648841f499259c011c41d245", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2015789, - "known_for_department": "Visual Effects", - "name": "Derek Esparza", - "original_name": "Derek Esparza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbac20e29a200a6607bcf", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2015914, - "known_for_department": "Visual Effects", - "name": "Yashar Kassai", - "original_name": "Yashar Kassai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb695cf4b8b00e2d5d61f", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2016254, - "known_for_department": "Visual Effects", - "name": "Brock Boyts", - "original_name": "Brock Boyts", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb942cf4b8b00c3d24fa4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2016600, - "known_for_department": "Visual Effects", - "name": "Martin Campos Amoros", - "original_name": "Martin Campos Amoros", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8cc0e29a20133c3b23c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2017015, - "known_for_department": "Visual Effects", - "name": "Harinarayan Rajeev", - "original_name": "Harinarayan Rajeev", - "popularity": 0.6, - "profile_path": "/vYQxrUbX8DDVlVVzqcHhZokj1YL.jpg", - "credit_id": "647bc14117497301350177f5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2017356, - "known_for_department": "Lighting", - "name": "Luca Fiorentini", - "original_name": "Luca Fiorentini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e8f99259c00e2f45763", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 2017632, - "known_for_department": "Visual Effects", - "name": "Jake Panian", - "original_name": "Jake Panian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb61e93828e00bf9e7851", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2017976, - "known_for_department": "Visual Effects", - "name": "Marc Steinberg", - "original_name": "Marc Steinberg", - "popularity": 0.628, - "profile_path": null, - "credit_id": "647bc5f4caef2d0119bfbf2a", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2017976, - "known_for_department": "Visual Effects", - "name": "Marc Steinberg", - "original_name": "Marc Steinberg", - "popularity": 0.628, - "profile_path": null, - "credit_id": "647bc5ea0e29a200dcbb0d32", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2019030, - "known_for_department": "Crew", - "name": "Sam Okell", - "original_name": "Sam Okell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc80393828e013377cd5f", - "department": "Sound", - "job": "Scoring Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2030551, - "known_for_department": "Acting", - "name": "Nucleya", - "original_name": "Nucleya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884126e2726000c9322467", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2040936, - "known_for_department": "Visual Effects", - "name": "Gal Roiter", - "original_name": "Gal Roiter", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f7cc9dbf9013a0612c1", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2044697, - "known_for_department": "Visual Effects", - "name": "Jun'ya Otake", - "original_name": "Jun'ya Otake", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe4117497300de6672d0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2044720, - "known_for_department": "Visual Effects", - "name": "Jamie Vickers", - "original_name": "Jamie Vickers", - "popularity": 1.103, - "profile_path": null, - "credit_id": "647bc58893828e00bf9e7c27", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2059577, - "known_for_department": "Visual Effects", - "name": "Asuha Yasuda", - "original_name": "Asuha Yasuda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e663a0e29a22be3281471", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 2, - "id": 2072158, - "known_for_department": "Crew", - "name": "Matt Hausman", - "original_name": "Matt Hausman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba5dc0e29a200a66076af", - "department": "Crew", - "job": "Digital Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2085351, - "known_for_department": "Production", - "name": "Libby Thomas Dickey", - "original_name": "Libby Thomas Dickey", - "popularity": 0.722, - "profile_path": null, - "credit_id": "63ec33021b7294008e15f8f6", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 2116028, - "known_for_department": "Visual Effects", - "name": "Allan Michaut", - "original_name": "Allan Michaut", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc515174973011871133c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2133221, - "known_for_department": "Sound", - "name": "Colin Lechner", - "original_name": "Colin Lechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc74d93828e00f9d77035", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2134438, - "known_for_department": "Directing", - "name": "Diego Porral", - "original_name": "Diego Porral", - "popularity": 0.6, - "profile_path": "/pwfbCtK0WuTXvAFWXw3ENeul10r.jpg", - "credit_id": "647bc4c7cf4b8b01418f39c0", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2135783, - "known_for_department": "Visual Effects", - "name": "Joan Pons", - "original_name": "Joan Pons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483438ae375c000ff47cbda", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2135783, - "known_for_department": "Visual Effects", - "name": "Joan Pons", - "original_name": "Joan Pons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483436599259c01392a97cb", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2138144, - "known_for_department": "Acting", - "name": "Offset", - "original_name": "Offset", - "popularity": 2.863, - "profile_path": "/mUo9DkyY9u33aXjfFtzU089WVTA.jpg", - "credit_id": "6488400ce375c000c52982ac", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2151274, - "known_for_department": "Visual Effects", - "name": "Jiwoon Kim", - "original_name": "Jiwoon Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ed4d2b209010c188b08", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2151945, - "known_for_department": "Visual Effects", - "name": "Zac Overcash", - "original_name": "Zac Overcash", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe46cf4b8b00c3d250cf", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2152119, - "known_for_department": "Visual Effects", - "name": "Pawel Grochola", - "original_name": "Pawel Grochola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85435f14dad013a8c5433", - "department": "Crew", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "credit_id": "64831892c9dbf900c570f36c", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 2166356, - "known_for_department": "Acting", - "name": "Metro Boomin", - "original_name": "Metro Boomin", - "popularity": 1.04, - "profile_path": "/mS1z3fgaEEbwpGLbWjk8oSJ2XuN.jpg", - "credit_id": "6486d7a7d2b209010c1a23be", - "department": "Crew", - "job": "Executive Music Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2186933, - "known_for_department": "Visual Effects", - "name": "Orrie Fung", - "original_name": "Orrie Fung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a0a4d67910139ef40f1", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 1, - "id": 2186948, - "known_for_department": "Visual Effects", - "name": "Em Guiry", - "original_name": "Em Guiry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb5d93828e00a7648fc9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2195903, - "known_for_department": "Visual Effects", - "name": "Michael Trikosko", - "original_name": "Michael Trikosko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc29acaef2d00df88a883", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2196774, - "known_for_department": "Art", - "name": "Patrick O'Keefe", - "original_name": "Patrick O'Keefe", - "popularity": 0.6, - "profile_path": "/xxJuqiJkLmEAyYBalWh8Ihj0mox.jpg", - "credit_id": "63ec3337f92532007f1beb1c", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 1, - "id": 2196776, - "known_for_department": "Crew", - "name": "Rebecca Karch Tomlinson", - "original_name": "Rebecca Karch Tomlinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba6070e29a200dcbb0548", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2199276, - "known_for_department": "Visual Effects", - "name": "Nick Kondo", - "original_name": "Nick Kondo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb85c0e29a20133c3b217", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199277, - "known_for_department": "Visual Effects", - "name": "Federico Abib", - "original_name": "Federico Abib", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb89817497300fb3af465", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2199321, - "known_for_department": "Visual Effects", - "name": "Byung Joo Choi", - "original_name": "Byung Joo Choi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb99317497300fb3af4b7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199322, - "known_for_department": "Visual Effects", - "name": "Juan Couto", - "original_name": "Juan Couto", - "popularity": 0.759, - "profile_path": null, - "credit_id": "647bba4be323f300c42a152e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199325, - "known_for_department": "Crew", - "name": "Chad Ellis", - "original_name": "Chad Ellis", - "popularity": 0.606, - "profile_path": null, - "credit_id": "647ba0de93828e00dcdcce18", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199326, - "known_for_department": "Visual Effects", - "name": "Leon Anthony Enriquez", - "original_name": "Leon Anthony Enriquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139ecd9f4a603bafb8174", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 2199327, - "known_for_department": "Visual Effects", - "name": "Bianca Gee", - "original_name": "Bianca Gee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb4693828e00f9d76d03", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2199329, - "known_for_department": "Visual Effects", - "name": "David Han", - "original_name": "David Han", - "popularity": 0.615, - "profile_path": null, - "credit_id": "647bbb8e17497300a8197689", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199348, - "known_for_department": "Visual Effects", - "name": "Thanawat Khantrum", - "original_name": "Thanawat Khantrum", - "popularity": 1.01, - "profile_path": "/xPvpweiRkElDZvRBpmfTsJSErTu.jpg", - "credit_id": "647bbc5be323f3014816bad0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199362, - "known_for_department": "Visual Effects", - "name": "Nicholas Nøstbakken", - "original_name": "Nicholas Nøstbakken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4288d2f8d011934320e", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2199363, - "known_for_department": "Visual Effects", - "name": "Ryan O'Reilly", - "original_name": "Ryan O'Reilly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe2ccf4b8b01418f384e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2199370, - "known_for_department": "Visual Effects", - "name": "Samuel Arturo Rico", - "original_name": "Samuel Arturo Rico", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4428d2f8d00fcc12b43", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2199374, - "known_for_department": "Visual Effects", - "name": "Humberto Francisco Rosa", - "original_name": "Humberto Francisco Rosa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0cb17497300de666b9f", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2199381, - "known_for_department": "Visual Effects", - "name": "Chris Su", - "original_name": "Chris Su", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc24917497300a819784e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2204103, - "known_for_department": "Writing", - "name": "Lauren Sassen", - "original_name": "Lauren Sassen", - "popularity": 0.608, - "profile_path": null, - "credit_id": "647bb013e323f301061536a0", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2221285, - "known_for_department": "Directing", - "name": "Eleonora Bertolucci", - "original_name": "Eleonora Bertolucci", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb931e323f300c42a14e3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2233196, - "known_for_department": "Visual Effects", - "name": "Thomas Thistlethwaite", - "original_name": "Thomas Thistlethwaite", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc269cf4b8b01418f3938", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2247431, - "known_for_department": "Crew", - "name": "Keiko Koyama", - "original_name": "Keiko Koyama", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0a4e323f3014816b3b3", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2282000, - "known_for_department": "Acting", - "name": "Swae Lee", - "original_name": "Swae Lee", - "popularity": 1.048, - "profile_path": null, - "credit_id": "648841b0e375c000c52983b9", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2285844, - "known_for_department": "Visual Effects", - "name": "Eric Andrusyszyn", - "original_name": "Eric Andrusyszyn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e5fc9dbf9011dfb74bd", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2356303, - "known_for_department": "Acting", - "name": "James Blake", - "original_name": "James Blake", - "popularity": 0.6, - "profile_path": "/k0dFhjVuqjM9iSxDP3t5FE46Vsy.jpg", - "credit_id": "648840cf6f8d9500e500a753", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 2380011, - "known_for_department": "Visual Effects", - "name": "Felicia Chen", - "original_name": "Felicia Chen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb67fcaef2d00df88a53d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2398798, - "known_for_department": "Acting", - "name": "Don Toliver", - "original_name": "Don Toliver", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488411799259c01392cec5f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 2, - "id": 2417952, - "known_for_department": "Visual Effects", - "name": "Rohit Kelkar", - "original_name": "Rohit Kelkar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5080e29a200dcbb0cf3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2451598, - "known_for_department": "Directing", - "name": "Kemp Powers", - "original_name": "Kemp Powers", - "popularity": 3.548, - "profile_path": "/1uBaVuFJX5HJpiSkoB23NvfMhyW.jpg", - "credit_id": "607e08761b1f3c006eb33d8c", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 2488324, - "known_for_department": "Camera", - "name": "Sheldon Lisoy", - "original_name": "Sheldon Lisoy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839efce2726000c930104b", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 1, - "id": 2526411, - "known_for_department": "Editing", - "name": "Anna Saathoff", - "original_name": "Anna Saathoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63ec32d31b7294008e15f8ab", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2544880, - "known_for_department": "Visual Effects", - "name": "Elard Meneses", - "original_name": "Elard Meneses", - "popularity": 0.652, - "profile_path": null, - "credit_id": "647bbdbfcaef2d00fce5b6d8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2555580, - "known_for_department": "Production", - "name": "Kasey Fagerquist", - "original_name": "Kasey Fagerquist", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67e7ccde040118aab7ca", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2563059, - "known_for_department": "Visual Effects", - "name": "Egbert Reichel", - "original_name": "Egbert Reichel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f5be27260010721a44a", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 2597017, - "known_for_department": "Editing", - "name": "Andrew Leviton", - "original_name": "Andrew Leviton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb73ecf4b8b01418f3685", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2597608, - "known_for_department": "Crew", - "name": "Vincent G. Scotti", - "original_name": "Vincent G. Scotti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc67617497300fb3af81a", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2597625, - "known_for_department": "Camera", - "name": "Tom Bruno Jr.", - "original_name": "Tom Bruno Jr.", - "popularity": 0.729, - "profile_path": null, - "credit_id": "647ba0698d2f8d00aa5dd84c", - "department": "Camera", - "job": "Head of Layout" - }, - { - "adult": false, - "gender": 2, - "id": 2632636, - "known_for_department": "Visual Effects", - "name": "Daniel Ceballos", - "original_name": "Daniel Ceballos", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9690e29a200dcbb0a09", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 2639168, - "known_for_department": "Visual Effects", - "name": "Kristin Müller", - "original_name": "Kristin Müller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbdc4cf4b8b0122761c08", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2645693, - "known_for_department": "Visual Effects", - "name": "Tom Davis", - "original_name": "Tom Davis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba6ee323f300e5249c71", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2647893, - "known_for_department": "Crew", - "name": "Dan Slott", - "original_name": "Dan Slott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb23dcaef2d00fce5b416", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 2648989, - "known_for_department": "Visual Effects", - "name": "Grace Villaroman", - "original_name": "Grace Villaroman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2cce323f30106153b1f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2702748, - "known_for_department": "Visual Effects", - "name": "Matthew McDonald", - "original_name": "Matthew McDonald", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648114d999259c00e2f3044a", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2702748, - "known_for_department": "Visual Effects", - "name": "Matthew McDonald", - "original_name": "Matthew McDonald", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648114e1e375c000c525b286", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2702903, - "known_for_department": "Visual Effects", - "name": "Chelsea Gordon-Ratzlaff", - "original_name": "Chelsea Gordon-Ratzlaff", - "popularity": 0.636, - "profile_path": null, - "credit_id": "647ba100cf4b8b01418f312d", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2711299, - "known_for_department": "Acting", - "name": "Dominic Fike", - "original_name": "Dominic Fike", - "popularity": 2.244, - "profile_path": "/vtuRZff8c3QNKiShMo25z5M5guD.jpg", - "credit_id": "6488410c99259c00acce5fb2", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 2779154, - "known_for_department": "Sound", - "name": "Kip Smedley", - "original_name": "Kip Smedley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6aecf4b8b00c3d252d3", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 2814119, - "known_for_department": "Writing", - "name": "R. Chett Hoffman", - "original_name": "R. Chett Hoffman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb734caef2d00fce5b52a", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2912489, - "known_for_department": "Crew", - "name": "Benjamin Hendricks", - "original_name": "Benjamin Hendricks", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba507caef2d00df88a10d", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2923782, - "known_for_department": "Visual Effects", - "name": "Ian McQue", - "original_name": "Ian McQue", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483ae7dc9dbf900e3ff1cba", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 2928609, - "known_for_department": "Editing", - "name": "Kelvin Johnson", - "original_name": "Kelvin Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc8c50e29a200dcbb0df9", - "department": "Editing", - "job": "Color Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3006767, - "known_for_department": "Visual Effects", - "name": "Julian Fumagalli", - "original_name": "Julian Fumagalli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4f2cf4b8b01418f39cb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 3061325, - "known_for_department": "Writing", - "name": "Guillermo Martinez", - "original_name": "Guillermo Martinez", - "popularity": 0.6, - "profile_path": "/erDsK4fmVJySShXWkHGI1HHNFPo.jpg", - "credit_id": "647be71c17497300fb3b0e73", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 3145624, - "known_for_department": "Crew", - "name": "Rowan Young", - "original_name": "Rowan Young", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839fa9e272600147b95a78", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 2, - "id": 3174024, - "known_for_department": "Visual Effects", - "name": "Wendell Dalit", - "original_name": "Wendell Dalit", - "popularity": 0.6, - "profile_path": "/vZPG4pZ5GBz8eKZivqdvpDSpddz.jpg", - "credit_id": "647bb5d80e29a200f981eb02", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3194354, - "known_for_department": "Art", - "name": "Ben Choi", - "original_name": "Ben Choi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf0d17497300c1327928", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3194358, - "known_for_department": "Art", - "name": "Jarelle Dampier", - "original_name": "Jarelle Dampier", - "popularity": 0.733, - "profile_path": null, - "credit_id": "647be5ebcf4b8b012276335a", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3209802, - "known_for_department": "Visual Effects", - "name": "Omar Smith", - "original_name": "Omar Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb48517497300fb3af34e", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3251536, - "known_for_department": "Directing", - "name": "Ezequiel Torres", - "original_name": "Ezequiel Torres", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc523e323f300c42a17ca", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3256109, - "known_for_department": "Visual Effects", - "name": "Martin Gil", - "original_name": "Martin Gil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4ff93828e00dcdcd7c9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3290243, - "known_for_department": "Visual Effects", - "name": "Gerard Manresa Ortega", - "original_name": "Gerard Manresa Ortega", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd76caef2d01362b3386", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3290245, - "known_for_department": "Visual Effects", - "name": "Mònica Eggert Roig", - "original_name": "Mònica Eggert Roig", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbaafcaef2d00df88a667", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 3322150, - "known_for_department": "Directing", - "name": "Caitlin VanArsdale", - "original_name": "Caitlin VanArsdale", - "popularity": 0.725, - "profile_path": null, - "credit_id": "647bb02493828e013377c74d", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3324650, - "known_for_department": "Visual Effects", - "name": "Evan Monteiro", - "original_name": "Evan Monteiro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb46b1749730118710efc", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3336000, - "known_for_department": "Visual Effects", - "name": "Kris Anka", - "original_name": "Kris Anka", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ac1566223e20001b2091b1", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 1, - "id": 3343523, - "known_for_department": "Acting", - "name": "Coi Leray", - "original_name": "Coi Leray", - "popularity": 0.795, - "profile_path": "/1yDzHply5OzVCusxgaS6hKKUY8F.jpg", - "credit_id": "64883ef96f8d9501023da717", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 1, - "id": 3350412, - "known_for_department": "Visual Effects", - "name": "Emma Shih", - "original_name": "Emma Shih", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1b4174973011871126a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 3371135, - "known_for_department": "Visual Effects", - "name": "Christie Tseng", - "original_name": "Christie Tseng", - "popularity": 0.863, - "profile_path": null, - "credit_id": "647bb49193828e00f9d76ad5", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3373385, - "known_for_department": "Sound", - "name": "Jason W. Freeman", - "original_name": "Jason W. Freeman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc717cf4b8b01418f3a51", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3373385, - "known_for_department": "Sound", - "name": "Jason W. Freeman", - "original_name": "Jason W. Freeman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc72d93828e0116248d51", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3383190, - "known_for_department": "Visual Effects", - "name": "Adam Sarophim", - "original_name": "Adam Sarophim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba43d93828e00f9d7666d", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 1, - "id": 3383195, - "known_for_department": "Crew", - "name": "Genevieve West", - "original_name": "Genevieve West", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba0ab0e29a200bf1ef9b1", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3419961, - "known_for_department": "Visual Effects", - "name": "Nicolas Gillet", - "original_name": "Nicolas Gillet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb4be323f300c42a1563", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3470748, - "known_for_department": "Directing", - "name": "India Barnardo", - "original_name": "India Barnardo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb92b93828e0116248963", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 3472292, - "known_for_department": "Visual Effects", - "name": "Zac Retz", - "original_name": "Zac Retz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6240e29a200bf1eff36", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3472307, - "known_for_department": "Visual Effects", - "name": "Alaa Afifah", - "original_name": "Alaa Afifah", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8ab0e29a200f981ebc8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3472914, - "known_for_department": "Production", - "name": "Sharon Kikinis", - "original_name": "Sharon Kikinis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3fe17497300fb3af76d", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 3530984, - "known_for_department": "Writing", - "name": "Rachel Smith", - "original_name": "Rachel Smith", - "popularity": 0.667, - "profile_path": "/9gJQ4fUhTeTwO09J2jw8pMhD5ob.jpg", - "credit_id": "647be760e323f3012751e1a3", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 2, - "id": 3551548, - "known_for_department": "Visual Effects", - "name": "Jesús Alonso Iglesias", - "original_name": "Jesús Alonso Iglesias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647af32bcf4b8b00c3d20b9a", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3551560, - "known_for_department": "Editing", - "name": "Bret Allen", - "original_name": "Bret Allen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d851fa069f0e01018fbe8e", - "department": "Editing", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 3558904, - "known_for_department": "Visual Effects", - "name": "Anthony Holden", - "original_name": "Anthony Holden", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf1317497300fb3af1de", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 3563691, - "known_for_department": "Acting", - "name": "Thenmozhi Soundararajan", - "original_name": "Thenmozhi Soundararajan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb279e323f300e5249aab", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 0, - "id": 3616142, - "known_for_department": "Visual Effects", - "name": "Alissar Kobeissi", - "original_name": "Alissar Kobeissi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc620e29a200a6607c5d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3659440, - "known_for_department": "Visual Effects", - "name": "Ian Parra Patino", - "original_name": "Ian Parra Patino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f54d2b209010c188b26", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 3751108, - "known_for_department": "Crew", - "name": "Harry A. Gundersen", - "original_name": "Harry A. Gundersen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ebbd2b20900ad3bc63d", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 3854054, - "known_for_department": "Art", - "name": "Mike McCain", - "original_name": "Mike McCain", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb60a93828e00a7648e9a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3861278, - "known_for_department": "Visual Effects", - "name": "Naveen Selvanathan", - "original_name": "Naveen Selvanathan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483aeb2e27260010721a85c", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 3883317, - "known_for_department": "Visual Effects", - "name": "Yuhki Demers", - "original_name": "Yuhki Demers", - "popularity": 0.609, - "profile_path": null, - "credit_id": "647bb68b0e29a20133c3b1a5", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883321, - "known_for_department": "Visual Effects", - "name": "Tony Ianiro", - "original_name": "Tony Ianiro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5e393828e00f9d76b46", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3883341, - "known_for_department": "Visual Effects", - "name": "Kellan Jett", - "original_name": "Kellan Jett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5e917497300a819750a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883342, - "known_for_department": "Visual Effects", - "name": "Tiffany Lam", - "original_name": "Tiffany Lam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5eee323f30106153810", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883343, - "known_for_department": "Visual Effects", - "name": "Chris O'Keefe", - "original_name": "Chris O'Keefe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb61717497300fb3af3b8", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3883344, - "known_for_department": "Visual Effects", - "name": "Jay Thakur", - "original_name": "Jay Thakur", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb649e323f3014816b922", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883345, - "known_for_department": "Visual Effects", - "name": "Kat Tsai", - "original_name": "Kat Tsai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb653174973013501754b", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3961518, - "known_for_department": "Visual Effects", - "name": "Arran Jay Baker", - "original_name": "Arran Jay Baker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "640f67f8e18e3f07e953540f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3998549, - "known_for_department": "Visual Effects", - "name": "Chen Zhang", - "original_name": "Chen Zhang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ab7945d3600aca0261b", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 2, - "id": 4036656, - "known_for_department": "Visual Effects", - "name": "Joe Darko", - "original_name": "Joe Darko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba5acf4b8b00a877ac6a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb38793828e00a7648df4", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4039080, - "known_for_department": "Acting", - "name": "Melanie Duke", - "original_name": "Melanie Duke", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb382cf4b8b01031e6721", - "department": "Writing", - "job": "Story Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4067322, - "known_for_department": "Visual Effects", - "name": "Quentin Marsollier", - "original_name": "Quentin Marsollier", - "popularity": 0.656, - "profile_path": null, - "credit_id": "647e6603ccde0401355c0c85", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 1, - "id": 4094163, - "known_for_department": "Editing", - "name": "Antonina Lentini", - "original_name": "Antonina Lentini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77e93828e00a7648ede", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4094194, - "known_for_department": "Editing", - "name": "Freddy Ferrari", - "original_name": "Freddy Ferrari", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb77993828e01162488e9", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4094203, - "known_for_department": "Production", - "name": "Russell Tyre Francis", - "original_name": "Russell Tyre Francis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc46fe323f300a7d5c1bd", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 1, - "id": 4095782, - "known_for_department": "Crew", - "name": "Rohini Kumar", - "original_name": "Rohini Kumar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba12ee323f30106153324", - "department": "Crew", - "job": "Supervising Animator" - }, - { - "adult": false, - "gender": 2, - "id": 4095795, - "known_for_department": "Crew", - "name": "James Carson", - "original_name": "James Carson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4b093828e00dcdccf55", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4095797, - "known_for_department": "Crew", - "name": "Patrick Cohen", - "original_name": "Patrick Cohen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba4e58d2f8d00aa5dd962", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4095798, - "known_for_department": "Crew", - "name": "James Hyun Park", - "original_name": "James Hyun Park", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba51b0e29a200f981e6fc", - "department": "Crew", - "job": "CG Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 4095804, - "known_for_department": "Production", - "name": "Julie Groll", - "original_name": "Julie Groll", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ba60ecaef2d00fce5b15d", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 4095846, - "known_for_department": "Sound", - "name": "Vinii Khullar", - "original_name": "Vinii Khullar", - "popularity": 0.985, - "profile_path": null, - "credit_id": "647bae2ecaef2d00fce5b311", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 4095853, - "known_for_department": "Writing", - "name": "Sarah Jean Partington", - "original_name": "Sarah Jean Partington", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647baf78cf4b8b00c3d24d57", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4095855, - "known_for_department": "Writing", - "name": "Wynton Redmond", - "original_name": "Wynton Redmond", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bafa9cf4b8b012276182b", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 4095858, - "known_for_department": "Writing", - "name": "Stephanie Garcia Rizo", - "original_name": "Stephanie Garcia Rizo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bafdc0e29a200f981e971", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4095861, - "known_for_department": "Writing", - "name": "Gabriela Carolina Camarillo", - "original_name": "Gabriela Carolina Camarillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0590e29a200bf1efdc3", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4095862, - "known_for_department": "Writing", - "name": "Eugene Lee", - "original_name": "Eugene Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb082e323f3014816b7a2", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4095864, - "known_for_department": "Production", - "name": "Jason Latour", - "original_name": "Jason Latour", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0e40e29a20116ace2c4", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 1, - "id": 4095865, - "known_for_department": "Production", - "name": "Nilah Magruder", - "original_name": "Nilah Magruder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0efe323f300c42a12ed", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 0, - "id": 4095866, - "known_for_department": "Production", - "name": "John Murad", - "original_name": "John Murad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb0fa93828e00a7648d5a", - "department": "Production", - "job": "Production Consultant" - }, - { - "adult": false, - "gender": 2, - "id": 4095872, - "known_for_department": "Visual Effects", - "name": "Mauro Belfiore", - "original_name": "Mauro Belfiore", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb45793828e00f9d76ac7", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 1, - "id": 4095873, - "known_for_department": "Visual Effects", - "name": "Brie E. Henderson", - "original_name": "Brie E. Henderson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb46093828e011624881b", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 4095875, - "known_for_department": "Visual Effects", - "name": "William Coyner", - "original_name": "William Coyner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb5ad1749730135017521", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 4095878, - "known_for_department": "Visual Effects", - "name": "Mack Sztaba", - "original_name": "Mack Sztaba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb62f0e29a200dcbb093a", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 4095885, - "known_for_department": "Visual Effects", - "name": "Amanda Jolly", - "original_name": "Amanda Jolly", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb691cf4b8b0122761a22", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4095888, - "known_for_department": "Visual Effects", - "name": "Marco Nelor", - "original_name": "Marco Nelor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6d193828e013377c908", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4095889, - "known_for_department": "Visual Effects", - "name": "Hethe Srodawa", - "original_name": "Hethe Srodawa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb6e0cf4b8b0122761a3d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 4095894, - "known_for_department": "Art", - "name": "Jade Johnson", - "original_name": "Jade Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb71ecaef2d00c29a5011", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4095895, - "known_for_department": "Art", - "name": "Chloe Look", - "original_name": "Chloe Look", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb723cf4b8b00a877abbb", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4095906, - "known_for_department": "Editing", - "name": "Joshua E. Perez", - "original_name": "Joshua E. Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb7fde323f300e5249bdc", - "department": "Editing", - "job": "Editorial Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4095910, - "known_for_department": "Visual Effects", - "name": "Mikaela Pfeifer", - "original_name": "Mikaela Pfeifer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb86e17497301350175e4", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 4095911, - "known_for_department": "Visual Effects", - "name": "Siggi Orri Þórhannesson", - "original_name": "Siggi Orri Þórhannesson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb87e93828e00f9d76c1c", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4095915, - "known_for_department": "Visual Effects", - "name": "Mauro Affronti", - "original_name": "Mauro Affronti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8a693828e013377c976", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095916, - "known_for_department": "Visual Effects", - "name": "Nataliia Alekseieva", - "original_name": "Nataliia Alekseieva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8b61749730118711013", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095918, - "known_for_department": "Visual Effects", - "name": "Jesus Almela", - "original_name": "Jesus Almela", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8c417497300a81975d2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095919, - "known_for_department": "Visual Effects", - "name": "Giulia Arnaboldi", - "original_name": "Giulia Arnaboldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8d80e29a20133c3b249", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095920, - "known_for_department": "Visual Effects", - "name": "Benoit Aubin", - "original_name": "Benoit Aubin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8e3e323f301061538bc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095921, - "known_for_department": "Visual Effects", - "name": "Nir Avital", - "original_name": "Nir Avital", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8edcf4b8b00e2d5d6ab", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095922, - "known_for_department": "Visual Effects", - "name": "Kyungmin Bae", - "original_name": "Kyungmin Bae", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb8fdcf4b8b01031e6834", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095923, - "known_for_department": "Visual Effects", - "name": "Matteo Bagnoli", - "original_name": "Matteo Bagnoli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb90717497300fb3af48e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095924, - "known_for_department": "Visual Effects", - "name": "Jordan Barg", - "original_name": "Jordan Barg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb92593828e00f9d76c58", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095925, - "known_for_department": "Visual Effects", - "name": "Gage Birch", - "original_name": "Gage Birch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9380e29a20116ace4f9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095926, - "known_for_department": "Visual Effects", - "name": "Malick Bordonado", - "original_name": "Malick Bordonado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb93ecaef2d00aa42abbe", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095927, - "known_for_department": "Visual Effects", - "name": "Anthony Brewster", - "original_name": "Anthony Brewster", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb94a93828e00a7648f52", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095928, - "known_for_department": "Visual Effects", - "name": "Nicolas Burmester", - "original_name": "Nicolas Burmester", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb950cf4b8b00e2d5d6c9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095929, - "known_for_department": "Visual Effects", - "name": "Emma Cartwright", - "original_name": "Emma Cartwright", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9570e29a200a6607b81", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095932, - "known_for_department": "Visual Effects", - "name": "Andrea Centeno", - "original_name": "Andrea Centeno", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb97e0e29a20133c3b277", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095933, - "known_for_department": "Visual Effects", - "name": "Max Chappell", - "original_name": "Max Chappell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb984e323f300e5249c39", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095934, - "known_for_department": "Visual Effects", - "name": "Tian Chen", - "original_name": "Tian Chen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb98c17497300a819760a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095935, - "known_for_department": "Visual Effects", - "name": "Dimitrios Christakis", - "original_name": "Dimitrios Christakis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9b5e323f3014816ba17", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095936, - "known_for_department": "Visual Effects", - "name": "Katia Cisneros Angulo", - "original_name": "Katia Cisneros Angulo", - "popularity": 0.84, - "profile_path": null, - "credit_id": "647bb9c317497300a819761a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095937, - "known_for_department": "Visual Effects", - "name": "Jesse Cnockaert", - "original_name": "Jesse Cnockaert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9d217497300c1327bb4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095938, - "known_for_department": "Visual Effects", - "name": "André Coelho", - "original_name": "André Coelho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bb9facf4b8b0122761aec", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095939, - "known_for_department": "Visual Effects", - "name": "Jeanne Coritama", - "original_name": "Jeanne Coritama", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba3093828e00dcdcd4e4", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095940, - "known_for_department": "Visual Effects", - "name": "Antonio Cortes", - "original_name": "Antonio Cortes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba4693828e013377c9e6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095941, - "known_for_department": "Visual Effects", - "name": "Terry Dankowych", - "original_name": "Terry Dankowych", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba56cf4b8b0122761b06", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095943, - "known_for_department": "Visual Effects", - "name": "Eric De Carolis", - "original_name": "Eric De Carolis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba78caef2d0119bfbbfc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095945, - "known_for_department": "Visual Effects", - "name": "Romain Digonnet", - "original_name": "Romain Digonnet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bba9f93828e00dcdcd503", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095946, - "known_for_department": "Visual Effects", - "name": "Madison Erwin", - "original_name": "Madison Erwin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbab5cf4b8b0122761b27", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095947, - "known_for_department": "Visual Effects", - "name": "Siroj Eshboev", - "original_name": "Siroj Eshboev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbabdcf4b8b00c3d24fed", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095948, - "known_for_department": "Visual Effects", - "name": "Naomi Fear", - "original_name": "Naomi Fear", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbac7e323f3014816ba54", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095949, - "known_for_department": "Visual Effects", - "name": "Vito Ferber", - "original_name": "Vito Ferber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbad817497300c1327bee", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095950, - "known_for_department": "Visual Effects", - "name": "Andrea Ferrara", - "original_name": "Andrea Ferrara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbae993828e00dcdcd524", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095951, - "known_for_department": "Visual Effects", - "name": "Bruno Carias Fogaca", - "original_name": "Bruno Carias Fogaca", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbafa0e29a200f981ec4e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095952, - "known_for_department": "Visual Effects", - "name": "Bohdan Frantsishko", - "original_name": "Bohdan Frantsishko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb07caef2d00df88a686", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095953, - "known_for_department": "Visual Effects", - "name": "Ryusuke Furuya", - "original_name": "Ryusuke Furuya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb2f17497300de66720d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095954, - "known_for_department": "Visual Effects", - "name": "Mariana Galvao Duque", - "original_name": "Mariana Galvao Duque", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb41caef2d00c29a5120", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095955, - "known_for_department": "Visual Effects", - "name": "Lucia Guirado Rubio", - "original_name": "Lucia Guirado Rubio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb58174973013501769e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095956, - "known_for_department": "Visual Effects", - "name": "Bruno Hamzagic", - "original_name": "Bruno Hamzagic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb8917497300fb3af546", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095957, - "known_for_department": "Visual Effects", - "name": "Edward Euiyoung Han", - "original_name": "Edward Euiyoung Han", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbb9a0e29a20133c3b318", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095958, - "known_for_department": "Visual Effects", - "name": "Victoria Hauser", - "original_name": "Victoria Hauser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbb10e29a20116ace5ab", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095959, - "known_for_department": "Visual Effects", - "name": "Daniel Hernandez Leyva", - "original_name": "Daniel Hernandez Leyva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbbd80e29a20133c3b332", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095963, - "known_for_department": "Visual Effects", - "name": "Sangyeong Jeong", - "original_name": "Sangyeong Jeong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc180e29a20116ace5d5", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095964, - "known_for_department": "Visual Effects", - "name": "Soh-I Jeong", - "original_name": "Soh-I Jeong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc27e323f3012751c8ce", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095965, - "known_for_department": "Visual Effects", - "name": "Scott Johnson", - "original_name": "Scott Johnson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc360e29a20133c3b353", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095966, - "known_for_department": "Visual Effects", - "name": "Chelmin Joung", - "original_name": "Chelmin Joung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc41caef2d01362b3339", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095967, - "known_for_department": "Visual Effects", - "name": "Xin Ju", - "original_name": "Xin Ju", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc47caef2d00fce5b687", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095968, - "known_for_department": "Visual Effects", - "name": "Tony Kantaphat", - "original_name": "Tony Kantaphat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc5593828e00dcdcd59f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095969, - "known_for_department": "Visual Effects", - "name": "Vallen Koscheev", - "original_name": "Vallen Koscheev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc6b0e29a20133c3b369", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095970, - "known_for_department": "Visual Effects", - "name": "Christine Kwok", - "original_name": "Christine Kwok", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc7d93828e00dcdcd5af", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095971, - "known_for_department": "Visual Effects", - "name": "Saul Latorre Sebastian", - "original_name": "Saul Latorre Sebastian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbc85cf4b8b0122761bc0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095973, - "known_for_department": "Visual Effects", - "name": "Sejin Lee", - "original_name": "Sejin Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcc9cf4b8b00c3d25080", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095974, - "known_for_department": "Visual Effects", - "name": "Sophia Seung Hee Lee", - "original_name": "Sophia Seung Hee Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbce1cf4b8b00e2d5d794", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095975, - "known_for_department": "Visual Effects", - "name": "Yishen Li", - "original_name": "Yishen Li", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbce693828e013377caa3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095976, - "known_for_department": "Visual Effects", - "name": "James Jian-Hua Lin", - "original_name": "James Jian-Hua Lin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbcfccaef2d0119bfbccc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095977, - "known_for_department": "Visual Effects", - "name": "Joy Liu", - "original_name": "Joy Liu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd25cf4b8b01418f380a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095978, - "known_for_department": "Visual Effects", - "name": "Michael Loeck", - "original_name": "Michael Loeck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd2ccf4b8b00a877ad51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095979, - "known_for_department": "Visual Effects", - "name": "Remus Low", - "original_name": "Remus Low", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd311749730118711139", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095980, - "known_for_department": "Visual Effects", - "name": "Kleber Macedo", - "original_name": "Kleber Macedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd4617497300c1327c84", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095981, - "known_for_department": "Visual Effects", - "name": "David MacKenzie", - "original_name": "David MacKenzie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd6bcf4b8b01031e6951", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095983, - "known_for_department": "Visual Effects", - "name": "Dan Mao", - "original_name": "Dan Mao", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd8193828e00f9d76dac", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4095984, - "known_for_department": "Visual Effects", - "name": "Felicia Rose Martin", - "original_name": "Felicia Rose Martin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbd95e323f3014816bb31", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095985, - "known_for_department": "Visual Effects", - "name": "Domitille Mellac", - "original_name": "Domitille Mellac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbda6e323f300c42a15e7", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095986, - "known_for_department": "Visual Effects", - "name": "Nico Mendes", - "original_name": "Nico Mendes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbdafe323f301061539ee", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095987, - "known_for_department": "Visual Effects", - "name": "Alex Olea", - "original_name": "Alex Olea", - "popularity": 0.609, - "profile_path": null, - "credit_id": "647bbe1c93828e0116248ace", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095988, - "known_for_department": "Visual Effects", - "name": "Diego Oliva Monardes", - "original_name": "Diego Oliva Monardes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe25caef2d00aa42ace1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095990, - "known_for_department": "Visual Effects", - "name": "Guilherme Paiva", - "original_name": "Guilherme Paiva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe5ee323f300a7d5c089", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095991, - "known_for_department": "Visual Effects", - "name": "Eura Pancaldi", - "original_name": "Eura Pancaldi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe6793828e013377cb08", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095992, - "known_for_department": "Visual Effects", - "name": "Vinayak Ambalal Pawar", - "original_name": "Vinayak Ambalal Pawar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bbe820e29a20116ace658", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095993, - "known_for_department": "Visual Effects", - "name": "Ryan Pfeifenroth", - "original_name": "Ryan Pfeifenroth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc08fe323f300e5249e16", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095994, - "known_for_department": "Visual Effects", - "name": "Tharitchonlathorn Sunny Pimpa", - "original_name": "Tharitchonlathorn Sunny Pimpa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc0c8cf4b8b00a877ae24", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095995, - "known_for_department": "Visual Effects", - "name": "Rafael Polanczyk", - "original_name": "Rafael Polanczyk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc0fecaef2d00aa42ad91", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095996, - "known_for_department": "Visual Effects", - "name": "Fabrizio Prioletta", - "original_name": "Fabrizio Prioletta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc10dcaef2d0119bfbdd8", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095997, - "known_for_department": "Visual Effects", - "name": "Leonardo Quert", - "original_name": "Leonardo Quert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc11acf4b8b00a877ae36", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4095998, - "known_for_department": "Visual Effects", - "name": "Sinu Raghavan", - "original_name": "Sinu Raghavan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc122e323f3012751c9ed", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4095999, - "known_for_department": "Visual Effects", - "name": "Omid Rajabalipour", - "original_name": "Omid Rajabalipour", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc135caef2d00aa42ada3", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096000, - "known_for_department": "Visual Effects", - "name": "Kirtikumar Rathod", - "original_name": "Kirtikumar Rathod", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc161caef2d00c29a529b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096002, - "known_for_department": "Visual Effects", - "name": "William Robson", - "original_name": "William Robson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1800e29a200a6607d88", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096003, - "known_for_department": "Visual Effects", - "name": "Ereifeoluwa Santos", - "original_name": "Ereifeoluwa Santos", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1901749730135017814", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096004, - "known_for_department": "Visual Effects", - "name": "Cody Schiebelbein", - "original_name": "Cody Schiebelbein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc197174973011871125f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096005, - "known_for_department": "Visual Effects", - "name": "Stalin Ranjith Selvanayagam", - "original_name": "Stalin Ranjith Selvanayagam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1a317497300fb3af6d6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096007, - "known_for_department": "Visual Effects", - "name": "Stone Shi", - "original_name": "Stone Shi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1aa0e29a200bf1f0218", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096008, - "known_for_department": "Visual Effects", - "name": "Rie Shibazaki", - "original_name": "Rie Shibazaki", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1afcaef2d0119bfbe0a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096009, - "known_for_department": "Visual Effects", - "name": "Woo Youp Shim", - "original_name": "Woo Youp Shim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1ba0e29a20116ace717", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096010, - "known_for_department": "Visual Effects", - "name": "Jia Loon Sim", - "original_name": "Jia Loon Sim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1c093828e0116248bb2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096012, - "known_for_department": "Visual Effects", - "name": "Eulrang Song", - "original_name": "Eulrang Song", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1c90e29a200f981ee01", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096013, - "known_for_department": "Visual Effects", - "name": "Joon Song", - "original_name": "Joon Song", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1cf0e29a200a6607d9f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096014, - "known_for_department": "Visual Effects", - "name": "Yuka Sonoda", - "original_name": "Yuka Sonoda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1da17497300de6673a6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096015, - "known_for_department": "Visual Effects", - "name": "Julia Spurek", - "original_name": "Julia Spurek", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1e00e29a200f981ee12", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096016, - "known_for_department": "Visual Effects", - "name": "Scott Stribling", - "original_name": "Scott Stribling", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc1f0e323f300c42a16e6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096018, - "known_for_department": "Visual Effects", - "name": "Shyam Suresh", - "original_name": "Shyam Suresh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc256caef2d00df88a869", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096019, - "known_for_department": "Visual Effects", - "name": "Tom Sutton", - "original_name": "Tom Sutton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc26393828e013377cbf0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096021, - "known_for_department": "Visual Effects", - "name": "Li Wen Toh", - "original_name": "Li Wen Toh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc27e93828e00dcdcd723", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096022, - "known_for_department": "Visual Effects", - "name": "Tad Topping", - "original_name": "Tad Topping", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc28693828e00a7649184", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096025, - "known_for_department": "Visual Effects", - "name": "Xavier Trudeau-Deschênes", - "original_name": "Xavier Trudeau-Deschênes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2b693828e00bf9e7b6e", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096026, - "known_for_department": "Visual Effects", - "name": "Joana Ullan Vieira", - "original_name": "Joana Ullan Vieira", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2c00e29a20116ace76a", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096028, - "known_for_department": "Visual Effects", - "name": "Billy Ward", - "original_name": "Billy Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2d517497301187112c0", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096029, - "known_for_department": "Visual Effects", - "name": "JP Welsh", - "original_name": "JP Welsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc2f793828e0116248c22", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096030, - "known_for_department": "Visual Effects", - "name": "Mikey Wong", - "original_name": "Mikey Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc31ce323f30106153b3c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096031, - "known_for_department": "Visual Effects", - "name": "Syuan-Ru Wu", - "original_name": "Syuan-Ru Wu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc325caef2d0119bfbe7b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096032, - "known_for_department": "Visual Effects", - "name": "Joro Zahariev", - "original_name": "Joro Zahariev", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc332caef2d00aa42ae15", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096033, - "known_for_department": "Visual Effects", - "name": "Dylan Zhang", - "original_name": "Dylan Zhang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc33793828e00f9d76f25", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096034, - "known_for_department": "Visual Effects", - "name": "Chalermphol Wattanawongtrakool", - "original_name": "Chalermphol Wattanawongtrakool", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc348e323f300c42a1736", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096035, - "known_for_department": "Visual Effects", - "name": "Matthew Broughton", - "original_name": "Matthew Broughton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc358cf4b8b01031e6a87", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096036, - "known_for_department": "Visual Effects", - "name": "Elizabeth Leilani David", - "original_name": "Elizabeth Leilani David", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc36ecf4b8b01418f3975", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096037, - "known_for_department": "Visual Effects", - "name": "Clayton Goldhawk", - "original_name": "Clayton Goldhawk", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc373e323f3014816bca9", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096038, - "known_for_department": "Visual Effects", - "name": "Davin Hun", - "original_name": "Davin Hun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3830e29a200a6607e0e", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4096039, - "known_for_department": "Visual Effects", - "name": "Karen Teoh", - "original_name": "Karen Teoh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3a393828e00dcdcd76e", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096040, - "known_for_department": "Visual Effects", - "name": "Emma Tooth", - "original_name": "Emma Tooth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3bacf4b8b00c3d25223", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096041, - "known_for_department": "Visual Effects", - "name": "Stacey Ward", - "original_name": "Stacey Ward", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc3bfcaef2d01362b351d", - "department": "Visual Effects", - "job": "Animation Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096042, - "known_for_department": "Production", - "name": "Carli Lynch", - "original_name": "Carli Lynch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc404cf4b8b01418f399c", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096043, - "known_for_department": "Production", - "name": "Sofia Hurtado", - "original_name": "Sofia Hurtado", - "popularity": 1.4, - "profile_path": null, - "credit_id": "647bc409cf4b8b00c3d25240", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096044, - "known_for_department": "Production", - "name": "Andrea Onukwubiri", - "original_name": "Andrea Onukwubiri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc41517497300fb3af77b", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4096045, - "known_for_department": "Production", - "name": "Robert Jonker", - "original_name": "Robert Jonker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc43793828e0116248c78", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096046, - "known_for_department": "Production", - "name": "Darius Cornea", - "original_name": "Darius Cornea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc42b0e29a20116ace7c8", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096047, - "known_for_department": "Production", - "name": "Paige Minana", - "original_name": "Paige Minana", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc440caef2d00c29a5332", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096048, - "known_for_department": "Production", - "name": "Jejo Sleeper", - "original_name": "Jejo Sleeper", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc44c93828e00bf9e7bd7", - "department": "Production", - "job": "Production Accountant" - }, - { - "adult": false, - "gender": 0, - "id": 4096049, - "known_for_department": "Production", - "name": "Camila Demarchi", - "original_name": "Camila Demarchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc478e323f300c42a17a1", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096050, - "known_for_department": "Production", - "name": "Joere Estremadura", - "original_name": "Joere Estremadura", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc47f0e29a200dcbb0cd9", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096051, - "known_for_department": "Production", - "name": "Angie K. Farella", - "original_name": "Angie K. Farella", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc48717497300de66742c", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096052, - "known_for_department": "Production", - "name": "Kaylee Yibing Hou", - "original_name": "Kaylee Yibing Hou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc48d0e29a200bf1f02c9", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096053, - "known_for_department": "Production", - "name": "Roohi Kamal", - "original_name": "Roohi Kamal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc493e323f300a7d5c1ce", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096054, - "known_for_department": "Production", - "name": "Katya Viglione", - "original_name": "Katya Viglione", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc49893828e013377cc7c", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4096055, - "known_for_department": "Visual Effects", - "name": "Diego Polieri", - "original_name": "Diego Polieri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4c2caef2d01362b3563", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4096056, - "known_for_department": "Visual Effects", - "name": "Douglas de Azevedo", - "original_name": "Douglas de Azevedo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4d7e323f300a7d5c1eb", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096057, - "known_for_department": "Visual Effects", - "name": "Daniel Cuervo Arevalo", - "original_name": "Daniel Cuervo Arevalo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4dfcaef2d01362b3574", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096058, - "known_for_department": "Visual Effects", - "name": "Marcelo Fahd", - "original_name": "Marcelo Fahd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4e517497300c1327e68", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 2, - "id": 4096059, - "known_for_department": "Visual Effects", - "name": "Damian Fernandez Gomez", - "original_name": "Damian Fernandez Gomez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc4ec17497300c1327e74", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096060, - "known_for_department": "Visual Effects", - "name": "José Luis Rosado", - "original_name": "José Luis Rosado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc51be323f300a7d5c1ff", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096061, - "known_for_department": "Visual Effects", - "name": "Rony Tores", - "original_name": "Rony Tores", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc53f0e29a20133c3b579", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096062, - "known_for_department": "Visual Effects", - "name": "Aaron Smith", - "original_name": "Aaron Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc59017497300fb3af7eb", - "department": "Visual Effects", - "job": "Digital Compositor" - }, - { - "adult": false, - "gender": 0, - "id": 4096063, - "known_for_department": "Visual Effects", - "name": "Nico Piccirilli", - "original_name": "Nico Piccirilli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5970e29a200bf1f0311", - "department": "Visual Effects", - "job": "Digital Compositor" - }, - { - "adult": false, - "gender": 0, - "id": 4096064, - "known_for_department": "Visual Effects", - "name": "Fernando Bittar", - "original_name": "Fernando Bittar", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5bae323f3012751cb12", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096065, - "known_for_department": "Visual Effects", - "name": "Jenny Ko", - "original_name": "Jenny Ko", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5c1e323f300a7d5c229", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 4096066, - "known_for_department": "Art", - "name": "Danilo Rodrigues", - "original_name": "Danilo Rodrigues", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d852b6bf31f201cb6aa9b4", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 2, - "id": 4096067, - "known_for_department": "Art", - "name": "Morgan Schweitzer", - "original_name": "Morgan Schweitzer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d85294069f0e013b333d95", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 4096068, - "known_for_department": "Visual Effects", - "name": "Alex Dingfelder", - "original_name": "Alex Dingfelder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5e4e323f3012751cb1f", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096068, - "known_for_department": "Visual Effects", - "name": "Alex Dingfelder", - "original_name": "Alex Dingfelder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5dee323f300c42a17fa", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096069, - "known_for_department": "Visual Effects", - "name": "Anton Thallner", - "original_name": "Anton Thallner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6001749730135017918", - "department": "Visual Effects", - "job": "3D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096069, - "known_for_department": "Visual Effects", - "name": "Anton Thallner", - "original_name": "Anton Thallner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc5facaef2d00fce5b877", - "department": "Visual Effects", - "job": "2D Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4096070, - "known_for_department": "Visual Effects", - "name": "Tina Chao", - "original_name": "Tina Chao", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc60a17497300de66748b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096071, - "known_for_department": "Visual Effects", - "name": "Matt Deans", - "original_name": "Matt Deans", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc60fcaef2d00c29a53a1", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096072, - "known_for_department": "Visual Effects", - "name": "Gilles Desmadrille", - "original_name": "Gilles Desmadrille", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc61693828e00bf9e7c51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096073, - "known_for_department": "Visual Effects", - "name": "Santiago González", - "original_name": "Santiago González", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc621caef2d00df88a93c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096073, - "known_for_department": "Visual Effects", - "name": "Santiago González", - "original_name": "Santiago González", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be85ce323f300e524b51d", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4096074, - "known_for_department": "Visual Effects", - "name": "Kien Hoang", - "original_name": "Kien Hoang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc62693828e00a764925d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096075, - "known_for_department": "Visual Effects", - "name": "Wing Sze Lee", - "original_name": "Wing Sze Lee", - "popularity": 0.998, - "profile_path": null, - "credit_id": "647bc62ccf4b8b00e2d5d9a6", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096076, - "known_for_department": "Visual Effects", - "name": "Stephen Loveluck", - "original_name": "Stephen Loveluck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc632e323f300a7d5c242", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096077, - "known_for_department": "Visual Effects", - "name": "Zac Miller", - "original_name": "Zac Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc639caef2d0119bfbf3f", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096078, - "known_for_department": "Visual Effects", - "name": "Kyle Snider", - "original_name": "Kyle Snider", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc647caef2d00aa42aeba", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096079, - "known_for_department": "Visual Effects", - "name": "Hannah Sun", - "original_name": "Hannah Sun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc64dcf4b8b00a877af51", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096080, - "known_for_department": "Visual Effects", - "name": "Chloe Tu", - "original_name": "Chloe Tu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc65317497300de66749c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096081, - "known_for_department": "Visual Effects", - "name": "Carlos Morán Villanueva", - "original_name": "Carlos Morán Villanueva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc65acaef2d00df88a953", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 4096082, - "known_for_department": "Visual Effects", - "name": "Tinghe Yang", - "original_name": "Tinghe Yang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6600e29a200a6607ed2", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096083, - "known_for_department": "Sound", - "name": "Cathryn Wang", - "original_name": "Cathryn Wang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6cccaef2d0119bfbf69", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4096084, - "known_for_department": "Sound", - "name": "Daniel McNamara", - "original_name": "Daniel McNamara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc6fa0e29a200a6607f02", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096085, - "known_for_department": "Sound", - "name": "Kai Scheer", - "original_name": "Kai Scheer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc72017497300de6674e8", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096085, - "known_for_department": "Sound", - "name": "Kai Scheer", - "original_name": "Kai Scheer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc733cf4b8b01418f3a5d", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4096086, - "known_for_department": "Sound", - "name": "Ashley N. Rubay", - "original_name": "Ashley N. Rubay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc75793828e013377cd3b", - "department": "Sound", - "job": "Assistant Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4096089, - "known_for_department": "Visual Effects", - "name": "Preston Mutanga", - "original_name": "Preston Mutanga", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc87d0e29a20116ace8d9", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096097, - "known_for_department": "Production", - "name": "Crystal Vilaikeo", - "original_name": "Crystal Vilaikeo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc8fd17497300fb3af8c9", - "department": "Production", - "job": "Finishing Producer" - }, - { - "adult": false, - "gender": 2, - "id": 4096098, - "known_for_department": "Visual Effects", - "name": "Christopher Perez", - "original_name": "Christopher Perez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647bc93593828e013377cdad", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4096187, - "known_for_department": "Crew", - "name": "Laura Price", - "original_name": "Laura Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be73193828e00dcdcf024", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 1, - "id": 4096192, - "known_for_department": "Crew", - "name": "Margaret Harris", - "original_name": "Margaret Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647be8f0cf4b8b00c3d269a2", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 4097955, - "known_for_department": "Visual Effects", - "name": "David Jaraiz Sanchez", - "original_name": "David Jaraiz Sanchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e661d93828e00f9d8a5b5", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4097957, - "known_for_department": "Visual Effects", - "name": "Alyssa Zarate", - "original_name": "Alyssa Zarate", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66410e29a22be1f0be1b", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098924, - "known_for_department": "Visual Effects", - "name": "Shinya Ishii", - "original_name": "Shinya Ishii", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a14549dda00ffa4fd6a", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098925, - "known_for_department": "Visual Effects", - "name": "Guillaume Fuentes", - "original_name": "Guillaume Fuentes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139fc945d3600c573985c", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098926, - "known_for_department": "Visual Effects", - "name": "Yeaji Jessie Lee", - "original_name": "Yeaji Jessie Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a4bd9f4a603b6c9ab10", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098928, - "known_for_department": "Visual Effects", - "name": "David Vidal Pedroza", - "original_name": "David Vidal Pedroza", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ab0549dda013933c2a7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098931, - "known_for_department": "Visual Effects", - "name": "Yu-Cheng Huang", - "original_name": "Yu-Cheng Huang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139b785090f00c87e18d6", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4098944, - "known_for_department": "Visual Effects", - "name": "Jay Cassidy", - "original_name": "Jay Cassidy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e659593828e00dcde0ddc", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098947, - "known_for_department": "Visual Effects", - "name": "Wiley Collinson", - "original_name": "Wiley Collinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e659bcf4b8b00c3d36d17", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098948, - "known_for_department": "Visual Effects", - "name": "Wellington Douglas Duarte", - "original_name": "Wellington Douglas Duarte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65a20fb39800fb0ccfad", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098949, - "known_for_department": "Visual Effects", - "name": "Mindy Ha", - "original_name": "Mindy Ha", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65a7cf4b8b00e2d6f268", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098952, - "known_for_department": "Visual Effects", - "name": "Timothy Hoh", - "original_name": "Timothy Hoh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65b01749730135029692", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098957, - "known_for_department": "Visual Effects", - "name": "Minkyoung Kim", - "original_name": "Minkyoung Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65e9cf4b8b00a878c55d", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098958, - "known_for_department": "Visual Effects", - "name": "Laurie Kindiak", - "original_name": "Laurie Kindiak", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e65efccde0401355c0c7e", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098960, - "known_for_department": "Visual Effects", - "name": "Isaac Miranda Rosas", - "original_name": "Isaac Miranda Rosas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e660b17497300c1339c0a", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098962, - "known_for_department": "Visual Effects", - "name": "Derek Moorhouse", - "original_name": "Derek Moorhouse", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e661193828e00bf9fa5fd", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098963, - "known_for_department": "Visual Effects", - "name": "Tracy Munch", - "original_name": "Tracy Munch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e6617cf4b8b01031f7f49", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098964, - "known_for_department": "Visual Effects", - "name": "Alixandriya Schafer", - "original_name": "Alixandriya Schafer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e662b0e29a22be1f0be15", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 4098965, - "known_for_department": "Visual Effects", - "name": "Nina Vazquez", - "original_name": "Nina Vazquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66320e29a22be29378f6", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 2, - "id": 4098966, - "known_for_department": "Production", - "name": "Ethan Duffy", - "original_name": "Ethan Duffy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e669f0fb39800fb0ccfe3", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 2, - "id": 4098967, - "known_for_department": "Production", - "name": "Griffin Johnston", - "original_name": "Griffin Johnston", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66d417497300c1339c39", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 4098968, - "known_for_department": "Production", - "name": "J. Wheeler White", - "original_name": "J. Wheeler White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e66e6ccde0400fbceb2f1", - "department": "Production", - "job": "Producer's Assistant" - }, - { - "adult": false, - "gender": 2, - "id": 4098976, - "known_for_department": "Crew", - "name": "Thomas H. Core", - "original_name": "Thomas H. Core", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647e67f6caef2d01362c6812", - "department": "Crew", - "job": "Digital Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4104879, - "known_for_department": "Visual Effects", - "name": "Kelly Christophers", - "original_name": "Kelly Christophers", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64839e6cbf31f25055a046cb", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104880, - "known_for_department": "Visual Effects", - "name": "Thomas Cosolito", - "original_name": "Thomas Cosolito", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e71e272600128795313", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104881, - "known_for_department": "Visual Effects", - "name": "Megan Deane", - "original_name": "Megan Deane", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e78e2726000c9301034", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104882, - "known_for_department": "Visual Effects", - "name": "Stefano Di Noia", - "original_name": "Stefano Di Noia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839e88c9dbf9011dfb74d0", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104883, - "known_for_department": "Visual Effects", - "name": "Bumjun Jeremy Kim", - "original_name": "Bumjun Jeremy Kim", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ecd99259c01392ab6a0", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104884, - "known_for_department": "Visual Effects", - "name": "Jason Koh", - "original_name": "Jason Koh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839ee6bf31f250569af032", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104885, - "known_for_department": "Visual Effects", - "name": "Sophie Marfleet", - "original_name": "Sophie Marfleet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f1099259c00accc2367", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104886, - "known_for_department": "Visual Effects", - "name": "Miriam Melzi", - "original_name": "Miriam Melzi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f28e375c000ff47e8ec", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104887, - "known_for_department": "Visual Effects", - "name": "Pepe Orozco", - "original_name": "Pepe Orozco", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839f38c9dbf9013a0612aa", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104889, - "known_for_department": "Visual Effects", - "name": "Anil Verma", - "original_name": "Anil Verma", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64839fa4e375c000c5271532", - "department": "Visual Effects", - "job": "Compositing Lead" - }, - { - "adult": false, - "gender": 0, - "id": 4104977, - "known_for_department": "Art", - "name": "Jon Measures", - "original_name": "Jon Measures", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6483aea5e375c000ff47ed2e", - "department": "Art", - "job": "Other" - }, - { - "adult": false, - "gender": 0, - "id": 4108154, - "known_for_department": "Lighting", - "name": "Sagar Alodiya", - "original_name": "Sagar Alodiya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc8599259c00accdcdbf", - "department": "Lighting", - "job": "Lighting Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4108154, - "known_for_department": "Lighting", - "name": "Sagar Alodiya", - "original_name": "Sagar Alodiya", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6486fc8ae375c000acc66a64", - "department": "Visual Effects", - "job": "Compositing Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4109312, - "known_for_department": "Sound", - "name": "Shae Jacobs", - "original_name": "Shae Jacobs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64883f1a6f8d9500afde6454", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109315, - "known_for_department": "Sound", - "name": "Ayra Starr", - "original_name": "Ayra Starr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64883fbde375c000ff4a0c5a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109317, - "known_for_department": "Sound", - "name": "Zozi", - "original_name": "Zozi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884003d2b209014e0ac6d0", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109318, - "known_for_department": "Sound", - "name": "EI8HT", - "original_name": "EI8HT", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648840136f8d9500c88b2a4d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109323, - "known_for_department": "Sound", - "name": "Huey Coyote", - "original_name": "Huey Coyote", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648840f7e2726000c932243d", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109324, - "known_for_department": "Sound", - "name": "Big Boss Vette", - "original_name": "Big Boss Vette", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884101e375c000c5298346", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109325, - "known_for_department": "Sound", - "name": "Omah Lay", - "original_name": "Omah Lay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884106e2726000c9322452", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109327, - "known_for_department": "Sound", - "name": "Johnny Goldstein", - "original_name": "Johnny Goldstein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488411f6f8d9500e500a782", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109328, - "known_for_department": "Sound", - "name": "Badal", - "original_name": "Badal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488412c99259c00e2f6a5b8", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109329, - "known_for_department": "Sound", - "name": "Tech Panda", - "original_name": "Tech Panda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884131d2b209014e0ac77f", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109330, - "known_for_department": "Sound", - "name": "Kenzani", - "original_name": "Kenzani", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884136bf31f25055a28fd1", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109333, - "known_for_department": "Sound", - "name": "Mora", - "original_name": "Mora", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648841a599259c00ff105c65", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109336, - "known_for_department": "Sound", - "name": "NAV", - "original_name": "NAV", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648841ee99259c011c41d241", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109337, - "known_for_department": "Sound", - "name": "Robert Harris", - "original_name": "Robert Harris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64884239e375c00139c1c66a", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109338, - "known_for_department": "Sound", - "name": "Nija", - "original_name": "Nija", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6488423ed2b20900ad3e0b03", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4109340, - "known_for_department": "Sound", - "name": "Roisee", - "original_name": "Roisee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648842766f8d95013c74678e", - "department": "Sound", - "job": "Songs" - }, - { - "adult": false, - "gender": 0, - "id": 4202801, - "known_for_department": "Visual Effects", - "name": "Kellie Bricen", - "original_name": "Kellie Bricen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139c74d679100e24169b6", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202802, - "known_for_department": "Visual Effects", - "name": "Mikaela Bantog", - "original_name": "Mikaela Bantog", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139ce6d4c9700cb7ee4ee", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202804, - "known_for_department": "Visual Effects", - "name": "Trey Black", - "original_name": "Trey Black", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139d44d679100e24169c4", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202805, - "known_for_department": "Visual Effects", - "name": "Luis Paulo Carvalho", - "original_name": "Luis Paulo Carvalho", - "popularity": 1.018, - "profile_path": null, - "credit_id": "64d139db549dda013933c24f", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202807, - "known_for_department": "Visual Effects", - "name": "Cemre Esen", - "original_name": "Cemre Esen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d139f6549dda00ffa4fd60", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202809, - "known_for_department": "Visual Effects", - "name": "Sehyun Jacob Jang", - "original_name": "Sehyun Jacob Jang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a23d9f4a603bafb8189", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202811, - "known_for_department": "Visual Effects", - "name": "Chanhyung Jung", - "original_name": "Chanhyung Jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a3a4d6791011c188a12", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202812, - "known_for_department": "Visual Effects", - "name": "Eunjung Lee", - "original_name": "Eunjung Lee", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64d13a446d4c97014f433e12", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202813, - "known_for_department": "Visual Effects", - "name": "Mark Jeong Woong Lee", - "original_name": "Mark Jeong Woong Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a5f85090f00c87e191f", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202814, - "known_for_department": "Visual Effects", - "name": "Kevin Liu", - "original_name": "Kevin Liu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a6a85090f00ae847be7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202815, - "known_for_department": "Visual Effects", - "name": "Czar Ryan Pellano Ompad", - "original_name": "Czar Ryan Pellano Ompad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a83d8d329011e74bb64", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202817, - "known_for_department": "Visual Effects", - "name": "Dongick David Sheen", - "original_name": "Dongick David Sheen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a896d4c9700ec58a979", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202818, - "known_for_department": "Visual Effects", - "name": "Ryan Saper", - "original_name": "Ryan Saper", - "popularity": 0.659, - "profile_path": null, - "credit_id": "64d13a904d679100e2416a21", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202819, - "known_for_department": "Visual Effects", - "name": "Insun Ryu", - "original_name": "Insun Ryu", - "popularity": 0.656, - "profile_path": null, - "credit_id": "64d13a97549dda011c29152b", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202821, - "known_for_department": "Visual Effects", - "name": "Spencer Stevens", - "original_name": "Spencer Stevens", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13a9e85090f01069282d7", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 0, - "id": 4202822, - "known_for_department": "Visual Effects", - "name": "Laura Tabara-Mardan", - "original_name": "Laura Tabara-Mardan", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64d13aa44d679100c52d439e", - "department": "Visual Effects", - "job": "Modeling" - }, - { - "adult": false, - "gender": 2, - "id": 4202823, - "known_for_department": "Visual Effects", - "name": "René Völker", - "original_name": "René Völker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d13ac64d679100ff68d95b", - "department": "Visual Effects", - "job": "Modeling" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Scenes With Oscar Isaac", - "key": "Pm3lA3DKMGE", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-19T22:00:11.000Z", - "id": "650b53a8cadb6b01387cfdf5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Creating Pavitr Prabhakar", - "key": "Sj6iQeV33gs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-04T22:00:22.000Z", - "id": "64fc5f5fdb4ed61033a04455" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unpacking the Multiverse", - "key": "iPsFD9KPjzA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-29T22:00:32.000Z", - "id": "64f057a64b0c63013801216b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Issa Rae as Jessica Drew", - "key": "khrpOifASZ0", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-24T16:00:37.000Z", - "id": "64e811a6c613ce00eaa88750" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Live Your Truth", - "key": "LYtS6yKsOEQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-21T22:00:10.000Z", - "id": "64e40ec51feac100c46bec31" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "True Spider-Man Fans ft. Stan Verrett & George Kittle (ESPN)", - "key": "C0vxF1BJ4uw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-14T19:00:06.000Z", - "id": "64dcc13fd100b614b3ffbe0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "of-fPvDLsVE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-08T16:00:41.000Z", - "id": "64d2b50703726400fffc07ae" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Watch Now on Digital", - "key": "xc_j6Hpj0YM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-08T04:00:34.000Z", - "id": "64d3024ddb4ed600ad2366c0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Special Features Preview", - "key": "56aoS2EP_Kw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-01T14:00:03.000Z", - "id": "64c996720b74e9014d7fa8ec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Voice Cast Dubs Trailer", - "key": "46spiINi3o0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T16:00:03.000Z", - "id": "648cb311263462012d49707b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "In Theaters Now", - "key": "WCY2fxj5ll4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-12T22:00:24.000Z", - "id": "64902fa5c2ff3d011cba91a8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Meet Jessica Drew", - "key": "Yxaw1otUuUI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-08T18:00:29.000Z", - "id": "648238dcd2b209014e07bac6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "IMAX® Interview | Joaquim Dos Santos", - "key": "sG2vTyLpzQo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-07T00:51:25.000Z", - "id": "64b001f0c4904800c506ea1d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Annihilate\" by Metro Boomin x Swae Lee x Lil Wayne x Offset", - "key": "EbHhQfTvMSA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-06T23:04:27.000Z", - "id": "648248a399259c00e2f3a5a2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"The best Spider-Man film ever made\" is also the #1 Movie in the World!", - "key": "KVx-SObsNIM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T03:09:57.000Z", - "id": "64810a4f99259c00accad26a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 19", - "key": "DYbqiqTXhbc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T02:30:10.000Z", - "id": "64810a49d2b20900ca1d1539" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 18", - "key": "DocPgQ95IHY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-05T00:30:07.000Z", - "id": "64810a36e375c00139be5775" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "SECRETS REVEALED! Shameik Moore, Hailee Steinfeld & Daniel Kaluuya", - "key": "as0VuHCf79M", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-03T11:01:03.000Z", - "id": "647daaac17497300c1335d17" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Pushing Past the Limits Vignette", - "key": "Tnb9dUA9pIo", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-02T09:55:34.000Z", - "id": "647c3621caef2d00aa42f0e4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Cast Unboxing", - "key": "6tYqhRYUu4Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T21:30:02.000Z", - "id": "647ae74de323f30127517c8b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Point :06", - "key": "r1sob-B7rNQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b5b4e323f300e523c613" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Join :15", - "key": "-IpM3YOlpJE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b627e323f300e523c645" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Masterpiece :15", - "key": "O4r2fdAWI6Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b6d30e29a200f980ffd1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let's Go :15", - "key": "D9ObYKAPlEo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:12.000Z", - "id": "6479b719e323f300c42940dd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider Zoo :15", - "key": "SEYKogEkO2c", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b66993828e011623a73e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Everything :06", - "key": "NtbkjfvjxV0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b6bee323f3012750e549" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Society :06", - "key": "axQMNL8e8pg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7440e29a20133c2cd72" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Say It :15", - "key": "tPkjZZ7BsAU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7731749730135009f07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extraordinary :15", - "key": "v4XG6rdT58Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7bccaef2d00aa41d8b3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Greatest :15", - "key": "dMNeoggTZRY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T14:45:11.000Z", - "id": "6479b7dccaef2d00aa41d8bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Calling\" by Metro Boomin x Nav x A Boogie with Swae Lee", - "key": "mh-KncHB6F4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T22:45:02.000Z", - "id": "648248c599259c00ff0d485b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Across the Spider-Verse cast members discuss it all | How It Happened: Across the Spider-Verse", - "key": "XHLrJSqZd48", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-31T15:59:41.000Z", - "id": "6479b39a17497300c1319ec2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 17", - "key": "m5WgYVNiO1g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T01:00:29.000Z", - "id": "647c002d17497300c132a5a5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 16", - "key": "NplDtSWMZqs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T00:30:06.000Z", - "id": "647c001c0e29a200f98216a3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 15", - "key": "ocu84jAOUnQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T00:00:19.000Z", - "id": "647c001693828e013377f732" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 14", - "key": "PiRQKcD5EJg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T23:30:03.000Z", - "id": "647c0010e323f3010615633a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 13", - "key": "rdyoLs85dO0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T23:00:30.000Z", - "id": "647c00011749730118713e70" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "PlayStation Exclusive Clip", - "key": "vUyC3ohm1pI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-30T16:00:41.000Z", - "id": "64765537255dba014a075f37" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider-Center ft. Ashley Brewer & George Kittle (ESPN)", - "key": "fJjTCHqS2TE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-25T19:53:22.000Z", - "id": "6471f0459408ec00a7fa3ea4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Spider-Stan ft. Stan Verrett (ESPN)", - "key": "h-TE0A_xDxw", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-25T19:49:24.000Z", - "id": "6471f065a199a60116c6e9ef" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hanging With Gwen", - "key": "JDr9U-Fyuqo", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-23T11:00:18.000Z", - "id": "647c35e8cf4b8b01418f7f07" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Stop Spider-Man", - "key": "GPitD0-mkYA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-22T21:01:15.000Z", - "id": "646be75733a3760158db026c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Blue Panther", - "key": "RGMKe3Zbo98", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T18:29:16.000Z", - "id": "6472c8a195665800debac6ad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Trailer - \"Stronger\"", - "key": "yFrxzaBLDQM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-19T23:42:01.000Z", - "id": "64682c38c3514c013a5557c8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Self Love Song Teaser", - "key": "Jb7weNjC2k4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T22:13:59.000Z", - "id": "6468696f33a37600e67a44d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "New Guy", - "key": "XGayDJEqbQA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T17:16:10.000Z", - "id": "64666ceb006b010189577f76" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Funny Kids", - "key": "_AaUrQKBuhU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:49:51.000Z", - "id": "6472b319a199a600a7564708" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Grounded", - "key": "xDwgLEXO6w0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:49:20.000Z", - "id": "6472b3129ae61300e5945737" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Different Sides", - "key": "zRBNWipKHb4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:48:40.000Z", - "id": "6472b304a199a600dc4c7d1b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Sacrifice My Bad", - "key": "pREAYWiHGyQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-18T16:48:02.000Z", - "id": "6472b2fe9408ec00a7fa88cc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Clip - Gwen & Miles", - "key": "MokxwHbscQ8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-17T17:00:13.000Z", - "id": "64650b5ed05a0300fc2190b5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Pavitr Prabhakar", - "key": "nVaAQhSZQpc", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:44:59.000Z", - "id": "6479b48e17497300de6591d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Jessica Drew", - "key": "wt5HZ7CXCFM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:44:09.000Z", - "id": "6479b4a3caef2d00df87c349" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Character Reveal: Spider-Punk", - "key": "qtEjwTAkLl8", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-17T13:43:45.000Z", - "id": "6479b4b7caef2d00c2996ea0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Clip - \"Missing Class\"", - "key": "QJLg2cS-Zsw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-16T16:00:14.000Z", - "id": "64644d7d9f37b000e2a9eb46" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 12", - "key": "Siq1MNKJDG8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T08:30:06.000Z", - "id": "64668fd42bcf6700e3b98243" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 11", - "key": "P9yp6z_5W9g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T07:30:08.000Z", - "id": "64668fd0d18572010196cb4b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 10", - "key": "rjiyRxTIZHQ", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T06:30:14.000Z", - "id": "64668fcb006b01018957881a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 9", - "key": "EI0NTMdUVBE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T05:30:03.000Z", - "id": "64668fc733a3760158d89ea8" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 8", - "key": "WRI9KGrRKLI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T04:30:15.000Z", - "id": "64668fc233a376013b3cf6c2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 7", - "key": "qcPgdj1sjNg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T03:30:27.000Z", - "id": "64668fbe006b010105891580" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 6", - "key": "CO9eqvuaaG0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T02:30:07.000Z", - "id": "64668fb9a5046e012466c52a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 5", - "key": "JMI28YKqOUo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T01:30:12.000Z", - "id": "64668fb0c3514c015778db0b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 4", - "key": "NhAS_-IRj2s", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T00:30:15.000Z", - "id": "64668faba5046e01474be320" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 3", - "key": "pBtymkdElK0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T13:30:30.000Z", - "id": "64668fa72bcf6700fe5f275c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 2", - "key": "ltrOzSBlSuE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T11:30:20.000Z", - "id": "64668fa2d1857200e5a2fcff" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Philippines Spot 1", - "key": "bOvIS6ayNvE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-14T09:30:15.000Z", - "id": "64668f9d2bcf670138938383" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "International Trailer", - "key": "Etv-L2JKCWk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-11T16:28:25.000Z", - "id": "645fd0d28c44b900fc9075a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Legacy 30\"", - "key": "XFZJ3pHK5Vk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-04T11:24:13.000Z", - "id": "6453a99ad8f44e0db071c332" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Welcome 30\"", - "key": "bk0ck-g_rPk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-04T11:23:06.000Z", - "id": "6453a9d033ad8f01728e1b26" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer #2", - "key": "shW9i6k8cB0", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T07:01:03.000Z", - "id": "642bcfc18de0ae00978e9220" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Spider-Verse will never be the same. New trailer arrives April 4.", - "key": "cfUpAOknDRI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-02T20:00:08.000Z", - "id": "6434725060c75100f2f0bbff" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "cqGjhVJWtEg", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-13T13:59:17.000Z", - "id": "639896c579b3d40091288974" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Look", - "key": "BbXJ3_AQE_o", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2021-12-05T00:46:56.000Z", - "id": "61ac0d26596a91006103cdce" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "vote_average": 5.694, - "vote_count": 34, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9xfDWXAUbFXQK585JvByT5pEAhe.jpg", - "vote_average": 5.458, - "vote_count": 19, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kVd3a9YeLGkoeR50jGEXM6EqseS.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/nGxUxi3PfXDRm7Vg95VBNgNM8yc.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1710, - "iso_639_1": null, - "file_path": "/kGWpZewzInbzTuaIHcy0bFgzXuM.jpg", - "vote_average": 5.358, - "vote_count": 25, - "width": 3040 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yweju3H52GA1PTZ2yOd3xXP5B3a.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/jS4z8y70ESrZwmFJubqYuceFtnX.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/dpLW2h6uCyLJlENeFNOWYH5UrLk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/s8hIt7qZOPR1gKtZzfAneEEr8pb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/rxav3SDsDRzRs4ait1lI6OIrJBH.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/hbAG0I3l9CxmljXsIU8Lyb7hQKJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/fmNeiPNzjUbN2FY0d4Q9GnfyHsp.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rsaSxTYH85f7JJmbDv0wz7CIOes.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/xOY2tKrep2ikGJsdRWyzbfLbjsX.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1600, - "iso_639_1": null, - "file_path": "/1V9FWhPSKolSBOO05IInfypX7nQ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2845 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/gwE7DBdhm565GmXp0WiplxseiLv.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/fkGsStbewBRNIAAZJjDWFHpnU9I.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/7Y8qI6AD15kgMYgu50dpEInojrn.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1890, - "iso_639_1": null, - "file_path": "/2ZSiEMjzermEeGwqlAIrUOU1mxF.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3360 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/n0ViSXCxEZp8TKHw6MRouu9hNOx.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/1cBpLF7a3M9q0HsUGSS9PuosGnA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bn31E14V4OlaQyqZ61CTeKJjryH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/lV2AwZkm6IuDUkDgiDsBY9rloZY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bpvjzk0QXbJPV4wVwrHuYiq1TbP.jpg", - "vote_average": 5.158, - "vote_count": 27, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/e59QkHTueqRelzq0thn5deCEKIG.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1955, - "iso_639_1": null, - "file_path": "/tQ0GkuDFx9uswFlFdwlf6U5UcNx.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 3475 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/n3tyH0YZ2QUHxj0HnwjX1fR1QkF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/3igTCivZPVaR8SaZYKUf3w3V2U.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1727, - "iso_639_1": null, - "file_path": "/2I5eBh98Q4aPq8WdQrHdTC8ARhY.jpg", - "vote_average": 5.092, - "vote_count": 35, - "width": 3072 - }, - { - "aspect_ratio": 1.779, - "height": 858, - "iso_639_1": null, - "file_path": "/83LKt8MyNKWr7drBKMi19fOVSdm.jpg", - "vote_average": 5.022, - "vote_count": 10, - "width": 1526 - }, - { - "aspect_ratio": 1.778, - "height": 1715, - "iso_639_1": null, - "file_path": "/dlebyCnmdwXtJfHNicBYhudz5EJ.jpg", - "vote_average": 5.006, - "vote_count": 17, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/agdJmmvf4Raxpa93MpgcRyFbQLI.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 1920 - }, - { - "aspect_ratio": 1.779, - "height": 1058, - "iso_639_1": "en", - "file_path": "/ppehJ5HlIcqFpH9erwjwFGKdIoe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1882 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/fWGU477PmUiR7Od2IEnHuRQaHia.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2PBNaTUb7U5rWLtHmrSn1qbjRJT.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/clAVSS8aJZYblELE4GA2tuJXYWT.jpg", - "vote_average": 4.954, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/1kTSDu4AkudOIWT2RssOyTHj6YU.jpg", - "vote_average": 4.922, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/p4PbmHbGmCVuTSF6Q3auZheXcm9.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 3050 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/i3fnrJR5SOLqropUaByIv9fvlMK.jpg", - "vote_average": 4.914, - "vote_count": 12, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/7NWErODhjx5paVGRaLCCdromrUo.jpg", - "vote_average": 4.898, - "vote_count": 10, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/jo4JPyA8dvvnKwBRpi2A5fKK5fs.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 856, - "iso_639_1": null, - "file_path": "/6j6HpKRZKw0RP7bRX5Q45qaWsAX.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1522 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/82cxEifGLr7YTNcc0DNV0ya7Osq.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 1716, - "iso_639_1": null, - "file_path": "/i3jzXfc198W9bHgZbqY6IBaNS3l.jpg", - "vote_average": 4.828, - "vote_count": 16, - "width": 3050 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "pl", - "file_path": "/1WiMCZ5SkPdPZmS0y48rCLsUmER.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.776, - "height": 1153, - "iso_639_1": "en", - "file_path": "/jQPIFEimFj9n1zOtCif39UeF8E1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/1xPzrPJlIZZdBsIdwrEhZw2wvgQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 920, - "iso_639_1": "es", - "file_path": "/dqW4XklqnMOopW9MMmT2lmLN3dT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1636 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/8ywMH1NX0Wu2I5Xx70A7HreMctw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 920, - "iso_639_1": "es", - "file_path": "/we79KBJ3vLBI5OfLZewJHqoQxOc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1636 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1OVBIK3ZdjXddXVgPayVUP1iaa1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 981, - "iso_639_1": "vi", - "file_path": "/6kH12uy9Jb7jFW6vaMGbEqjE1V2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1744 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "vi", - "file_path": "/mnbN6B4UTKPWVIbk9soOsBc4E0g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/YTjM2M1rWkUlYoR2KELeUXu2WF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/maMOg1HtMIRMlONJAj192kPHsDU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/mUIrbgBvy0ObPQvBydrY2AHTOxs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/6tAg0bb9D4KAHymW9dWADmUbJlL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/JGmAxG8hXn8AWeE03QxCpzYhak.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/cMoAazlwW8EoLFmpYkjPC9f8SjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/dUcp6GG3HIkRevZXr1foPkrIJjp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/iBpWPfY2eKgCbtLxF4HyCLbfaoX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/58Eg9ckornmiVmRh1kwnTnD7Im9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hu", - "file_path": "/h1f7x2of5rovx60rTDpiL6qpfAa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/hSgOIgAtoyr8kGzyVsaetfuZNHq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/mGwdSEJDJUGC5SXbLin01PgU9PB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/6nzSCXDDQyyb4wnEvDkjN4n52ge.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/wq0dq0XpNR1UWadbYJOyK5EdcrA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2TqLuqBrhzIBtjE26wDdZW7S7fj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oxL5sLscckByhA0sHtflzoQekvN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/xsab4EqXRecQlBqYXcoZOeN06TO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/1uZg0jfIVmnQVsENQmpuYG3dSJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 3.018, - "height": 658, - "iso_639_1": "en", - "file_path": "/cmE0j3mQQe6xrzLryxGF9rF2KC8.png", - "vote_average": 5.522, - "vote_count": 4, - "width": 1986 - }, - { - "aspect_ratio": 2.825, - "height": 836, - "iso_639_1": "uk", - "file_path": "/32ixSsVtcs36CsvuFASz7fhb4ET.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2362 - }, - { - "aspect_ratio": 3.218, - "height": 426, - "iso_639_1": "pt", - "file_path": "/fJOvcMolQUZIcOuSsogP0eBN33d.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1371 - }, - { - "aspect_ratio": 2.684, - "height": 1296, - "iso_639_1": "hu", - "file_path": "/bmckgwkf5wYeKOQZ27MdqUsEqLX.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3478 - }, - { - "aspect_ratio": 2.927, - "height": 1294, - "iso_639_1": "en", - "file_path": "/4JDOCXMbFv7blqAuDyUMzJEa8d.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3787 - }, - { - "aspect_ratio": 2.926, - "height": 1294, - "iso_639_1": "en", - "file_path": "/nX9CSkpKbkyARLTOx04UPTBglsP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3786 - }, - { - "aspect_ratio": 2.653, - "height": 167, - "iso_639_1": "es", - "file_path": "/bJUykqWBzpE7qYfmPsdMAKNa3Ap.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 443 - }, - { - "aspect_ratio": 2.333, - "height": 1495, - "iso_639_1": "zh", - "file_path": "/pSDm8eSxP2QhEy3fq9rPaEWbqVk.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 3488 - }, - { - "aspect_ratio": 3.202, - "height": 529, - "iso_639_1": "ru", - "file_path": "/n0nFqOAcYQ91g1zGu950QyYGO3c.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1694 - }, - { - "aspect_ratio": 2.764, - "height": 942, - "iso_639_1": "hu", - "file_path": "/7os6dsQW9BJlt1iiV7mXQyTvHt9.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 2604 - }, - { - "aspect_ratio": 2.852, - "height": 724, - "iso_639_1": "es", - "file_path": "/iPVdV2T0uN1MvEgFIwt2GMlX7cJ.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 2065 - }, - { - "aspect_ratio": 1.948, - "height": 572, - "iso_639_1": "ja", - "file_path": "/q9t4IXxrK7UuZfMY88QViqzmZSH.png", - "vote_average": 0, - "vote_count": 0, - "width": 1114 - }, - { - "aspect_ratio": 2.825, - "height": 836, - "iso_639_1": "uk", - "file_path": "/46cFV2XIeeTkhXKnZuhW9Jkg90S.png", - "vote_average": 0, - "vote_count": 0, - "width": 2362 - }, - { - "aspect_ratio": 2.946, - "height": 537, - "iso_639_1": "en", - "file_path": "/mZK6Gt9YUqXC8vUCcdIGFhIjuzr.png", - "vote_average": 0, - "vote_count": 0, - "width": 1582 - }, - { - "aspect_ratio": 2.698, - "height": 1296, - "iso_639_1": "hu", - "file_path": "/rknVLsRrReid950weWtJKMTUPhg.png", - "vote_average": 0, - "vote_count": 0, - "width": 3496 - }, - { - "aspect_ratio": 2.411, - "height": 487, - "iso_639_1": "zh", - "file_path": "/jpBK0O3UQ1R2DDCyXnM78bmLftw.png", - "vote_average": 0, - "vote_count": 0, - "width": 1174 - }, - { - "aspect_ratio": 2.561, - "height": 164, - "iso_639_1": "es", - "file_path": "/f4F83HhdYT6PMeo5a1zq3S6AMw2.png", - "vote_average": 0, - "vote_count": 0, - "width": 420 - }, - { - "aspect_ratio": 2.348, - "height": 155, - "iso_639_1": "zh", - "file_path": "/3ZVlTIbOdjXpSpBjI30oJkkfa10.png", - "vote_average": 0, - "vote_count": 0, - "width": 364 - }, - { - "aspect_ratio": 3.232, - "height": 419, - "iso_639_1": "pt", - "file_path": "/1WdHlP3t3h3K7f5F6Nm48DJFUNR.png", - "vote_average": 0, - "vote_count": 0, - "width": 1354 - }, - { - "aspect_ratio": 2.183, - "height": 191, - "iso_639_1": "zh", - "file_path": "/QuqXKgoaUPy6f9ajZjDAgKkfCo.png", - "vote_average": 0, - "vote_count": 0, - "width": 417 - }, - { - "aspect_ratio": 2.726, - "height": 1300, - "iso_639_1": "ko", - "file_path": "/17uq7Ew2jtLkonGu85hR5MeQ4Hl.png", - "vote_average": 0, - "vote_count": 0, - "width": 3544 - }, - { - "aspect_ratio": 2.436, - "height": 1299, - "iso_639_1": "ko", - "file_path": "/1ASSreQWgDuTbm7UOdQfPZH6wXV.png", - "vote_average": 0, - "vote_count": 0, - "width": 3165 - }, - { - "aspect_ratio": 2.371, - "height": 1299, - "iso_639_1": "zh", - "file_path": "/elFh3cFe3Py4bw5CVEI4FncIvRN.png", - "vote_average": 0, - "vote_count": 0, - "width": 3080 - }, - { - "aspect_ratio": 1.794, - "height": 1299, - "iso_639_1": "zh", - "file_path": "/3RuaQ97TLtKlEDqUqFOmrCvRk4G.png", - "vote_average": 0, - "vote_count": 0, - "width": 2330 - }, - { - "aspect_ratio": 1.84, - "height": 1298, - "iso_639_1": "th", - "file_path": "/mRPLzWyWdzqP52bklWxH75osONK.png", - "vote_average": 0, - "vote_count": 0, - "width": 2388 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "vote_average": 6.26, - "vote_count": 39, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uc5U4GCZu9Z2Zb3yqk5fZfLwawR.jpg", - "vote_average": 5.714, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zknrogDlwcmaz3yHkA3yEhy005t.jpg", - "vote_average": 5.636, - "vote_count": 41, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/okQzkB2VtM1HZU8oqPL4boeSiGi.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zNaOwmI4mJfaXbX9UwoHMQH0fdG.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/37WcNMgNOMxdhT87MFl7tq7FM1.jpg", - "vote_average": 5.582, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/AjC2OM0B5smL34FoiX5Y9P83o3e.jpg", - "vote_average": 5.51, - "vote_count": 26, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jN1tz3Z10gUOdb11iPwQd6JBlms.jpg", - "vote_average": 5.506, - "vote_count": 42, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5EA5u5HtCF32oG5hpHRmDXEqaff.jpg", - "vote_average": 5.456, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/sakUtSDSUlTNuHN9aAR5eDftxnT.jpg", - "vote_average": 5.456, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2450, - "iso_639_1": "pt", - "file_path": "/4CwKj1fw33BXYzxvrpM3GlAhK4L.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 1632 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/rilpPMoF4LbKcBPb4omiqm7Zjw0.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/7g4J08JRBGsYr7N7OYPMYYMKIbG.jpg", - "vote_average": 5.414, - "vote_count": 34, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bYDwKJrIPjgANXNXUkF7ssSESsD.jpg", - "vote_average": 5.41, - "vote_count": 28, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/fWNIrfvDXORrbfSVy3OX7ndgCLw.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "en", - "file_path": "/zPoqAu4gxZRmcPzSLFJ9b0VciaL.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 2252, - "iso_639_1": "en", - "file_path": "/g9Vc18b6uDn1hKHPoNha3zbvw1c.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 1502 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iUhAHV2RTFCbDnwgMLJ473zodTI.jpg", - "vote_average": 5.394, - "vote_count": 10, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iQhDO2IV3tvDWGcFzjaXIGxByqz.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/rHNFvk0M5svBX1wYhYvvILeYOql.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sEtt7PhN2WIQX0AczDPD2y9hmdl.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pf6GF2aqSwdIfkV1TgD3OzM4MX4.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jx1mhzP0RhKVfXHjXEjoP36sbhl.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/q9KYsGFUr7l2IN8MDrEE7csyQoD.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tqXL1NXqFUPVT85pBXJhlO4HDas.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ptbFY3MocZTF1sT1JnLbd5MLTBp.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cuyJr2cqv9slYWciehTGXVeGugv.jpg", - "vote_average": 5.358, - "vote_count": 25, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "es", - "file_path": "/qqXTerrQYwg9pIMhb1GFbxa3WUz.jpg", - "vote_average": 5.342, - "vote_count": 15, - "width": 1400 - }, - { - "aspect_ratio": 0.675, - "height": 2965, - "iso_639_1": "en", - "file_path": "/biFcX9ATT6OCJaU4lhhDzt9Reoz.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1777, - "iso_639_1": "en", - "file_path": "/ceRlzcESqqbA5vqmp0ggOye7xbC.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1201 - }, - { - "aspect_ratio": 0.7, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/jBmJZDiJ2h6DimGROpxWlPh1xIo.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1434 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/40ODF4OUiCdTlvCSRcTDjhVexpx.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/vgiU7r8vinKT10wk590dG1a8zPc.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ykHpi0AHjmoc5gNlsnYkXboEXLj.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2DAlwQVzW89uFBtLiW52M5mAGXR.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bXWPVTzZe5PJaKnxjh7IAOx8IXh.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/xxPXsL8V95dTwL5vHWIIQALkJQS.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1714, - "iso_639_1": "zh", - "file_path": "/yTDh4Q261rOtSI0gYncaHPgJkOu.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1143 - }, - { - "aspect_ratio": 0.667, - "height": 2046, - "iso_639_1": "zh", - "file_path": "/xkusGef09HlajkCPK8b9vOjnBcC.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 1601, - "iso_639_1": "zh", - "file_path": "/fmSTtdtKF9LRjArQDerftITxKhk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 2098, - "iso_639_1": "en", - "file_path": "/bmhirsu8lHEu1fsGux5Xc89d4f9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1399 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/zG9TYiHt0fdaJiWuNEhFrfKzwoi.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/sqMnGzdNou8ib3zuw6YD5KVyXcw.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/v3G2CEQCHzwotPMUsnBVwxg6MwJ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2tZRYYgE63t6W4AvHHS8KMXNnRi.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mVrrsJXXVBmsgUn6MzeJc2PEUFj.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ba0ddErne0hdb9Gn5H0UulIkUVe.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/m3UmW6Mnl1JgB8x7Wx94TEKZqyz.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/g8hEGtcqD1Xydpn3kT8XplZ3cRv.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/5bTWNxlWFsJqgWMsVGZNMM3QQQR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1400 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "en", - "file_path": "/6p65J3g0NGXdmZMFMPp59hxE63Q.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aVvTPzo27HmYP9zmSTvLUq5a6zo.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5gNK0WF385pCXgOqAzrIGJVD2DQ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/5He4cPdlvojv9tbO07jjZE03sVb.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/zuXZnzHvXdWyVDVPZcLvPNrKvEq.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1838, - "iso_639_1": "tr", - "file_path": "/2k49onFB4SnbMWgczIhf1JWl6Tr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.674, - "height": 1137, - "iso_639_1": "nl", - "file_path": "/6Keegp1IOXqeZPPJlCub3W1Bogc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 766 - }, - { - "aspect_ratio": 0.68, - "height": 1000, - "iso_639_1": "pl", - "file_path": "/vNYymrGDM2XZzfTgPlntO7fWu8C.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 680 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/78WGOACqLbhR93YfMLSBSIP2pIF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bX547n5W9ZIKCeAE44Vf2nfw4w.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/qLUNJM8AjrxzcJxtLW0uW7HhX5K.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/Qtj9pBZXiiNs3z1XcHg5wKCcKu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": null, - "file_path": "/pqJp8jsuF6tTbWiZeR74fybmGSF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/y1XiUfer8KrywS7zouu6LcGnLXX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cdv5CXemY1W63mmmna43SymugL1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.682, - "height": 2797, - "iso_639_1": "el", - "file_path": "/apscHT6dOojeEaY7bPo3Op9H3kK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1907 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uraVfLtA95VY6vJxA2AO2WqhG65.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/drljBgWIW1fnDTPbGBPsvCLcQu0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/u8tgy1g2pYI5bJbcWPEBkG46Rz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/fUwfsPWEEdnSt29jIwJ5eVtySX6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/hpxdjYWAI1EeO0XNEfwZA56Tjg1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/gMDbgY0vYaCrJcbv2gPlffIHUDS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xQCFwjUEeJHzLbtdgt9z7VOmapf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/qyVB9HhnjsPx3UHnIGeEU4UgrQj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cCuKR2dGcvL996vQTlFKr055Bhz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/2dD3hEvjeOeANlhifqIOQxxy7bp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "lo", - "file_path": "/kTa74iH5cYoFiqk4RpVMJqHXYYG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 2049, - "iso_639_1": "en", - "file_path": "/p6BWX74AyUoh79EobFEPlGypPz2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1383 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hvfwCeSTgsExmz9l31dKkfR83DH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b0h6oQPbfGIE4xohgl0Y4mAoYVk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/Aa03dYgwt7qXDvRS9RtNMVcWUVs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/80EHqpAzRKbMQ4HCU3EEnEvHBPQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dbnkqs9aNx2YTLR9DpXYmE0FFyS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1110, - "iso_639_1": "fr", - "file_path": "/7ZCaejc7eIYDebyY08vFJwzIe7p.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 750 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bTYy0U5TxbldVHeZQHYd0PF73TK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/rw9eSzOUk1qosJgAH6gKQb84Sov.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/awIfrUx4f2uEd3yiw805jknKvmP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/6jYQM7zldTF0q6Ky1XbIJCNsS2L.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/nO8wy6iJwnGp1b8bCOzozlqKAEM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/1uIenmj94ngtLKqMQMAE9pqwc1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/lMWTlGr9jVUC18T515hPRKym5QQ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/k0JJqFFQWOgFanSfSx6OJAYp7je.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1482, - "iso_639_1": "uk", - "file_path": "/mad0sMQEfpZU3NQWrkjalsNSRQV.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 988 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/w9uVaOBZyX1Vgfu4AYpcMnSQ3Eu.jpg", - "vote_average": 5.276, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3Ng6tqu3aaP00uh803vNN3iRXiE.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aGsHwAQ2exOIIzZr3ANoeepGMM1.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/xfeHFxr32PVA1BFvDOlfeCJ7Jyt.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/728MzWl0SwEBKSxNyW5rVXEpHD9.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/xR0Xj9ce3QbAd3PDDDlE81ZHW3w.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1398 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wIOZhUPVIrfxxK10YUqeubSbPbK.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.673, - "height": 1929, - "iso_639_1": "en", - "file_path": "/4yPB7TDVvSgjzDP1QreAdOwH81V.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1299 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/bNDSuUdWiFDChSNtbMymXVxCMVI.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yoFvr2fxVxJSWdF9RIN8QYdiEl6.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/qtJW2MgmCnJgfkD10QMIlf6tsD0.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/47AfUiBRMR0eQMPGAZfirsxXrsR.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1844, - "iso_639_1": "en", - "file_path": "/fVw7yBExxJvyDZ4ruhVKFeXzDbg.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1229 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/iacLPcp2o2pClRToPjNAZjGhxAK.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/muOoZzPs09pX9TQHfl9bJx93jY6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tNQDtaSBlX0kzPGoVTP6dswST9i.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/qIV59mpKFhpzgdZYZTrfQTxuKPp.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1976 - }, - { - "aspect_ratio": 0.674, - "height": 1200, - "iso_639_1": "es", - "file_path": "/A2IVuduRZU2UlKZ7PdmzmpPrglu.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 809 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fwYgZFx9hNIYq9snLvuaTdRQurE.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/aCLsuJfYnhJIEcwu2a9yWCsYBvq.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/55wSBtFxwMeIWDnMsWoNWEUYRek.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/mHkwuAI2l9pm2ZCxfItX0RZ9jn8.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/6QjzzhuLN33OqaOeVkabNAYV04S.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "en", - "file_path": "/zFrbXbbiHX44wmlfC0bhNh8g4NL.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1066 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/s05UTPk0GQjtGB3oKqdvVXSomXv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/irEj7TqWZXNGg0lCI5DFonEb9Qm.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/8637E90iSwkJG0cgUjvaBhmNkCf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/95CG73ZCH3ABoQwyf5dEj0SyQMb.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/i3KQdtGjzsLMsEnIxXyD9Ga7D8r.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lXNYybbiViO9lavi2UpwdrTpvsN.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/cfx6zK3qGz7baIhzZFUxAM2DDwr.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 2880, - "iso_639_1": "en", - "file_path": "/cgcGpnMJZZwaHwhbxaIlw4OOViI.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1944 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/lG1h8H9T2xYXX3OLDq3YXC65yJc.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1398 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/93riFkqGZ09JLA7giEC6HBkr1r.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 2880, - "iso_639_1": "en", - "file_path": "/ruo63D0YKh50arLQjxTYFLVrj7v.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/gFH4YYRIXxU7B0SMHp71X6LwkqC.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 2970, - "iso_639_1": "en", - "file_path": "/iNGvxGz4e1HUimSI3kNK7d010wT.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1980 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/q6UjThd6wJqmWNXLeOfPslg3IZo.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/d2twzknD9bU1XfuHHDEapHxLkgI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/7fNjczb3059gNOzyoeYAWoDmYPr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/898C00xZBitlJllqTrK8b1JP15d.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/oBzlEoi4Km5ih0dAZV1hcv7dI9z.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/odhjoOFo9VpGSJCulyJYBFJp7Zo.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/6WXetBxvY3D7kz0XnwTvu0F2TTY.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1400 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": null, - "file_path": "/NYXl9h9MTwotYvhokpJwxkoRDC.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/8BPldNn9crYPlGdXvh2Aj2L19jt.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/ffjc8XtPDdqUE4vkaJBWxy78iho.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1012 - }, - { - "aspect_ratio": 0.667, - "height": 2268, - "iso_639_1": "ko", - "file_path": "/p2l6hOlyx1ZP6jt9wagthliVg9h.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1512 - }, - { - "aspect_ratio": 0.667, - "height": 2560, - "iso_639_1": null, - "file_path": "/6NJyDmUZF54ieZDrJT2QVO4N3hg.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1708 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/89IS9AByAIlc9JGG6GIwrDHrwx0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/iSlW9OOuVBTwAx2jSb2NrpysgqG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/83v1ZGI0NTqfBSofIx5QoTLuCNA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/4byUZtVvB8VftUZG6lANc5BZw9X.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2999, - "iso_639_1": "en", - "file_path": "/jHE7WCoHAKM63svepz15JJ1Fkmz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/eelwCp1zv1OVaNFkg0vrDi5UM8D.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/codYRSiDbmZIFXfvynAKmABKre.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/qYZ22ZgNz9iKVR2DbF4Umnrb6mQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.764, - "height": 2048, - "iso_639_1": "en", - "file_path": "/325t8oFFaJcCN17Hpf1nKMk1qus.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1564 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zWdmJD6Y8JgO43mibvcfG37X0X4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/51yTUvUjpRVW57cKAksQvqYm4Nc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/oqJrXxxn0i5FgQfbqRtCKtA2lD7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/pZrwlQYTUVsL2e5qJobRb68kyv3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1772, - "iso_639_1": "ko", - "file_path": "/xUzXHw6MbtrdA7cb8n3tMPpN14Q.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1181 - }, - { - "aspect_ratio": 0.659, - "height": 1425, - "iso_639_1": "zh", - "file_path": "/9UnuKjZzOQJfdpv2yaA4Ax8ccKD.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 939 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/1Jww51q6f7GYIvt8XgtHKrrREnX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1072, - "iso_639_1": "en", - "file_path": "/zfZuSNGKxIlWQKi4xlIhFoRrlnj.jpg", - "vote_average": 5.22, - "vote_count": 13, - "width": 715 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3if5KqGat6tpKP0VzQVmpFGvq6J.jpg", - "vote_average": 5.212, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1482, - "iso_639_1": "uk", - "file_path": "/glyglsYVYqOYLQULKJBksEWsAiY.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 988 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "de", - "file_path": "/jKM36CaXU4W57jGichRkpc6S5P3.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1066 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "zh", - "file_path": "/cyK6liTOcHO4FMGdp0tAtCe1ART.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wJCApZLMra8rjCpqofDRv8lo7ug.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/4vPRTFpBTWTpieKIdcrAL3HZBHy.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1398 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/qGxp2cX4OvJmNKYTOKpYvAEzQwi.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1496, - "iso_639_1": "zh", - "file_path": "/zjxqDJDvsFhgTzZJbcf5R3D9kfJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 997 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/sU3wMXqELhvkRdpDaCYxE7RUpif.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/7NnNxaMQeD72po0n3DwyGL4WpBJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/dDnqFMJJbvI6bDoQhlD3xqPPgLX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 2826, - "iso_639_1": null, - "file_path": "/q6Tci6GdrKTpmoLWa79wodoQxBX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.706, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/sowaQ4N9iM3cssWSUQPp5C6rk3b.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 762 - }, - { - "aspect_ratio": 0.675, - "height": 919, - "iso_639_1": "nl", - "file_path": "/bEGHoicVZmJxF3Zh0O7463rwNSo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 620 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bWsvsKwvX7RazmVgqmXgGnAipXn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 899, - "iso_639_1": "zh", - "file_path": "/mLph4bC3QI3QpX6Tf51UnrTrtb6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.672, - "height": 1141, - "iso_639_1": "nl", - "file_path": "/gFcenFpEnpM5mBEbUA0NQkbpE64.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 767 - }, - { - "aspect_ratio": 0.707, - "height": 842, - "iso_639_1": "no", - "file_path": "/x4L7ZdO93EnPPs1FSO2efjqQ873.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 595 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "km", - "file_path": "/ymp9hnHWN7B6waWgXSpZul3X8nS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1998 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "he", - "file_path": "/ardsNB9jf9EVzfe04D336cFeUQP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/s0z3dkBhau6Q3bUpBW5HPSk05zM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/cS161s0VRRte1kDEsR5k9PeHJCD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/sBYSQZrIhLjHHBKsGcpYev3Dtju.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bMkbkv8IWUrP7BcM8RLPBSpxhB4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/2XBsfWy005VAgFKiuMCJGRzFETG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/egEI5fiqBwNu5u5hrzdeSNO95E9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/2xg38EeyRPtsu8WfTdeeMCkOiTE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/eU6xAZrOhUqpud0C97qwGz9KHRd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gstNh4Ydj5lD8ZKL4jpUoJcQokO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "zh", - "file_path": "/7xRyr4Vn0ChOFbRCW1BbxNAZPoV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/y5wv2qepwx2jLfED8fHdFfZHUPj.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.705, - "height": 1999, - "iso_639_1": "zh", - "file_path": "/pb1a0wz3fMQ3P9aeherRLUbX2d.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1409 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/rtVKvilIV8NP8xhkmqoYJW8dpvr.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1976 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/tV7w6dRxMEQJCzjpjgWeYHGFpZ5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/u1YliMkVurvKlYsb2arjuIfE0vD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/fEFYnjkM0js92ye5kENK0Hi9djH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/vyW3PaWfZIqf4MnkGpL25DK3gik.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "zh", - "file_path": "/6lbnRMuWL2Ie8oOfEpJvuruWaCP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "pt", - "file_path": "/14ylZj75Gm4oIli6zNMsezhN4iR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/8ycplQbTU6DRRwiG95lQEpYkOVg.jpg", - "vote_average": 5.156, - "vote_count": 12, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/lirsdOyw3mvFPxZPhgtkWqqnEAl.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/65EC4qPXmauerYexU5SyZv9umVo.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/1NbejLjKtrRNNU6BuGuf7ZW5wWN.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/uRm4DQIJeAfD4q5euULWFpHPG2D.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/rh1ag4GHIZ3uGQG4jMwjSrdB6s1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/84dTBxyos4W076ar8pKjuFMfSdf.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "de", - "file_path": "/9XTvZpKoKPUs7vcRhpxnfXIgPWO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1923, - "iso_639_1": "zh", - "file_path": "/rGBGgpHmLCI1kEt8TxNK963GdZs.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1282 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/texVmZyotIxfWM32IicF2hcDUSm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/jtBcL0dGXa6FvXIrWPvAJxUnpuu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/PpQGTBQYq9M30XBfucDNCyfzKK.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/f9DCF2jyqhSnkLjCzgh7AZdcpFN.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aeLYAvrnZ1auOdMiEqcTTo00Zzc.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/8vFQvUFFOeBOTNcOfRQIJ5nYvkX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/zrlFO5MzqLX4YmiBR9HJLrHO3ZB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/paM6UdMgXuXyAK0jhGfV07o3lRW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.708, - "height": 2826, - "iso_639_1": "km", - "file_path": "/jjtzIapiuy7QT1Amq2ZWxNb9Rpx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/juhJLWEouqx1QtqjHXpBKx7wgmH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1365, - "iso_639_1": null, - "file_path": "/xYin6wWC1aCy18MdidTl4hlfZZS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 910 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "pl", - "file_path": "/onMsfEwmb37kDQgykmFeatwUr3i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.707, - "height": 2362, - "iso_639_1": "sk", - "file_path": "/qq5mlnyHQV4hC0t6aDVKXjWnmLb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1669 - }, - { - "aspect_ratio": 0.708, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/9Nmci69EsgPQiUfNdSh5IGkZJtU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 765 - }, - { - "aspect_ratio": 0.714, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/k4AXRLxuJ5FbZ2U9VvmhTvYwjv4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 771 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/nlYddRqjr2UgpOLXhBcmAv3xFLm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/tNwj3sIILIgbcolEs5zV6SzIAG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/pgDWrhaz0rSsD43ocNDX3PRIKJ3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 2384, - "iso_639_1": "cs", - "file_path": "/ryRcoi4y40iYsjvsrCqTBxk06kG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1589 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/9x1tlCheApwZIZySKldek67nyA1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/caTR7PNKGv02TeRJO3O1d5FbxPv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.716, - "height": 2457, - "iso_639_1": "sv", - "file_path": "/u7aegL0DB8OMIeMfYTbEsDMTM7o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1758 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/5J6IHrKuomrw4ESUK9bHXD3l1J4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/wHbv4Y6MLGJniqrVvNcKglCowLW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/o3UtDlPOg6t0Ik7ytZDVNMKkscS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/70khg8IUJdcvHlcfOZERRRQMU4l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/q0ZMb3CoVzUIZ4bGEzylZMGvJAS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/82YCxFMAWidRZmWdZFjhdH8Ux0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/9HAnTvU9U0iF3EbFX57E2hRnwFn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/h32e9xl52sUDwPfs7r7fV6ZS3T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": null, - "file_path": "/5VWNolpnCIHUp1nOiLmW8ea6JEj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2167, - "iso_639_1": "bg", - "file_path": "/jhksPDHovDHzLnsQOsE1A88aCJo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1444 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mZ62eI1zN17lrrGExVFhj05k7lb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3FQP0woW0IbhGav6uLSusCWlwf3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/f8GttMWcnOSnf6d7hZRZIomW4oS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mVxwRQnnOaFUwxcXu0vDrTfnQkR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vVfwqwksGIdpb4BEk0qtYhYTqNS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zhD9GinPCee99e1G3KoXLCrshGb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/btlt7BaJiDE3nqI6eP4iIQxympi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/xlz914CkZK2M15y3tGfhfXwI0nY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eNgGpVnbdtEWfNWmkUuWgAp9oWC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/pu9oXURIcgTsdmeVzoQQvQsqmsO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/qd1NQQssFALTTtYWLOzr7Wj5Mtl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/doDPSEmgI8keQ3di4eZAKFqDtag.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ba9f6apdtbLzjtN1jcXJP2rnwsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/kHG67VXLjCGgCJ2Y0aM9C34qLEt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yq0PnTtlwV0ZcV7NkjpKwbSIMRu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9YBaLLmqG7En4PDmtKaBIGBQHo9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/drqQKyTEMkFEUyptjRc0eoHEo0q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zy2kuYG7RLrJsoZEjer9dvi5W39.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/n261aL2qjyQUsszRykEBlEFQzm9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2480, - "iso_639_1": "sv", - "file_path": "/3MkXHuCblFTNabfn6QcInsCquZF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1653 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/taRJjNDBq6dXijw9LVFVlEXQnBM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/kXcP4aHE0st8QdJtuUCzt4iwiiM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.676, - "height": 2048, - "iso_639_1": "km", - "file_path": "/vrykmql39ge8TGFf6BGIjawR6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1385 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/boQuMHfOqfXeGezqsOQB7cwHEep.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/rBd2STdeKUt90ns9KrYAeVLyKwG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/bhb6xzElFAGSAyMTy9A2RNL6F6e.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/gJKlAISKtSCBBE0yC1103Yi0t4n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/zX1uzbVozBzwSQpxpFbCcHrAY5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/t3S4J0IjkzKALF0Ak8hyG6oqt4y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/ysMlT8GWx0Bodqw14jsc6ncZokw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/xj2JZTnqDM0aMwhRCtuABl6wMpJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/rlBbqfvN8bX4cNziVfdJtYYXRFk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "km", - "file_path": "/ll846vSX3clh37Zzr9plKz622vr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 800, - "iso_639_1": "hr", - "file_path": "/hTFdZpsAJef47GPFiATVNCkN03c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 534 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/waszQkcj44R4dK0pDt2RD5WQ3l2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": null, - "file_path": "/A457p6J5EBUs5qCeV2W1KmYKpG0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/A23wPJTx0QlBRlBUCYDXzBG1hcb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.659, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/4wDSW7ty2TzqXEcYzSS9qnSziAO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 712 - }, - { - "aspect_ratio": 0.672, - "height": 1800, - "iso_639_1": "ca", - "file_path": "/rjXar7KpyzuoMaI7ooNux0uIIG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1210 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": "el", - "file_path": "/kvChDd2f8Vevt6KF8MIGStp0kKK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "no", - "file_path": "/2NPWZR1b5Wcn2ipFtgGDqhgvQ2W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hUmggcjvl3Nd2Jv5oBNQMBpU6Z1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2819, - "iso_639_1": "en", - "file_path": "/gmJ36yEVQbXUdrPCAhCK8p1fhqy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1879 - }, - { - "aspect_ratio": 0.667, - "height": 2096, - "iso_639_1": "en", - "file_path": "/9WYsOYcMOvqIWpR9NQ2bvo6IvEE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1398 - }, - { - "aspect_ratio": 0.745, - "height": 2048, - "iso_639_1": "en", - "file_path": "/6sRrwCjbA262VU3Veu0puXDeFoZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1525 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/waMZb8PHhEw8q5YO9SNnzxSfx87.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 2797, - "iso_639_1": "fa", - "file_path": "/tnJHUwNIDEUZyGT8iEgxxa2nEwG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 1205, - "iso_639_1": "en", - "file_path": "/pX3pJIiosc8gmDUfrEU1Hg9supl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 861 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "lv", - "file_path": "/ahuJDqdYXlveblbP0DXJQBq0wPm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "en", - "file_path": "/xACIyVOQALfCQXBMJTQgZuUremS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/qtFbqb8vcjWrZiT2OqyFRR4Wuvs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.684, - "height": 960, - "iso_639_1": "en", - "file_path": "/zFbpOExnxGzz5gHyUNWbShhQ82c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 657 - }, - { - "aspect_ratio": 0.666, - "height": 1772, - "iso_639_1": "ko", - "file_path": "/fo3IreREwcwlTGuGavPmIrAxFAF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1181 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/x6L94ofj0pXnbnNhkoOUImvAZ7a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7qjmu1FLeuj6r0yolijyTBKcozt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6qOguAfzpXtw48kSntTtxH0RYnU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/3K5p7QRpNLuWE4QguYHsr9riCuq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2000, - "iso_639_1": "en", - "file_path": "/u6VTwxoXhyA37mISqJYIdbKuxG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1334 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "et", - "file_path": "/moYUpb8UPDZJWG6Vbcup0gViL6o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/z9yEqj5pkcZR8sNXAiGt48oV44f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/xxgHYTS38rvMqUBain8auWvnV6o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/g6VKMMNeOTDGEVIDdBOt1vPbY9s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gdzzS7nydb8UtCfFocNNPQAIx0n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/xGOZ2gh5esxdwS6MWKuWn2aJOkA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2964, - "iso_639_1": "hu", - "file_path": "/cI5WzCUNi0dfGpoo92cHyLDKgvT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1976 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/qTq9O8QV68qsJRapFbdeMQfioHt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/mAzf11qiOtxn5haJDzKs1akhwri.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/cXKREiWI8ASVNIjrjHUONpHl5xv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/7IK7IWTxFUk5vSB2ZbAk5hFacFU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/LoD001eJ6UvlOceVAfMPQvdBnO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/85bi3cOP2MWshzVYWObvrhXFoAQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/kzK9KCHv3UVF64mOHow3j8ewngu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.698, - "height": 1280, - "iso_639_1": "ko", - "file_path": "/1lD1SwdVI4vpGueCePBFpPbqZVd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 894 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A1pdh62Qe4N5iPPNoJbYYMcH91g.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mHNVixZUJ2lgc31ol2EEPXWtrzL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1949, - "iso_639_1": "en", - "file_path": "/3D784fmrUY6NDXzuGjeQnDl2KrD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 1067, - "iso_639_1": "th", - "file_path": "/gNyeKtQ0pQBThQ4U0CFyKM71lxx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iYT58SI2yA1zL8tp4ruMELdbGaR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "pt", - "file_path": "/xUa211ON8qlOuSd2XN43veAF8Jk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/v8wvlS2ixdkevfY5IsLCPxXthbG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": null, - "file_path": "/9tNKpbPF4gkofmnmhqwTVweGkWv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/fM1o5gSBDpl8VojFMyv1U4UurC5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/iW2NBmhuITs7Eu7rDk9paPWH7o3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/5I69a71GEvXLgdjX3HI5EJUGBRl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/1Q2pRBGHfuDP3HWSdNjimucFHTS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/kmTswQtSSmh9Hioi9nIIwUJxswW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/qX271wZWTUExTn0LYd1mb0h88Xx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/dUQFlaeRgKT0o25CF6KiXOdbZJp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/nfLoDnIiD3YxkR7MZC3YBWgjzGU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "lo", - "file_path": "/kvhXuTW4f4PkPzpQCuX4YUjnz7p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/18U8mAPP6XDNbjy6LzXlQGT1rSw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5Jo6OYPd29wCAmJ9lkfaO2XGtQz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/txmR0kPzMbHcMNr8IT4kbnZcORU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1964, - "iso_639_1": "en", - "file_path": "/hNejJyZACKt1u2ihn5JR3SDLQy3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1309 - }, - { - "aspect_ratio": 0.7, - "height": 900, - "iso_639_1": "it", - "file_path": "/XUN2lS6F7hP5Bn4HMv4w3OBzqK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 630 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/kE2B70YZO1r7NjTRWNVw7duGGLX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/pUjvB9FsEu9uZtRIXtKFYBnc4GY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/lUn9D69JlgjXniVwEDMF4gdDz14.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.659, - "height": 1442, - "iso_639_1": "en", - "file_path": "/aeQDvry3bpBNaNsyAWgkUF5T6s8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9fcdbV3BUFx99nlmWEARS1eztE3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/sUy6Vj5HcMTNVj7LZFU4bcSCWcx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1125, - "iso_639_1": "en", - "file_path": "/c45YtSOh3rZFRBqF2Um8HKLOtdf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 750 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/jMQoR5ZInTq5pN5EWODwdfbzKuU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kFRXzPKyc6AEef8vvmqWUC6qLtX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/5zS61EvoS9oaKxWT8WWPB77VLZX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/sweCid4MDphVYUEyoBNGSPChW9O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ljq4sekjWw6IaekHrvbV2dfLg3H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/rTaAEHwef94aJsKDwFN5popouLI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4DbWwbV921V0X14vgpNo0F7l4wX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dvaJQmfm6zFWMpILcMUGhICPtrQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1jWd2C1WzqIeVORhU2uVIA63nfS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rjmQiVfqtHplqQFxTelwZZEGVOY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/roGCY0T7vRWdrAbxc2wGBP820IF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rcaCuxV3prAJstmzub93E7HzQeF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/s10Ub1XMBqjYMz0t2gqaGoPuFLN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gjYFipZY9JoBnWeFCC67mKxFwOd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rC0UawMQfROTO7Ixrgfyl3cJu4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/AtHBXFOI2fownZ25SlXNJQn6Aoq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/1W3iojWhi3b8RxYMUFzNbK2qnaF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "fr", - "file_path": "/ydaJsTyrRimSQ1dTf2xvrmJKz5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7QCz2dRxiDWTCXeQTuQmbbTLrPY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qj6ke9tGRTxGjXNqsmvPYtgv7L4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/1OpsUvuBY5D9kUOTNCbFrRejRo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/1xU1ExSrFKvFhaRvqNZWEb7wZU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1134, - "iso_639_1": null, - "file_path": "/7vLvTsaP2ay7uBKumwStSxZaWSS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "ar", - "file_path": "/xmZSu0hdbuwb4mJIrocpKfnVjbZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/oSmB6sn2CxOumnc5xO0xz6IglVM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/3oVJngN4DuHaMleNFLMGqLolLlA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 700 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gtngzBAmyHMCV2rMCqE2WHd0KDJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pxp9dNVt2xjVXtGMnRHraAh74M9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wgJLvp6a18iSoOVtb5ztuVKkRdW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9YVS38Acvsh8DvE60vmk62YTSnr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1188, - "iso_639_1": "en", - "file_path": "/4vtQtCsuG5TeTEz3bEBrXe49F5E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 792 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/2nSc26eIByawbJi3itrMzHmAkuy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2304, - "iso_639_1": "en", - "file_path": "/wrhAUbUeKDelGjDe8HNP48BFiuN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1536 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lpNNGYfOwkDFY3Law6sfetfEV7f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/606403.json b/examples/view-transitions/src/content/movies/606403.json deleted file mode 100644 index 6d2d1a2f5dcd..000000000000 --- a/examples/view-transitions/src/content/movies/606403.json +++ /dev/null @@ -1,1141 +0,0 @@ -{ - "id": 606403, - "data": { - "adult": false, - "backdrop_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 80, "name": "Crime" } - ], - "homepage": "", - "id": 606403, - "imdb_id": "tt16529222", - "original_language": "ko", - "original_title": "특송", - "overview": "Eun-ha, who is a normal junkyard employee, secretly works as a delivery clerk that deals with unusual delivery requests. One day, Eun-ha heads to Seoul to pick up a client who is involved in a gambling crime that wants to flee overseas. However, Eun-ha meets the client's young son at the pick-up point, instead of the client himself. Kyeong-pil, a current police officer who is actually masterminding the whole gambling crime, chases after the missing child who has the security key to the bank account that holds 30 million dollars.", - "popularity": 525.582, - "poster_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "production_companies": [ - { - "id": 20064, - "logo_path": "/2In7Heq6DuXDjOwPmJqHWkpohaL.png", - "name": "Next Entertainment World", - "origin_country": "KR" - }, - { "id": 120829, "logo_path": null, "name": "M Pictures", "origin_country": "KR" } - ], - "production_countries": [{ "iso_3166_1": "KR", "name": "South Korea" }], - "release_date": "2022-01-12", - "revenue": 0, - "runtime": 109, - "spoken_languages": [{ "english_name": "Korean", "iso_639_1": "ko", "name": "한국어/조선말" }], - "status": "Released", - "tagline": "Deliver anything you want.", - "title": "Special Delivery", - "video": false, - "vote_average": 6.9, - "vote_count": 105, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 1442583, - "known_for_department": "Acting", - "name": "Park So-dam", - "original_name": "Park So-dam", - "popularity": 12.261, - "profile_path": "/gaDnEiMD5PClT9ARg1bSFyexbor.jpg", - "cast_id": 2, - "character": "Jang Eun-ha", - "credit_id": "5cf3d4430e0a2624ddcb3214", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 1347175, - "known_for_department": "Acting", - "name": "Kim Eui-sung", - "original_name": "Kim Eui-sung", - "popularity": 4.406, - "profile_path": "/y7T2LJyorTK2NDk10yeTINWKrWR.jpg", - "cast_id": 3, - "character": "CEO Baek", - "credit_id": "5cf3d44ac3a368735b25d491", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1299516, - "known_for_department": "Acting", - "name": "Song Sae-byuk", - "original_name": "Song Sae-byuk", - "popularity": 4.935, - "profile_path": "/1xi4n5pkh5e2v3dtavPMT0sa55x.jpg", - "cast_id": 4, - "character": "Cho Gyeong-pil", - "credit_id": "5cf5cfdf0e0a2619d3cfbcc8", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 2084416, - "known_for_department": "Acting", - "name": "Yeom Hye-ran", - "original_name": "Yeom Hye-ran", - "popularity": 14.976, - "profile_path": "/xZxVHnbDdNxF6J8UhwBTkJGNKWx.jpg", - "cast_id": 7, - "character": "Han Mi-Young", - "credit_id": "5d2e7467caab6d16409af4a1", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 2306987, - "known_for_department": "Acting", - "name": "Jung Hyeon-jun", - "original_name": "Jung Hyeon-jun", - "popularity": 8.863, - "profile_path": "/vZadA6ip6V2kh0VZW9RwnLcYFgW.jpg", - "cast_id": 5, - "character": "Kim Seo-won", - "credit_id": "5cf5cfe70e0a26169fcbfb13", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 1346848, - "known_for_department": "Acting", - "name": "Yeon Woo-jin", - "original_name": "Yeon Woo-jin", - "popularity": 5.591, - "profile_path": "/oGOpjHfwifYd3hVohVFbxmA7Aoe.jpg", - "cast_id": 6, - "character": "Doo-sik", - "credit_id": "5d2e745827d9cc00137c0477", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 1332468, - "known_for_department": "Acting", - "name": "Heo Dong-won", - "original_name": "Heo Dong-won", - "popularity": 9.069, - "profile_path": "/2ozJdoP76fZvlLo1MhqPunoy6CW.jpg", - "cast_id": 8, - "character": "Sang-hoon", - "credit_id": "5d2e746f6a300b58c5a2621f", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1970653, - "known_for_department": "Acting", - "name": "Han Hyun-min", - "original_name": "Han Hyun-min", - "popularity": 4.376, - "profile_path": "/ro36V17oO6fHfUUbXRRQQWdJO4l.jpg", - "cast_id": 26, - "character": "Aasif", - "credit_id": "6207e221fab3fa00492aaf3a", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 1199744, - "known_for_department": "Acting", - "name": "Jun Suk-ho", - "original_name": "Jun Suk-ho", - "popularity": 5.482, - "profile_path": "/xMUCuermXrjVNOWDV3gIfpP5yhF.jpg", - "cast_id": 27, - "character": "Man", - "credit_id": "6207e240fab3fa00e7d2be24", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 141857, - "known_for_department": "Acting", - "name": "Choi Deok-moon", - "original_name": "Choi Deok-moon", - "popularity": 5.832, - "profile_path": "/2yNTH3Dm1tmN795ExtNsIE1IaNA.jpg", - "cast_id": 28, - "character": "Lim Gi-bang", - "credit_id": "6207e250848eb90067fc6748", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 110382, - "known_for_department": "Acting", - "name": "Yoo Seung-ho", - "original_name": "Yoo Seung-ho", - "popularity": 10.319, - "profile_path": "/cDkIwmfjChprlO7qaoDQl1Em54P.jpg", - "cast_id": 29, - "character": "Last Man", - "credit_id": "6207e25e1d78f200421f4517", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 509648, - "known_for_department": "Acting", - "name": "Jo Hee-bong", - "original_name": "Jo Hee-bong", - "popularity": 8.6, - "profile_path": "/3Fj9bijDL3A93o7XLM1sGYRcAIf.jpg", - "cast_id": 30, - "character": "Kim", - "credit_id": "6207e27f945d36008a823766", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 3930979, - "known_for_department": "Acting", - "name": "Baek Do-kyeom", - "original_name": "Baek Do-kyeom", - "popularity": 0.608, - "profile_path": "/2v6ry8opDW2z5Iz2Hz3GIB5H0x4.jpg", - "cast_id": 43, - "character": "Young-gil", - "credit_id": "63f36cf7a24c5000c0ba03bc", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 3275193, - "known_for_department": "Acting", - "name": "Han Kyu-won", - "original_name": "Han Kyu-won", - "popularity": 1.1, - "profile_path": "/86QTcqMSH75zqh6T6jL4F0uXAlQ.jpg", - "cast_id": 45, - "character": "Lee Do-young", - "credit_id": "64886e6f99259c011c41e7ac", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 3851351, - "known_for_department": "Acting", - "name": "Kang Joon-kyu", - "original_name": "Kang Joon-kyu", - "popularity": 0.6, - "profile_path": "/6Qeh0pBA5pxooxJ9tQHwTlQEPze.jpg", - "cast_id": 46, - "character": "Motel Part-timer", - "credit_id": "64c7c3e595ce24013b9c9755", - "order": 14 - } - ], - "crew": [ - { - "adult": false, - "gender": 1, - "id": 43570, - "known_for_department": "Costume & Make-Up", - "name": "Cho Sang-kyung", - "original_name": "Cho Sang-kyung", - "popularity": 2.483, - "profile_path": "/aTd5Tq5P6a41Q4kYRn9yxuj8xy8.jpg", - "credit_id": "6207df9338e51011efd525ec", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 64337, - "known_for_department": "Production", - "name": "Kim Woo-taek", - "original_name": "Kim Woo-taek", - "popularity": 2.225, - "profile_path": null, - "credit_id": "6207db36efd3c200bb939f64", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 69388, - "known_for_department": "Editing", - "name": "Kim Sun-min", - "original_name": "Kim Sun-min", - "popularity": 1.052, - "profile_path": "/7ILTSodPDZTcHtbMdVcJNiOQNgY.jpg", - "credit_id": "6207dd3c93388b00df0f2ba2", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 141167, - "known_for_department": "Lighting", - "name": "Kim Jae-keun", - "original_name": "Kim Jae-keun", - "popularity": 1.027, - "profile_path": null, - "credit_id": "6207dbfbcba36f01098aeded", - "department": "Lighting", - "job": "Lighting Director" - }, - { - "adult": false, - "gender": 2, - "id": 1023610, - "known_for_department": "Directing", - "name": "Park Dae-min", - "original_name": "Park Dae-min", - "popularity": 1.573, - "profile_path": null, - "credit_id": "5cf3d43bc3a36839e41fe6dd", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1023610, - "known_for_department": "Directing", - "name": "Park Dae-min", - "original_name": "Park Dae-min", - "popularity": 1.573, - "profile_path": null, - "credit_id": "5d2e74826a300b5922a331bc", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1294102, - "known_for_department": "Sound", - "name": "Han Myung-hwan", - "original_name": "Han Myung-hwan", - "popularity": 1.019, - "profile_path": null, - "credit_id": "6207dfe21d78f200421f41c3", - "department": "Sound", - "job": "Sound Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1299209, - "known_for_department": "Sound", - "name": "Hwang Sang-jun", - "original_name": "Hwang Sang-jun", - "popularity": 2.474, - "profile_path": null, - "credit_id": "6207dd5301432500b6c4f063", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1314075, - "known_for_department": "Camera", - "name": "Hong Jae-sik", - "original_name": "Hong Jae-sik", - "popularity": 1.96, - "profile_path": null, - "credit_id": "6207db49014325008d218e69", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2197563, - "known_for_department": "Visual Effects", - "name": "Hong Jang-pyo", - "original_name": "Hong Jang-pyo", - "popularity": 0.732, - "profile_path": null, - "credit_id": "621068c04f9a99006c237db0", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2310648, - "known_for_department": "Costume & Make-Up", - "name": "Jang Yoon-jung", - "original_name": "Jang Yoon-jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6207dfb2fab3fa00b2e7b962", - "department": "Costume & Make-Up", - "job": "Makeup & Hair" - }, - { - "adult": false, - "gender": 0, - "id": 2310885, - "known_for_department": "Editing", - "name": "Hwang Eun-ju", - "original_name": "Hwang Eun-ju", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61e40ebc904f6d008ea71062", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2363450, - "known_for_department": "Production", - "name": "Kim Bong-seo", - "original_name": "Kim Bong-seo", - "popularity": 1.31, - "profile_path": null, - "credit_id": "5d2e74a2caab6d0b2998c60d", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2363450, - "known_for_department": "Production", - "name": "Kim Bong-seo", - "original_name": "Kim Bong-seo", - "popularity": 1.31, - "profile_path": null, - "credit_id": "6207db14e640d600b44b0089", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2363452, - "known_for_department": "Production", - "name": "Ju Seung-hwan", - "original_name": "Ju Seung-hwan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5d2e759a6a300b58c5a26638", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2388372, - "known_for_department": "Art", - "name": "Lee Tae-hoon", - "original_name": "Lee Tae-hoon", - "popularity": 0.828, - "profile_path": null, - "credit_id": "6207dd699408ec512adf08a2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 2395041, - "known_for_department": "Art", - "name": "Choi Hong-seob", - "original_name": "Choi Hong-seob", - "popularity": 0.98, - "profile_path": null, - "credit_id": "629ba216a284eb005097e5a9", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 2499559, - "known_for_department": "Editing", - "name": "Park Jin-ho", - "original_name": "Park Jin-ho", - "popularity": 2.084, - "profile_path": null, - "credit_id": "62753f53d64ac20052808337", - "department": "Editing", - "job": "Digital Intermediate" - }, - { - "adult": false, - "gender": 0, - "id": 2500112, - "known_for_department": "Camera", - "name": "Woo Geum-ho", - "original_name": "Woo Geum-ho", - "popularity": 0.917, - "profile_path": null, - "credit_id": "634977b41b1f3c0079e6ed4d", - "department": "Camera", - "job": "Camera Car" - }, - { - "adult": false, - "gender": 0, - "id": 2868495, - "known_for_department": "Art", - "name": "Jeong In-cheol", - "original_name": "Jeong In-cheol", - "popularity": 0.6, - "profile_path": null, - "credit_id": "629ba59bd71fb474e0e12c55", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3031815, - "known_for_department": "Crew", - "name": "Choi Seong-kyum", - "original_name": "Choi Seong-kyum", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6274f635a313b82f7311eee9", - "department": "Crew", - "job": "Martial Arts Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3118286, - "known_for_department": "Directing", - "name": "Park Dong-hee", - "original_name": "Park Dong-hee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "622f106e98f1f100459e91a3", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 3174584, - "known_for_department": "Crew", - "name": "Choi Dong-hun", - "original_name": "Choi Dong-hun", - "popularity": 1.094, - "profile_path": null, - "credit_id": "6307809ea27502007eee2192", - "department": "Crew", - "job": "Martial Arts Choreographer" - }, - { - "adult": false, - "gender": 0, - "id": 3200807, - "known_for_department": "Visual Effects", - "name": "Park Ui-dong", - "original_name": "Park Ui-dong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62522ef4a055ef009ddb8a45", - "department": "Visual Effects", - "job": "Visual Effects" - }, - { - "adult": false, - "gender": 0, - "id": 3384921, - "known_for_department": "Production", - "name": "Kim Sung-hoon", - "original_name": "Kim Sung-hoon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61e40a9bfdc4fa009c69e271", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3423411, - "known_for_department": "Art", - "name": "Jang Seok-ho", - "original_name": "Jang Seok-ho", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6207dd9ed7fbda001c47b9b8", - "department": "Art", - "job": "Props" - }, - { - "adult": false, - "gender": 0, - "id": 3423427, - "known_for_department": "Sound", - "name": "Ahn Sung-il", - "original_name": "Ahn Sung-il", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6207e02c848eb9009cf19015", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 3676269, - "known_for_department": "Art", - "name": "Lee Jin-hyung", - "original_name": "Lee Jin-hyung", - "popularity": 0.694, - "profile_path": null, - "credit_id": "63078050a2750200923bf1d8", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 3697990, - "known_for_department": "Visual Effects", - "name": "Bae Sang-min", - "original_name": "Bae Sang-min", - "popularity": 1.259, - "profile_path": null, - "credit_id": "631f392e0bb076007b79c6ec", - "department": "Visual Effects", - "job": "Matte Painter" - }, - { - "adult": false, - "gender": 0, - "id": 3891529, - "known_for_department": "Crew", - "name": "Kim Tae-kang", - "original_name": "Kim Tae-kang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63d282499f51af00dc260dbd", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4086574, - "known_for_department": "Crew", - "name": "Suh Jeong-woo", - "original_name": "Suh Jeong-woo", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64746d8fbe2d4900dcdb8ed0", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 4224511, - "known_for_department": "Crew", - "name": "Lim Hyo-woo", - "original_name": "Lim Hyo-woo", - "popularity": 0.841, - "profile_path": null, - "credit_id": "64e1e582b77d4b1141fa5571", - "department": "Crew", - "job": "Stunts" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "UK Trailer", - "key": "RIuWQPIaDFw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-07-12T10:25:20.000Z", - "id": "62cd701e4a4bfc0055ed56c9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "[특송] Global Teaser Trailer (Special Delivery)", - "key": "AhVm_0U-Tqc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": false, - "published_at": "2021-12-07T08:52:59.000Z", - "id": "61bd9018d2f5b5001ca89188" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2048 - }, - { - "aspect_ratio": 1.777, - "height": 721, - "iso_639_1": null, - "file_path": "/xHVYpeGQgswANURYadqVxz2jsWx.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1281 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/6LmRTynUhi2oE8UyYshJDjYXlW6.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pAISUx3tmaAg5x4n5pLPAgEdhp6.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 721, - "iso_639_1": null, - "file_path": "/rPeNbfYHwAqWZsTxM2jy4i6JS15.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1281 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/vJtxYjFJGAeZQqcG3I4ZwC8oz8l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "ru", - "file_path": "/nhpPQxA7rBwsd3hFCIjAJzms15k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 5.282, - "height": 284, - "iso_639_1": "ru", - "file_path": "/i2DXMSCPoAY49CLWug8lK2on1YC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 6.032, - "height": 93, - "iso_639_1": "en", - "file_path": "/hpInxOPnUtVcQzgEtumohZVEaFh.png", - "vote_average": 0, - "vote_count": 0, - "width": 561 - }, - { - "aspect_ratio": 2.195, - "height": 292, - "iso_639_1": "ko", - "file_path": "/eUB18TPBsTRFQRVRd3QbzSjsyYt.png", - "vote_average": 0, - "vote_count": 0, - "width": 641 - }, - { - "aspect_ratio": 4.489, - "height": 401, - "iso_639_1": "en", - "file_path": "/eX766qB8E06BfnrDXwh742vMqPG.png", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 5.377, - "height": 106, - "iso_639_1": "ru", - "file_path": "/zKS3KZ7mBqV7wJzMNYb74qk7p5s.png", - "vote_average": 0, - "vote_count": 0, - "width": 570 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/hDQndBAnyk1MCwszODgb5BgM6go.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1429, - "iso_639_1": "ko", - "file_path": "/2mTwoa29q3xFmPZCDyRmDNufnfh.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 953 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6v1N2SBhaF8lTBgsjfTAgVmS5q9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iFUBAfMDlFOck29BEwS1awH5TB3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9onQupQsxZQ4zgQzvRCAZJhobHu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/7Pg2LW6qCNSp1AHybsN6dUsB0F2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1029, - "iso_639_1": "ko", - "file_path": "/3BUTPMxMIQjRLSUQWGlh3HBBvz0.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 686 - }, - { - "aspect_ratio": 0.667, - "height": 1995, - "iso_639_1": "ko", - "file_path": "/zxxSYbgEyJgmqoNMonWUuyQNT8c.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1330 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/bVNeIjCbOszfmF1C55veZau8Pe2.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/2LNHaoGjrRj4CoaUW2Jl4ycxS4p.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/9Km5vHWS8FuuI41UJ2DLozxOhVD.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/bUsA8GqPd3GBWmkFXW0hc2R4zl4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/3KyXXqJCNcnZzqXyAFgvcCcwGmE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.708, - "height": 2161, - "iso_639_1": "sl", - "file_path": "/euxUqXKf1tzBqitTzXpLljgra47.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1529 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/jpvDX4pDX5smklDLYbRBBzbcLb1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/ocuUuZi9wtPlyTssnOCmBI6uzmG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "vi", - "file_path": "/f0RdBn6zb95ssK7qF5xqG1SgFFP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/3V8ZzlJpUpoW0MNh6V7t5VXynC8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "cn", - "file_path": "/vL5XxOnVEViHD7sWmYAOMqVFy50.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.75, - "height": 1600, - "iso_639_1": "en", - "file_path": "/5mZABR2jWQ8ONZAV85EXSw1CDLg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/zDV9d15Ma94Z6aH5CJqtaS76JSx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1175 - }, - { - "aspect_ratio": 0.702, - "height": 1026, - "iso_639_1": "th", - "file_path": "/1O7uj01VEimGSmOjXN73T2IkFlR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.702, - "height": 1710, - "iso_639_1": "th", - "file_path": "/6w3jXwx3hsk4ufURO720ULs22jz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 1261, - "iso_639_1": "ko", - "file_path": "/oSS8RkGQQv2ubY3YaPTyEfnJP2Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 841 - }, - { - "aspect_ratio": 0.666, - "height": 1262, - "iso_639_1": "ko", - "file_path": "/n1rzu5vQKuePO4DrfM2ai1bRuBH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 841 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/7smWdFpPQKD0zJjsLcbTZDgbVCi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.702, - "height": 2850, - "iso_639_1": "ar", - "file_path": "/oNOT2hH1eHBcqJTGep7n5sgqwl5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/jqcqUZ4yjM1Gl9DRMfBTjO2Z4fy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2850, - "iso_639_1": "id", - "file_path": "/hkeKMEeSBgA8nEv5SnAK8ogfSyQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "ru", - "file_path": "/tb1z34QYPk6H2TiPKscVt7v1abR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 2700, - "iso_639_1": "es", - "file_path": "/moaVBVdDqcyyTM6UT8enXH3jc3c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/2z8ejVuHZD0f6D0ZxUwwUbZzzwR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": null, - "file_path": "/xyZec8lW8nEk0BpgAwBe7LKBqTi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jyS25c7sf6p22jf5dGtrMufrcoF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": null, - "file_path": "/s9k5BR3Rad1UCO53GkCYW7d4BNT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/614930.json b/examples/view-transitions/src/content/movies/614930.json deleted file mode 100644 index 6eeaf1446a13..000000000000 --- a/examples/view-transitions/src/content/movies/614930.json +++ /dev/null @@ -1,4687 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "belongs_to_collection": { - "id": 1156855, - "name": "Teenage Mutant Ninja Turtles: Mutant Mayhem Collection", - "poster_path": "/2f3DNUlGW4nlPSdWlhnDTKRnteC.jpg", - "backdrop_path": "/xVWfbv1wqIZshjJqHvmyjLGlV02.jpg" - }, - "budget": 70000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 35, "name": "Comedy" }, - { "id": 28, "name": "Action" } - ], - "homepage": "https://www.teenagemutantninjaturtlesmovie.com", - "id": 614930, - "imdb_id": "tt8589698", - "original_language": "en", - "original_title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "overview": "After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.", - "popularity": 644.874, - "poster_path": "/ueO9MYIOHO7M1PiMUeX74uf8fB9.jpg", - "production_companies": [ - { - "id": 4, - "logo_path": "/gz66EfNoYPqHTYI4q9UEN4CbHRc.png", - "name": "Paramount", - "origin_country": "US" - }, - { - "id": 2348, - "logo_path": "/oydqrfwRAm6qqdYbxuMmmPsVi87.png", - "name": "Nickelodeon Movies", - "origin_country": "US" - }, - { - "id": 16615, - "logo_path": "/5au3v0r2brGaegO9EQ0nodLkmQ1.png", - "name": "Point Grey Pictures", - "origin_country": "US" - }, - { - "id": 199314, - "logo_path": "/zVfq3R7Ue0Ho0XnfgyK63fMGk2j.png", - "name": "Mikros Animation", - "origin_country": "FR" - }, - { "id": 75234, "logo_path": null, "name": "Cinesite Animation", "origin_country": "CA" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-07-31", - "revenue": 161000000, - "runtime": 100, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Mandarin", "iso_639_1": "zh", "name": "普通话" } - ], - "status": "Released", - "tagline": "Heroes aren't born. They're mutated.", - "title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "video": false, - "vote_average": 7.4, - "vote_count": 545, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 2343267, - "known_for_department": "Acting", - "name": "Micah Abbey", - "original_name": "Micah Abbey", - "popularity": 3.245, - "profile_path": "/nfQGd7AblQuHloLY3R4Lr46jQhL.jpg", - "cast_id": 10, - "character": "Donatello (voice)", - "credit_id": "6403f389021cee00810e2bcf", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 3127719, - "known_for_department": "Acting", - "name": "Shamon Brown Jr.", - "original_name": "Shamon Brown Jr.", - "popularity": 4.456, - "profile_path": "/cZLR1muqSubjevOse7xvZWppMBd.jpg", - "cast_id": 9, - "character": "Michelangelo (voice)", - "credit_id": "6403f379e61e6d00c6580da7", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1696351, - "known_for_department": "Acting", - "name": "Nicolas Cantu", - "original_name": "Nicolas Cantu", - "popularity": 11.29, - "profile_path": "/ySFxLOQ9ejiZddviRVf9bhZvDsf.jpg", - "cast_id": 8, - "character": "Leonardo (voice)", - "credit_id": "6403f35a383df2008694256d", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 2239159, - "known_for_department": "Acting", - "name": "Brady Noon", - "original_name": "Brady Noon", - "popularity": 15.258, - "profile_path": "/qn7dJS2XxKfSoJdK9BVgFiPEeCJ.jpg", - "cast_id": 11, - "character": "Raphael (voice)", - "credit_id": "6403f39867dcc900826e3aa3", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 2195140, - "known_for_department": "Acting", - "name": "Ayo Edebiri", - "original_name": "Ayo Edebiri", - "popularity": 12.118, - "profile_path": "/rhI5KCgJTqmHlOYmEXfbo5BzjHK.jpg", - "cast_id": 13, - "character": "April O'Neil (voice)", - "credit_id": "6403f3b03927120086184411", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 52792, - "known_for_department": "Acting", - "name": "Maya Rudolph", - "original_name": "Maya Rudolph", - "popularity": 14.609, - "profile_path": "/9QTtEfAmQOQcGhD12zzxdouLRh4.jpg", - "cast_id": 21, - "character": "Cynthia Utrom (voice)", - "credit_id": "6403f44c392712008d329492", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 56446, - "known_for_department": "Acting", - "name": "John Cena", - "original_name": "John Cena", - "popularity": 32.459, - "profile_path": "/6EZaBiQHx3Xlz3j0D6ttDxHXaxr.jpg", - "cast_id": 15, - "character": "Rocksteady (voice)", - "credit_id": "6403f3dfe61e6d008e3fd49e", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "cast_id": 6, - "character": "Bebop (voice)", - "credit_id": "62eea4884557a0007d4fcc48", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 9827, - "known_for_department": "Acting", - "name": "Rose Byrne", - "original_name": "Rose Byrne", - "popularity": 36.078, - "profile_path": "/4oQWCLK7gd6RNKF0WJipJo7TyFP.jpg", - "cast_id": 18, - "character": "Leatherhead (voice)", - "credit_id": "6403f413392712008618445c", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 1971031, - "known_for_department": "Acting", - "name": "Natasia Demetriou", - "original_name": "Natasia Demetriou", - "popularity": 8.32, - "profile_path": "/65aNRTM520iUaBUoSyfyXHXY8xH.jpg", - "cast_id": 17, - "character": "Wingnut (voice)", - "credit_id": "6403f408136545009e7b75ce", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 4808, - "known_for_department": "Acting", - "name": "Giancarlo Esposito", - "original_name": "Giancarlo Esposito", - "popularity": 27.076, - "profile_path": "/lBvDQZjxhIGMbH61iHnqerpbqHc.jpg", - "cast_id": 22, - "character": "Baxter Stockman (voice)", - "credit_id": "6403f45b13654500965ce671", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 18897, - "known_for_department": "Acting", - "name": "Jackie Chan", - "original_name": "Jackie Chan", - "popularity": 88.744, - "profile_path": "/nraZoTzwJQPHspAVsKfgl3RXKKa.jpg", - "cast_id": 12, - "character": "Splinter (voice)", - "credit_id": "6403f39f021cee00810e2be4", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 9778, - "known_for_department": "Acting", - "name": "Ice Cube", - "original_name": "Ice Cube", - "popularity": 16.785, - "profile_path": "/ymR7Yll7HjL6i6Z3pt435hYi91T.jpg", - "cast_id": 14, - "character": "Superfly (voice)", - "credit_id": "6403f3ca67dcc900d481882b", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 22226, - "known_for_department": "Acting", - "name": "Paul Rudd", - "original_name": "Paul Rudd", - "popularity": 29.888, - "profile_path": "/9iBLPdj6AVnfBI1B2c0vTnGRR24.jpg", - "cast_id": 16, - "character": "Mondo Gecko (voice)", - "credit_id": "6403f3ea13654500965ce60f", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1821863, - "known_for_department": "Acting", - "name": "Post Malone", - "original_name": "Post Malone", - "popularity": 11.19, - "profile_path": "/v25LUebWdx60p6mMy1OzIHc0EVs.jpg", - "cast_id": 19, - "character": "Ray Fillet (voice)", - "credit_id": "6403f42be61e6d0086dfe3aa", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 500427, - "known_for_department": "Acting", - "name": "Hannibal Buress", - "original_name": "Hannibal Buress", - "popularity": 12.24, - "profile_path": "/mcw3Orbg4vbALXTVG4hriZjH1sj.jpg", - "cast_id": 20, - "character": "Genghis Frog (voice)", - "credit_id": "6403f43913654500791b9b7d", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 2282154, - "known_for_department": "Acting", - "name": "Jimmy Donaldson", - "original_name": "Jimmy Donaldson", - "popularity": 2.4, - "profile_path": "/dE6VIMrvZsY5a9gIaWoX40tzYkV.jpg", - "cast_id": 59, - "character": "Times Square Guy (voice)", - "credit_id": "64c84d3fb97442010c1d4879", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 1633357, - "known_for_department": "Acting", - "name": "Derek Wilson", - "original_name": "Derek Wilson", - "popularity": 2.618, - "profile_path": "/oOvJLNW7WSuf2ZU9wLN0wK3i78a.jpg", - "cast_id": 60, - "character": "Spider (voice)", - "credit_id": "64c84d69f794ad013959711b", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 4182292, - "known_for_department": "Production", - "name": "Lukas Williams", - "original_name": "Lukas Williams", - "popularity": 0.6, - "profile_path": null, - "cast_id": 61, - "character": "Curious Goon (voice)", - "credit_id": "64c84d7e08cf8700e27743d4", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 1010, - "known_for_department": "Acting", - "name": "Michael Badalucco", - "original_name": "Michael Badalucco", - "popularity": 7.378, - "profile_path": "/ntqAjxrBsyXbRzAaln4ynSBTE1r.jpg", - "cast_id": 62, - "character": "Bad Bernie (voice)", - "credit_id": "64c84d991fa1c80130dc63ea", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 167756, - "known_for_department": "Acting", - "name": "Dempsey Pappion", - "original_name": "Dempsey Pappion", - "popularity": 7.181, - "profile_path": "/IxBp8pmWqXRUKnD6Ue4RxGROxd.jpg", - "cast_id": 63, - "character": "Bald Bronson (voice)", - "credit_id": "64c84dbcf794ad00fff3ecfa", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 31007, - "known_for_department": "Acting", - "name": "John Capodice", - "original_name": "John Capodice", - "popularity": 9.013, - "profile_path": "/lN5VuGKFqfOFH5F8zso34I77sy2.jpg", - "cast_id": 64, - "character": "Cab Driver (voice)", - "credit_id": "64c84ddb1fa1c800eeae39d1", - "order": 21 - }, - { - "adult": false, - "gender": 1, - "id": 3763977, - "known_for_department": "Acting", - "name": "Andia Winslow", - "original_name": "Andia Winslow", - "popularity": 0.704, - "profile_path": null, - "cast_id": 65, - "character": "TV Anchor (voice)", - "credit_id": "64c84df5b9744200eb519cd6", - "order": 22 - }, - { - "adult": false, - "gender": 1, - "id": 3274036, - "known_for_department": "Acting", - "name": "Raechel Wong", - "original_name": "Raechel Wong", - "popularity": 1.659, - "profile_path": "/jPTwAg5vh4HGo58o7yWgkeVD1ZK.jpg", - "cast_id": 66, - "character": "News Anchor (voice)", - "credit_id": "64c84e0dd5191f00ffefdebc", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 18978, - "known_for_department": "Acting", - "name": "David Faustino", - "original_name": "David Faustino", - "popularity": 12.457, - "profile_path": "/dNqoFIPkusGDUjjIAX0jmtQV47v.jpg", - "cast_id": 67, - "character": "Normal Nate (voice)", - "credit_id": "64c84e25b97442014e8cbdec", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 61963, - "known_for_department": "Acting", - "name": "Danny Mastrogiorgio", - "original_name": "Danny Mastrogiorgio", - "popularity": 3.472, - "profile_path": "/aSbYZbk7TMgMN0Ec3LpOmEDzQBa.jpg", - "cast_id": 68, - "character": "Toupee Tom / Police Officer (voice)", - "credit_id": "64c84e531fa1c8010f4d73f0", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 3567854, - "known_for_department": "Acting", - "name": "Noel Gibson", - "original_name": "Noel Gibson", - "popularity": 0.643, - "profile_path": null, - "cast_id": 69, - "character": "Responding Police Officer / Military Advisor (voice)", - "credit_id": "64c9e580001bbd00c9a81e93", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4193053, - "known_for_department": "Editing", - "name": "Myra Owyang", - "original_name": "Myra Owyang", - "popularity": 0.6, - "profile_path": null, - "cast_id": 70, - "character": "Short Sharon (voice)", - "credit_id": "64c9e59ca5743d014f9f6042", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 19502, - "known_for_department": "Acting", - "name": "Kevin Eastman", - "original_name": "Kevin Eastman", - "popularity": 4.328, - "profile_path": "/tLrVQhk0sXQnWKF86trGUidbYGy.jpg", - "cast_id": 71, - "character": "Good Human (voice)", - "credit_id": "64c9e5b2001bbd0126a775c4", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 1254995, - "known_for_department": "Acting", - "name": "Alex Hirsch", - "original_name": "Alex Hirsch", - "popularity": 8.693, - "profile_path": "/jQwmmz7ujRiKGSOHZoTBGiFI3J3.jpg", - "cast_id": 72, - "character": "Bossy Goon / Scumbug (voice)", - "credit_id": "64c9e5d3a5743d00afb434af", - "order": 29 - }, - { - "adult": false, - "gender": 2, - "id": 1647289, - "known_for_department": "Acting", - "name": "Mike Rianda", - "original_name": "Mike Rianda", - "popularity": 3, - "profile_path": "/1MEH4XJ7fSkwA5oCEyx3CckbIva.jpg", - "cast_id": 73, - "character": "Paycheck Goon / Chop Shop Boss / Ratatouille Guard (voice)", - "credit_id": "64c9e63985b10500ac164ff7", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 1420684, - "known_for_department": "Acting", - "name": "Bobby Wagner", - "original_name": "Bobby Wagner", - "popularity": 0.6, - "profile_path": null, - "cast_id": 74, - "character": "Man Who Thought a Giant Rat was a Big Cat (voice)", - "credit_id": "64c9e68cd371970139787d42", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 1554463, - "known_for_department": "Editing", - "name": "Greg Levitan", - "original_name": "Greg Levitan", - "popularity": 0.766, - "profile_path": "/9bLKpacDeZslEzcbBoetr5qIebi.jpg", - "cast_id": 75, - "character": "Gecko Goon (voice)", - "credit_id": "64c9e6a5001bbd00c9a81f4e", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 4193076, - "known_for_department": "Editing", - "name": "Illya Quinteros", - "original_name": "Illya Quinteros", - "popularity": 0.694, - "profile_path": null, - "cast_id": 76, - "character": "Helpful Construction Worker (voice)", - "credit_id": "64c9e6ea0b74e900ac668cdc", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 3066089, - "known_for_department": "Acting", - "name": "Natalie Canizares", - "original_name": "Natalie Canizares", - "popularity": 0.692, - "profile_path": "/3nFVlaoeRdiJ3aP2jsaj6dnJOcJ.jpg", - "cast_id": 77, - "character": "Sign My Baby Mom (voice)", - "credit_id": "64c9e70bdd83fa0139daa2ce", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 2061712, - "known_for_department": "Directing", - "name": "Kyler Spears", - "original_name": "Kyler Spears", - "popularity": 2.303, - "profile_path": "/ciUmi4uGPXvME6Vh4FptrBM5X8D.jpg", - "cast_id": 78, - "character": "Apologetic Goon (voice)", - "credit_id": "64c9e71e85b10500e25319fb", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "cast_id": 79, - "character": "Man Who Loves Being Young and Free to Go Places (voice)", - "credit_id": "64c9e741a5743d00ec204db0", - "order": 36 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64cfba6b303c8500ade4746a", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64d0044585090f010691d3cd", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 8376, - "known_for_department": "Sound", - "name": "Mark A. Mangini", - "original_name": "Mark A. Mangini", - "popularity": 1.205, - "profile_path": "/q2LCMIFYJZlZtSCIJjwS8zfAnfE.jpg", - "credit_id": "64d0043e945d36011c3c825c", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 3186, - "known_for_department": "Sound", - "name": "Trent Reznor", - "original_name": "Trent Reznor", - "popularity": 1.983, - "profile_path": "/gzvgK9ydCfW5Sh9tsEeYcYCnxrh.jpg", - "credit_id": "64739644be2d4900f9943e8b", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 19502, - "known_for_department": "Acting", - "name": "Kevin Eastman", - "original_name": "Kevin Eastman", - "popularity": 4.328, - "profile_path": "/tLrVQhk0sXQnWKF86trGUidbYGy.jpg", - "credit_id": "641dea9de0ec5100b85afe9c", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 19503, - "known_for_department": "Writing", - "name": "Peter Laird", - "original_name": "Peter Laird", - "popularity": 1.843, - "profile_path": "/wYgVe1v32dMySKVRJxercnyRICz.jpg", - "credit_id": "641deaa8c9982600cfba80b5", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "64c1b82bfdc14600e2863f13", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "5f01da198ec4ab00333f05be", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19274, - "known_for_department": "Acting", - "name": "Seth Rogen", - "original_name": "Seth Rogen", - "popularity": 11.967, - "profile_path": "/2dPFskUtoiG0xafsSEGl9Oz4teA.jpg", - "credit_id": "64bd102985c0a200c898344e", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "64c1b843df86a800e7803f9b", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "5f01da1015959f00365851dd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 54734, - "known_for_department": "Production", - "name": "Evan Goldberg", - "original_name": "Evan Goldberg", - "popularity": 2.944, - "profile_path": "/uKZFcTB7FS47WvRFcp5wv3f7hJM.jpg", - "credit_id": "64bd10410ed2ab00c5e3862c", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 142391, - "known_for_department": "Sound", - "name": "Atticus Ross", - "original_name": "Atticus Ross", - "popularity": 2.58, - "profile_path": "/q9FkywKCRqe3pNnhTApHYfnwMiC.jpg", - "credit_id": "64739650a894d600fc552951", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 184582, - "known_for_department": "Writing", - "name": "Brendan O'Brien", - "original_name": "Brendan O'Brien", - "popularity": 2.281, - "profile_path": null, - "credit_id": "64bd100885c0a200ad6071e0", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 224530, - "known_for_department": "Editing", - "name": "Eric Kissack", - "original_name": "Eric Kissack", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb790d9f4a603b4a082af", - "department": "Editing", - "job": "Additional Editing" - }, - { - "adult": false, - "gender": 2, - "id": 928272, - "known_for_department": "Production", - "name": "Rich Delia", - "original_name": "Rich Delia", - "popularity": 3.755, - "profile_path": "/UiNvcLDmStXxpEmx6JrGKRI7UF.jpg", - "credit_id": "64cfba76549dda00ffa43d5e", - "department": "Production", - "job": "Original Casting" - }, - { - "adult": false, - "gender": 2, - "id": 928531, - "known_for_department": "Visual Effects", - "name": "Chris Kazmier", - "original_name": "Chris Kazmier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb599d9f4a603bafac94f", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 928595, - "known_for_department": "Production", - "name": "James Weaver", - "original_name": "James Weaver", - "popularity": 1.464, - "profile_path": "/pyUq99G6KgfX1ueTEueCoe3M5go.jpg", - "credit_id": "5f01da06ebb99d00377e93ff", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 965333, - "known_for_department": "Production", - "name": "Linda LaMontagne", - "original_name": "Linda LaMontagne", - "popularity": 0.936, - "profile_path": null, - "credit_id": "64cfbe1f6d4c97014f429427", - "department": "Production", - "job": "Additional Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1016326, - "known_for_department": "Editing", - "name": "David Croomes", - "original_name": "David Croomes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc6385090f010691bc8d", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1084935, - "known_for_department": "Visual Effects", - "name": "Woodrow White", - "original_name": "Woodrow White", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb6b1d9f4a603b549e9b4", - "department": "Visual Effects", - "job": "Lead Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1348934, - "known_for_department": "Directing", - "name": "Jacob Streilein", - "original_name": "Jacob Streilein", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb9785090f00c87d5d22", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1348938, - "known_for_department": "Writing", - "name": "Charlie Parisi", - "original_name": "Charlie Parisi", - "popularity": 0.879, - "profile_path": null, - "credit_id": "64cfbbfdd9f4a603b549eb3a", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1378828, - "known_for_department": "Sound", - "name": "Michael Semanick", - "original_name": "Michael Semanick", - "popularity": 1.559, - "profile_path": "/poGaVc3vdZmkZCvSLNIkkIsxffj.jpg", - "credit_id": "64d004606d4c97010d5117e5", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1380819, - "known_for_department": "Writing", - "name": "Dan Hernandez", - "original_name": "Dan Hernandez", - "popularity": 1.189, - "profile_path": "/qymuWtigXVSn4QNxdkwArAIYxpH.jpg", - "credit_id": "64c1b85e2f1be000ebd59823", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1380820, - "known_for_department": "Writing", - "name": "Benji Samit", - "original_name": "Benji Samit", - "popularity": 1.4, - "profile_path": "/ygxt6qf9mkKdn7m21cKBsIOPjl2.jpg", - "credit_id": "64c1b858097c490100d1ec57", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1479521, - "known_for_department": "Visual Effects", - "name": "Nicolas Benoit", - "original_name": "Nicolas Benoit", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf074d67910139ee8efd", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 1529999, - "known_for_department": "Sound", - "name": "Gabe Hilfer", - "original_name": "Gabe Hilfer", - "popularity": 2.774, - "profile_path": "/gKGYccyssgojChyinkPOr4MdXDN.jpg", - "credit_id": "64c1b7a1df86a800c8e8a42a", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1554463, - "known_for_department": "Editing", - "name": "Greg Levitan", - "original_name": "Greg Levitan", - "popularity": 0.766, - "profile_path": "/9bLKpacDeZslEzcbBoetr5qIebi.jpg", - "credit_id": "64cfb984303c8500c613f22e", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1573211, - "known_for_department": "Creator", - "name": "J.J. Villard", - "original_name": "J.J. Villard", - "popularity": 1.12, - "profile_path": "/jsmuy7JhbKw35MBT1mYrK4o1dV5.jpg", - "credit_id": "64cfbd32549dda01393308e0", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "64c1b84bdb4ed60101a9ac3a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "5efb66f6e93e950033bfad1b", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1578590, - "known_for_department": "Writing", - "name": "Jeff Rowe", - "original_name": "Jeff Rowe", - "popularity": 5.318, - "profile_path": "/iXZGSHM9C0cNkxs7dlAUPVOKGvm.jpg", - "credit_id": "64bd1051e9da69014febef15", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1586107, - "known_for_department": "Production", - "name": "Adam Richards", - "original_name": "Adam Richards", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe1585090f010691bd1e", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 1, - "id": 1615784, - "known_for_department": "Visual Effects", - "name": "Lauren Airriess", - "original_name": "Lauren Airriess", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbca2549dda00ffa43e20", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1652044, - "known_for_department": "Sound", - "name": "Christopher Bonis", - "original_name": "Christopher Bonis", - "popularity": 1.065, - "profile_path": null, - "credit_id": "64d003b94d67910139eea2c5", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 1, - "id": 1662923, - "known_for_department": "Visual Effects", - "name": "Sarah Simon", - "original_name": "Sarah Simon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf60d9f4a603b4a084fe", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 1721451, - "known_for_department": "Crew", - "name": "Maxime Sirven", - "original_name": "Maxime Sirven", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbef54d679100acf0dd20", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1804366, - "known_for_department": "Visual Effects", - "name": "Jacques Daigle", - "original_name": "Jacques Daigle", - "popularity": 0.636, - "profile_path": null, - "credit_id": "64cfba43549dda00c53f6534", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 1, - "id": 1819111, - "known_for_department": "Production", - "name": "Daniela Kriston", - "original_name": "Daniela Kriston", - "popularity": 0.97, - "profile_path": null, - "credit_id": "64064b3fb6cff1007cc1515e", - "department": "Production", - "job": "Researcher" - }, - { - "adult": false, - "gender": 2, - "id": 1869297, - "known_for_department": "Visual Effects", - "name": "Jeffrey M. Thompson", - "original_name": "Jeffrey M. Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd016d4c9700ec57f970", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1948032, - "known_for_department": "Sound", - "name": "Jesse Dodd", - "original_name": "Jesse Dodd", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003d26d4c97010d51179e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1984634, - "known_for_department": "Visual Effects", - "name": "Nacho Molina", - "original_name": "Nacho Molina", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcc8d9f4a603b875ed87", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 1995080, - "known_for_department": "Production", - "name": "Derek Manzella", - "original_name": "Derek Manzella", - "popularity": 0.677, - "profile_path": null, - "credit_id": "64cfbd516d4c97010d51025d", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2001560, - "known_for_department": "Visual Effects", - "name": "Simon Cuisinier", - "original_name": "Simon Cuisinier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfba4f4d679100e240b27b", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2002552, - "known_for_department": "Visual Effects", - "name": "Arthur Fong", - "original_name": "Arthur Fong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9d26d4c9700cb7e39a3", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2004215, - "known_for_department": "Visual Effects", - "name": "Scott Carroll", - "original_name": "Scott Carroll", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b53f945d36011c3cecdb", - "department": "Visual Effects", - "job": "Head of Animation" - }, - { - "adult": false, - "gender": 2, - "id": 2007887, - "known_for_department": "Visual Effects", - "name": "Victor Hareng", - "original_name": "Victor Hareng", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf0c549dda00ffa43eeb", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2010670, - "known_for_department": "Sound", - "name": "Jacob Flack", - "original_name": "Jacob Flack", - "popularity": 1.597, - "profile_path": null, - "credit_id": "64d003de945d3600e26632a6", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2013835, - "known_for_department": "Visual Effects", - "name": "David Bleich", - "original_name": "David Bleich", - "popularity": 0.68, - "profile_path": null, - "credit_id": "64cfbc9885090f010691bca8", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2015909, - "known_for_department": "Visual Effects", - "name": "Dustin D'Arnault", - "original_name": "Dustin D'Arnault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcae85090f010691bcb3", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2015914, - "known_for_department": "Visual Effects", - "name": "Yashar Kassai", - "original_name": "Yashar Kassai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9bb6d4c97014f4292a4", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 2016591, - "known_for_department": "Visual Effects", - "name": "David Carrière", - "original_name": "David Carrière", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf376d4c9700afae24a5", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 2017385, - "known_for_department": "Production", - "name": "Marie Balland", - "original_name": "Marie Balland", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb962303c8500e338f87c", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2017422, - "known_for_department": "Visual Effects", - "name": "Maxence Verniers-Diers", - "original_name": "Maxence Verniers-Diers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe96549dda00acf0941d", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2017425, - "known_for_department": "Visual Effects", - "name": "Tanguy Gourret", - "original_name": "Tanguy Gourret", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf73549dda01393309df", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 2, - "id": 2061712, - "known_for_department": "Directing", - "name": "Kyler Spears", - "original_name": "Kyler Spears", - "popularity": 2.303, - "profile_path": "/ciUmi4uGPXvME6Vh4FptrBM5X8D.jpg", - "credit_id": "62eea4ab11c066007c50d8bd", - "department": "Directing", - "job": "Co-Director" - }, - { - "adult": false, - "gender": 0, - "id": 2135760, - "known_for_department": "Visual Effects", - "name": "Denis Tassenoy", - "original_name": "Denis Tassenoy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5604d679100acf16050", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2168982, - "known_for_department": "Visual Effects", - "name": "Natan Moura", - "original_name": "Natan Moura", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd36303c85013a155ba1", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2176989, - "known_for_department": "Sound", - "name": "Chelsea Body", - "original_name": "Chelsea Body", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003af945d3600ffce0f1f", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 2263741, - "known_for_department": "Production", - "name": "Josh Fagen", - "original_name": "Josh Fagen", - "popularity": 1.4, - "profile_path": null, - "credit_id": "64c1b7ecdf86a801446c3c44", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2372845, - "known_for_department": "Art", - "name": "Hanna Cho", - "original_name": "Hanna Cho", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb8c303c850100b135ae", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2378662, - "known_for_department": "Art", - "name": "Gabriel Lin", - "original_name": "Gabriel Lin", - "popularity": 0.6, - "profile_path": "/rqjaVW9wwZO17TSpE44Q4YjIl1Z.jpg", - "credit_id": "64cfb9ea6d4c9700ec57f873", - "department": "Writing", - "job": "Head of Story" - }, - { - "adult": false, - "gender": 1, - "id": 2501366, - "known_for_department": "Production", - "name": "Adrianna A.J. Cohen", - "original_name": "Adrianna A.J. Cohen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbe5685090f00ae83c438", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2526015, - "known_for_department": "Sound", - "name": "Alex Gregson", - "original_name": "Alex Gregson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003fd6d4c97010d5117ac", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2531194, - "known_for_department": "Directing", - "name": "Chloé Nicolay", - "original_name": "Chloé Nicolay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb91549dda00e2dd7a47", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2592551, - "known_for_department": "Art", - "name": "Sean Sevestre", - "original_name": "Sean Sevestre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcd2d9f4a603b875ed8d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 2630671, - "known_for_department": "Visual Effects", - "name": "Kent Seki", - "original_name": "Kent Seki", - "popularity": 0.6, - "profile_path": "/mm7Rsadfwb37JmVizltAuVSEVP5.jpg", - "credit_id": "64cfba0dd9f4a603bafacabe", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2671720, - "known_for_department": "Writing", - "name": "Sang Yup Lee", - "original_name": "Sang Yup Lee", - "popularity": 1.708, - "profile_path": null, - "credit_id": "64cfbb69549dda0139330800", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2763059, - "known_for_department": "Directing", - "name": "Isabella Spadone", - "original_name": "Isabella Spadone", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb776d4c97014f429336", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2819669, - "known_for_department": "Visual Effects", - "name": "Peter Foltz", - "original_name": "Peter Foltz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbbb5d9f4a603b7976a02", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2828799, - "known_for_department": "Visual Effects", - "name": "Fred Wong", - "original_name": "Fred Wong", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd0a6d4c97014f4293b5", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 2905491, - "known_for_department": "Art", - "name": "Florent Masurel", - "original_name": "Florent Masurel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5a1d9f4a603bafb4547", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2953373, - "known_for_department": "Production", - "name": "Kevin Jung", - "original_name": "Kevin Jung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d003ec4d679100acf0f321", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 2, - "id": 3089519, - "known_for_department": "Visual Effects", - "name": "James A. Castillo", - "original_name": "James A. Castillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb702549dda011c284b92", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 2, - "id": 3107442, - "known_for_department": "Visual Effects", - "name": "Florent Razafimandimby", - "original_name": "Florent Razafimandimby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbfb66d4c97010d510335", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 3163004, - "known_for_department": "Art", - "name": "Ray Xu", - "original_name": "Ray Xu", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc04d9f4a603b875ed42", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 3243817, - "known_for_department": "Visual Effects", - "name": "Adel Sabi", - "original_name": "Adel Sabi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64064a581089ba00ec1e96c9", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3328269, - "known_for_department": "Editing", - "name": "Eryn Suchara", - "original_name": "Eryn Suchara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc7f6d4c97010d51021c", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3350189, - "known_for_department": "Visual Effects", - "name": "Etienne Metois", - "original_name": "Etienne Metois", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf78303c85013a155c99", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 1, - "id": 3471610, - "known_for_department": "Visual Effects", - "name": "Maxime Mary", - "original_name": "Maxime Mary", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb7106d4c9700cb7e38c0", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3474548, - "known_for_department": "Visual Effects", - "name": "Nikita Chan", - "original_name": "Nikita Chan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbca94d67910139ee8e2b", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3623031, - "known_for_department": "Sound", - "name": "Jennie Shea", - "original_name": "Jennie Shea", - "popularity": 0.84, - "profile_path": null, - "credit_id": "64d003c46d4c9700afae37bf", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 2, - "id": 3883341, - "known_for_department": "Visual Effects", - "name": "Kellan Jett", - "original_name": "Kellan Jett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64064f39ef9d72009957f728", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 1, - "id": 3883342, - "known_for_department": "Visual Effects", - "name": "Tiffany Lam", - "original_name": "Tiffany Lam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb9d8303c8500c613f250", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 3887248, - "known_for_department": "Writing", - "name": "Andrew James Ross", - "original_name": "Andrew James Ross", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc2b6d4c9700ec57f927", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3951848, - "known_for_department": "Visual Effects", - "name": "Yebin Kang", - "original_name": "Yebin Kang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "640645d01089ba0079f5c050", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 3951883, - "known_for_department": "Visual Effects", - "name": "Garrett Lee", - "original_name": "Garrett Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648132f264765400e6801818", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 3951885, - "known_for_department": "Visual Effects", - "name": "Lily Nishita", - "original_name": "Lily Nishita", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcce303c85011dd42839", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4045446, - "known_for_department": "Production", - "name": "Ramsay McBean", - "original_name": "Ramsay McBean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c1b7e3fdc14600e2863ebf", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4045447, - "known_for_department": "Production", - "name": "Julien Meesters", - "original_name": "Julien Meesters", - "popularity": 0.997, - "profile_path": null, - "credit_id": "64cfbe6f303c850100b136c3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 4182292, - "known_for_department": "Production", - "name": "Lukas Williams", - "original_name": "Lukas Williams", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64c1b7cf13a320011c5f6f1f", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4193053, - "known_for_department": "Editing", - "name": "Myra Owyang", - "original_name": "Myra Owyang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc5e4d679100acf0dc15", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4193076, - "known_for_department": "Editing", - "name": "Illya Quinteros", - "original_name": "Illya Quinteros", - "popularity": 0.694, - "profile_path": null, - "credit_id": "64cfbc58303c8500c613f355", - "department": "Editing", - "job": "Associate Editor" - }, - { - "adult": false, - "gender": 2, - "id": 4200673, - "known_for_department": "Directing", - "name": "Andrew Joustra", - "original_name": "Andrew Joustra", - "popularity": 0.6, - "profile_path": "/3nwezdrOtyhsmaB0iuAh6J017UE.jpg", - "credit_id": "64cfb641303c8500ade472fa", - "department": "Directing", - "job": "Script Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 4200674, - "known_for_department": "Production", - "name": "Cindy Y. Avila", - "original_name": "Cindy Y. Avila", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb676549dda011c284b52", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 4200675, - "known_for_department": "Visual Effects", - "name": "Justin Runfola", - "original_name": "Justin Runfola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb7376d4c9700cb7e38da", - "department": "Visual Effects", - "job": "Character Designer" - }, - { - "adult": false, - "gender": 0, - "id": 4200676, - "known_for_department": "Visual Effects", - "name": "Jules Itzkoff", - "original_name": "Jules Itzkoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfb756d9f4a603b549e9e9", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 2, - "id": 4200698, - "known_for_department": "Visual Effects", - "name": "Matthieu Rouxel", - "original_name": "Matthieu Rouxel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfba2e85090f010691bba5", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 4200701, - "known_for_department": "Production", - "name": "Anna Jahn", - "original_name": "Anna Jahn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbaf14d67910139ee8da4", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4200706, - "known_for_department": "Writing", - "name": "Paige Caldwell", - "original_name": "Paige Caldwell", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbb65d9f4a603b875ed10", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 2, - "id": 4200715, - "known_for_department": "Writing", - "name": "John Jackson", - "original_name": "John Jackson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc25549dda0139330870", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4200720, - "known_for_department": "Editing", - "name": "Art Arreola", - "original_name": "Art Arreola", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbc7985090f01445bad47", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4200725, - "known_for_department": "Visual Effects", - "name": "Tom Eichacker", - "original_name": "Tom Eichacker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcbd549dda011c284d7d", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4200726, - "known_for_department": "Visual Effects", - "name": "Alger Tam", - "original_name": "Alger Tam", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbcdc303c8500e338f996", - "department": "Visual Effects", - "job": "Visual Development" - }, - { - "adult": false, - "gender": 0, - "id": 4200727, - "known_for_department": "Production", - "name": "Courtney Madincea", - "original_name": "Courtney Madincea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd4a4d6791011c17bf7d", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200728, - "known_for_department": "Production", - "name": "Yasmine Mzayek", - "original_name": "Yasmine Mzayek", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd5c6d4c9700cb7e3ad8", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200729, - "known_for_department": "Production", - "name": "Ketsia A. Védrine", - "original_name": "Ketsia A. Védrine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd6585090f0125bce77c", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200730, - "known_for_department": "Production", - "name": "Daniel Kahn", - "original_name": "Daniel Kahn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd72d9f4a603bafacbbd", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200731, - "known_for_department": "Production", - "name": "Ryan Kuo", - "original_name": "Ryan Kuo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd8fd9f4a603b875edd8", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 4200733, - "known_for_department": "Production", - "name": "Ryan Fragomeni", - "original_name": "Ryan Fragomeni", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbd974d679100e240b3a6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200736, - "known_for_department": "Production", - "name": "Leah Koerwer", - "original_name": "Leah Koerwer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbda3549dda00acf093a8", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4200756, - "known_for_department": "Visual Effects", - "name": "Martin Scalzotto", - "original_name": "Martin Scalzotto", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf31303c8500e338fa76", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4200757, - "known_for_department": "Visual Effects", - "name": "David Marquis", - "original_name": "David Marquis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbf3d4d679100ff682ae7", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4200767, - "known_for_department": "Visual Effects", - "name": "Jean-Paul Suau", - "original_name": "Jean-Paul Suau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfbfaf6d4c97012e8b554c", - "department": "Visual Effects", - "job": "Lead Animator" - }, - { - "adult": false, - "gender": 0, - "id": 4202077, - "known_for_department": "Visual Effects", - "name": "Anais Basso", - "original_name": "Anais Basso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64d0b5aa85090f0125bd6d84", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4202078, - "known_for_department": "Visual Effects", - "name": "Basile Gouttenoire", - "original_name": "Basile Gouttenoire", - "popularity": 0.605, - "profile_path": null, - "credit_id": "64d0b5b3d9f4a603bafb455c", - "department": "Visual Effects", - "job": "2D Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4220274, - "known_for_department": "Production", - "name": "Romain Recher", - "original_name": "Romain Recher", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64de343ba3b5e600e29ca575", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4268874, - "known_for_department": "Production", - "name": "Elisa Guibert", - "original_name": "Elisa Guibert", - "popularity": 1.38, - "profile_path": null, - "credit_id": "65018b7be0ca7f012eb930f6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4269318, - "known_for_department": "Production", - "name": "Tom Kurcz", - "original_name": "Tom Kurcz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6501bd62e0ca7f00cbeb078c", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 1, - "id": 4277166, - "known_for_department": "Crew", - "name": "Dana Gardner", - "original_name": "Dana Gardner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6507508e8a88b200c6acf568", - "department": "Crew", - "job": "Studio Teacher" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind The Scenes With Seth Rogen and Cast", - "key": "7HldRxOEokw", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-16T16:00:03.000Z", - "id": "65082226109dec00aeb04cc9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Fight Clip", - "key": "bmpH2thY9q0", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-08T15:59:53.000Z", - "id": "65082250109dec012d89b442" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Back To School\" Clip", - "key": "UmGaoq71de8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-24T15:59:01.000Z", - "id": "64e9249190ea4b011e792d18" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Our heroes in a half-shell have arrived", - "key": "yqkCnRXlTp4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-20T07:30:14.000Z", - "id": "64e337f4544c410138b44403" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Gear up and get tickets", - "key": "P6UkPe1VOx0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-20T02:00:08.000Z", - "id": "64e337fe65e0a200ffbdfee4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready for some Turtle-action!", - "key": "KcMFKEOCJds", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-19T02:00:08.000Z", - "id": "64e3383b7ef381209f45176a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Seth Rogen and Ice Cube hang with Real Turtles", - "key": "WLeJaXEydn8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-18T08:33:14.000Z", - "id": "64e372d3d7cd0600c88e89e4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It's turtle-y awesome!", - "key": "Sl5prZlEJeM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-18T02:00:19.000Z", - "id": "64e33842544c4100ac3cf5c1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Cowabunga, dude!!!", - "key": "A6Zfqm2RVSg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-17T03:24:50.000Z", - "id": "64e33848076ce843b8d4e875" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fruit ninja IRL", - "key": "1p_TeStcecY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-09T05:00:00.000Z", - "id": "64d33c0ebf31f201ca89f9e9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "We're turtles on a mission", - "key": "gLOPGbgG7F8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-09T00:00:14.000Z", - "id": "64d312d1db4ed600e2b4bc41" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready for Mayhem!", - "key": "xIycJyk-kqs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-08T07:00:22.000Z", - "id": "64d30384b6c26400adaa79fd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Adult Swim Commercial", - "key": "mflT9WXHOXs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": false, - "published_at": "2023-08-07T17:00:20.000Z", - "id": "64d31e32d100b600ff086416" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It's Turtle time!", - "key": "0UIuGakPxcU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-07T07:00:00.000Z", - "id": "64d33660d100b600e267604b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "It’s Called Mutant Mayhem", - "key": "6vesBtNRt20", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-08-01T14:02:09.000Z", - "id": "64c93d7f85b10500ff0085dc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Inspiration", - "key": "NjDAIydPol4", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-31T16:00:00.000Z", - "id": "64c93c5d0b74e900c997850f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Be brave. Be strong. Be Ninjas.", - "key": "F7ecs8U5zgY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-30T23:00:07.000Z", - "id": "64c981fedd83fa0139da5097" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teamwork makes the dream work", - "key": "7bIfezILQkM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-28T23:00:02.000Z", - "id": "64c981dfa5743d00ec1fffc0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Seth Rogen and Ice Cube take the Ultimate Gen-Z Quiz", - "key": "_u_0bKONw-0", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-28T17:14:15.000Z", - "id": "64c93c8b85b105011cacfbe3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Zombie Kid STILL Likes Turtles", - "key": "Hnt1EdUZ1E8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-27T13:00:10.000Z", - "id": "64c93c9e0cb335013979a7c1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Final Trailer", - "key": "JhXRNRmuYcc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-07-27T13:00:04.000Z", - "id": "64c276b1ede1b0011f7e1e28" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Ask Seth Rogen Anything", - "key": "RONioDCCMP8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-26T17:04:05.000Z", - "id": "64c1a0dbdb4ed600e4ca7caa" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Meeting Superfly\" Clip", - "key": "cTQy7sS_EaI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-24T13:00:02.000Z", - "id": "64be892658efd30139549668" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get to know the incredible cast", - "key": "ok_-ha1bW0Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-07-22T19:00:29.000Z", - "id": "64c0bc1a514c4a0144128ac6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Sneaking In\" Clip", - "key": "SUnHJ7EW93M", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-20T19:28:20.000Z", - "id": "64b98e5c06f98400fe41a33e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Turtle Tots", - "key": "jtHUYbrGcJE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-18T16:00:01.000Z", - "id": "64b6c11e13654500c731b3f4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Putting the Teens in TMNT", - "key": "fbvcuCwfNsM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-17T13:00:04.000Z", - "id": "64b6c188ac416100ad9e451d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind the Design", - "key": "W2u-ZlPI5Rg", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-13T16:00:09.000Z", - "id": "64b0399cd40d4c00ae654623" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "First Clip", - "key": "MvWE4EkzVJs", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-13T14:00:02.000Z", - "id": "64b0398dd40d4c013cf4f3bc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the Cast", - "key": "FIshPcRWUts", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-26T15:00:01.000Z", - "id": "649aa547d35dea012c16e9a0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "International Trailer", - "key": "E4Kz4tZ6RcA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-31T22:29:00.000Z", - "id": "64c9811d001bbd014525e6ad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "IHvzw4Ibuho", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-31T13:00:08.000Z", - "id": "64774e2900508a0116d55c36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "ooZdaF2zMlM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-06T14:00:00.000Z", - "id": "6405f2bde61e6d008e40da30" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8X0NQoaOcqjlxcv36VySPUOyfyO.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8jWrErAHD0yvwr538xz7dbo3aas.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tgFtGRjPJRQVTN1CLePMrkfxuoT.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o6gnE9RYB8sy7WObfF7kZXFXIMX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qj3mS8l82jenXKneQxc2vRb0LyM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 920, - "iso_639_1": null, - "file_path": "/zYdTGqWIup2SMg6A8ZpeLuvCpiy.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1635 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2Cpg8hUn60PK9CW9d5SWf605Ah8.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/yARWDQRZRTMkcRsmicAKOgk6Vhf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6TFxMeeMTIazbN859GoV7MSbyxG.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.78, - "height": 946, - "iso_639_1": null, - "file_path": "/v4eMMGKJlSkymhSk3CmybGEMhQ0.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1684 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4YcGCGjOBQ8ZzgkVg7IYOmVfO9k.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/guACZvYS5yoAO1tfWuZTzlB9AG6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/aomMPaHUPCq5gfk7s1aRciVD3Tm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qnzI1tu4teoNfyUTaRDrCZuYCrA.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5N0zk3ITDpvLQ6h9n1hn2qT95xO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.78, - "height": 1310, - "iso_639_1": null, - "file_path": "/cRTMZVf44N1QABcyi76zaTRLAPN.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2332 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2KgnQxh4WmYJZEcokydl3wEZhp0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/9H8Z7czDlUhb15iAtbUwtjap52D.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/whyMDDsff7lG0OUPgNxC0MycP09.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/exsiJEg4zV5nagyTHOkMvhLr1ZV.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5vKWCX1iCTe4e7lmF64vuxf9dGG.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/tIW3xKbc65xRkAgb5I1Wy8wbxiV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/ujemBc9KPqvOlgvqyVFwa9Z6NgU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/nxapFqq2lCpAKTe4NXadhYWoSng.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5XjotDCHUWJvrzI3mdLsfPUop2p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oxOZLyqEdda1UbhrqVu3kOXCLLx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5A89OJoaMygB8cgaOe1i5QrUCL6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fz0ZZxNVabK21NhK6ZeVeaKmbcq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/AfzSK8Z7kyX5EPHxKtZCKjVcspZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/1IiPkhmxVvbrCpSsrdu3Idyease.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/ciG7yjfvQVWVqpPditgqpsFL7Kh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/c4Iv7E80tJbKEt0mZlLe9NUYOZL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/cHefNSmFSm5SnBWXhOcj1EncJ87.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hu", - "file_path": "/jabJRpYzX3DmfB3Y0jaH9PJs0AH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/asxLspUjQh2zs6Z72NJgtUiF1rw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cLppJRwwCQdf6gaTy6ZIz8uGRsW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/jM2trFkkLdRVH8rCheH8XkI1DiG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/v3YuECHgaQZaJsHjMKLVGunUv0R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 1.209, - "height": 575, - "iso_639_1": "he", - "file_path": "/tcZb0I2pn4iAyYL59NeNzRUbtH8.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 695 - }, - { - "aspect_ratio": 1.493, - "height": 670, - "iso_639_1": "en", - "file_path": "/1DfxdgEAdnQylz8DTr3ZGLsaInC.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 1.46, - "height": 1299, - "iso_639_1": "en", - "file_path": "/mEtZXyKRYULfScubUl1vTE0o77p.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1896 - }, - { - "aspect_ratio": 1.286, - "height": 294, - "iso_639_1": "fr", - "file_path": "/en9Q48DjwbW76k5mpeBGl2lnMyz.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 378 - }, - { - "aspect_ratio": 1.653, - "height": 1154, - "iso_639_1": "uk", - "file_path": "/rqgXy2jK48AdNFnQyGjvxyyLDzi.png", - "vote_average": 0, - "vote_count": 0, - "width": 1907 - }, - { - "aspect_ratio": 1.3, - "height": 687, - "iso_639_1": "ja", - "file_path": "/kFFZ4M4MANCwCUyiq3bpU8HRc1n.png", - "vote_average": 0, - "vote_count": 0, - "width": 893 - }, - { - "aspect_ratio": 2.01, - "height": 289, - "iso_639_1": "zh", - "file_path": "/7HpA6A7pNrP4YUnwAicaYnJsXPp.png", - "vote_average": 0, - "vote_count": 0, - "width": 581 - }, - { - "aspect_ratio": 2.028, - "height": 319, - "iso_639_1": "en", - "file_path": "/uLkz7xJPrWezHEOiN44HUxdK7Sp.png", - "vote_average": 0, - "vote_count": 0, - "width": 647 - }, - { - "aspect_ratio": 2.793, - "height": 2669, - "iso_639_1": "bg", - "file_path": "/59e5370d9x8c4gUzKxYG0Alf2nQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 7455 - }, - { - "aspect_ratio": 1.49, - "height": 290, - "iso_639_1": "cs", - "file_path": "/jZCFI1lwMiADuqGqfFT6GobJ3Fb.png", - "vote_average": 0, - "vote_count": 0, - "width": 432 - }, - { - "aspect_ratio": 1.342, - "height": 1621, - "iso_639_1": "cn", - "file_path": "/jL7HvrvZuTyuBGL2WTrAWInUTlD.png", - "vote_average": 0, - "vote_count": 0, - "width": 2176 - }, - { - "aspect_ratio": 1.284, - "height": 684, - "iso_639_1": "zh", - "file_path": "/sfgXyhxR9pAAjcav1yadt4KzHcw.png", - "vote_average": 0, - "vote_count": 0, - "width": 878 - }, - { - "aspect_ratio": 1.187, - "height": 807, - "iso_639_1": "he", - "file_path": "/3amu8d5SJ0af7TxvCG3mbSXKsOm.png", - "vote_average": 0, - "vote_count": 0, - "width": 958 - }, - { - "aspect_ratio": 1.508, - "height": 660, - "iso_639_1": "fa", - "file_path": "/vjCs3r7RehL94ZINuWrJXtjCbui.png", - "vote_average": 0, - "vote_count": 0, - "width": 995 - }, - { - "aspect_ratio": 2.028, - "height": 319, - "iso_639_1": "en", - "file_path": "/u03TqND2fvufmiEvMiPYXBt6bLD.png", - "vote_average": 0, - "vote_count": 0, - "width": 647 - }, - { - "aspect_ratio": 1.866, - "height": 1917, - "iso_639_1": "es", - "file_path": "/VSGH7R6e6lvI4D9BqA4dF6rAMG.png", - "vote_average": 0, - "vote_count": 0, - "width": 3578 - }, - { - "aspect_ratio": 2.112, - "height": 473, - "iso_639_1": "pt", - "file_path": "/fDeW7FP547MMQYGamG5P04PP12i.png", - "vote_average": 0, - "vote_count": 0, - "width": 999 - }, - { - "aspect_ratio": 1.496, - "height": 893, - "iso_639_1": "pl", - "file_path": "/5yQ1igbf09lVB8DE9WBxwtLTF4i.png", - "vote_average": 0, - "vote_count": 0, - "width": 1336 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oupWWrVuCgNEa5GcjdkpjCYbx2X.jpg", - "vote_average": 5.626, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ez3IwZGBuVMVbYFcS9iftoxDjB8.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/nXL01gWnyajYwEyJldSdXcr1Zso.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/n3M5gSOjWYxFakAsGbi6OFFi4LZ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/pMGAGWxeoAaETNu1UhMYcFGle0D.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/xPifzuh8Z4uUAfaRmFc22DfBbBt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/dpHA8CJFA9L7dpGHB8aNAASKExv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "sk", - "file_path": "/v0ozhxCawOkxQLjSgIfSQEzYPlW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1333 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/yod952W96p8v75PF400vIqFSOSf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/kZGb23spcQKOGLsRMAVwUx6Ml65.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/zMCvsqiK9fYNmJm5TXKVWg5dSXk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/eLNxn5R7xngthiRc6HoQC4dqzbF.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/lb3wLiI25tSL0wMgb0BVah8mqfx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/haeJ30YWeAdpHzAnRYTPWIojLh2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 675 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/6xORIhe6cP3iM5RYTHs7MTOH1qa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.7, - "height": 2286, - "iso_639_1": "el", - "file_path": "/6Q1wIyhCZ7xjrabMpVYoZcbtduy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/lEp6npX8GZFkwXRcZhW2uwdFwbm.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2520, - "iso_639_1": null, - "file_path": "/442RjQjsFHSymyfHGqNrlLoQDRO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1680 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/johq9iRTnVUO6D6hnmnr2clNsBt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/de3hbkpJSbxMHZiCoEODvnh4pKW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mgBXgA8jHext4KRWg84Cux5Y94L.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/iUU0NTff2E270hGqjRft5GuYaWC.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/je0GPN5R4LrtpA79dV1d6DSrqEg.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tV54RLV0gFZMNrET1ut6c4qKqks.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": null, - "file_path": "/9QEeUjjaeCxShhkuWopqITZu5Sv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6nRkGtb0vc4JygMWowhbgicOpQL.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fE5Mz76DXX5iKVWa97eWlx1vn2M.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/7wTJxIM0xh9fgYFfwoeMjBsn2XH.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/n4VyiasPj9GRos3cE4L5Hl4ovw8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "", - "file_path": "/aT8R5o65mXoDmXqfuuB0KjOGJ97.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/9XMOpCxF8IaRCgRTgYYrQcwRF4e.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/o7hgGG18rY68OCzV5D8gMNykFjk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/hUWxNb1RGK3wIdpuCBgoA2SC6qs.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/gwrFZLMPox82lsPT8MHpAYmFjw9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gyh0eECE2IqrW8GWl3KoHBfc45j.jpg", - "vote_average": 5.238, - "vote_count": 19, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kbnhvFPyXKCKLNhg1pkz6rXQ4Le.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/aqxmz3v5UNNrPIV0EshAfs15Svx.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 796, - "iso_639_1": "en", - "file_path": "/bSG2IXtBRBlvG9fbqNuwFZuBr5x.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 531 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/5C8b3o8FYtNURLCwP2a8NNnkW0w.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.665, - "height": 2388, - "iso_639_1": "en", - "file_path": "/2M8Sq8pBL24NWb27Pj2WlUkig5g.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ueO9MYIOHO7M1PiMUeX74uf8fB9.jpg", - "vote_average": 5.178, - "vote_count": 33, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tA62jpt3YjunGzmacFJn5RjHWxM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/x0naXPYoLxzTzRgwKhzAjQPngnw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/k7l3RzUnlHcrb5rULdfyG4wGmA1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/htm4SB8VAMjQXA0w7EB3vRiZUfL.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tS1ogVpl1Ic3nf9iGWiWCuNTw3g.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bKAJAg9v0DSlXsycvlbuBFYPC8o.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qXkAWMnRdWIllPQBV3LDLFQufEW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/az4CZ0EiFEMJALdFr1XTlwmLcNv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aOci1lSbO79XNO9rnMDAwivZUsM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fctEM5WEzuDY7qwSegbeRaL18uS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cpchF0VqgCn7DpCwFnggr14l0yU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gKjQqOqANE7iLIZZyXewmjDPbo5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/odrcfQfM1rC3TsSpSZWgn0ZtG0Q.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "it", - "file_path": "/9Fcvmpye4bdFR0WfErdV6ZzdEKR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1366 - }, - { - "aspect_ratio": 0.707, - "height": 1754, - "iso_639_1": "no", - "file_path": "/lRiJKqZK3c61Oyct5JDAO6pSWQR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A2QvdkzKrwsdGjTgAFrk4OZo9Tr.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1408, - "iso_639_1": "it", - "file_path": "/oEDjjx1w9Fq3H7Jtlvy8bNoYxwq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 939 - }, - { - "aspect_ratio": 0.665, - "height": 2388, - "iso_639_1": "en", - "file_path": "/sGm09gLVyICQl8lVIHpmHZAgSNq.jpg", - "vote_average": 5.172, - "vote_count": 16, - "width": 1587 - }, - { - "aspect_ratio": 0.675, - "height": 1024, - "iso_639_1": "it", - "file_path": "/9bswDakCEGxrUY03qvnJTaUne8V.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 691 - }, - { - "aspect_ratio": 0.673, - "height": 1292, - "iso_639_1": "zh", - "file_path": "/uqkMhWU1xIjOuWUhNATpNeKxU5S.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 870 - }, - { - "aspect_ratio": 0.674, - "height": 1282, - "iso_639_1": "zh", - "file_path": "/8lxU8ETnq4Mi6ke208Hp1F1gUPP.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 1349, - "iso_639_1": "it", - "file_path": "/cSQr4gq8nyvNjzDfIeI03aoSVRg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "zh", - "file_path": "/58H1OMOfXurRJyGeqjRjraY5FfZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2ToSrhtDkGZTlnnZ5Svfx04a4Y3.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/6EKCJUgiAE1wonjvYmVHPCu8U0k.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/7pOafueZIz0G97iIYwXlpFXpZ8O.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/mPwPrrYWiEuKMEr7avrvfVBfOlt.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ylXw5GfuwiFVPxbUkgD7GT7tyTj.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1740, - "iso_639_1": "en", - "file_path": "/mFLQy1u2LwyfVAPesNiRtjJFnRF.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1160 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/a6CLofscFB9yRBXxFwB4if9WBUL.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zfoLIXEz6dE6EJFuy1VovAUR2xu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/f3Qgt4zK8jJUnSAzvfeO5Cp3xx0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2FYP1dIM8iJEaNXPHYqv0Ks71hn.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oOrEEyMPGHeTn0OfkHgJxf1l7k0.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sQXstRBKFjZtDrFlzRZp4V8AHei.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/pqFtHjFF7AEUdWVz9HsDZy2x4RR.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/j4evBypZdfv8I9qSrdoQIO1Zcs8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1387 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/1q37OqG7W3ErCFAShuAkmDml4bS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "en", - "file_path": "/sTMGSF3bSrcbfApsClZfrxW6dKo.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/qxnJNJM3dqE4IlQjm4ULBrUmGNF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "zh", - "file_path": "/dmYcSi9xa5wbFJGEBhwK5RqVG3W.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cFz3o9dDNwS8FX4GSfZXUjnG13T.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yqM72utx6Ogb9rl7GmbBtzJepzA.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/yaPTZkEMQ9pNnBZ6lqklkSohJxe.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/rODatRCuUztQXNLwJkDgbAOdV8l.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8IaFOjiqfmNj1hs4ie1BYGx7fwq.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jtrrCyEhZ8lK8yCtQoHNUUg7LM.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1387 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "en", - "file_path": "/sE1kWKNv0lGFjeVGvOtuzivYkLK.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9eHcQV4m9nfnS7gwYgAeffb1yh5.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1024, - "iso_639_1": "en", - "file_path": "/4GBDpwI2dhZXcyiReCOrKkMVMtz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 683 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6N0eDUohMYdkVnkpqhkSO3BCxLz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/zT5z66SkONxHlGF1D0wceKqsRdg.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/xty9gCJGG77bJIxM7SjIJBNJe8l.jpg", - "vote_average": 4.938, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "he", - "file_path": "/3QVEbcnYr53OYJzcAEZM12EbZXU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "ja", - "file_path": "/9uVzIlUL258BzVJe2AwY5dqoVXn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jVxAbrAwCC7IDUcmm7gjwtZkz54.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awdCYp8k9oZy1dILw4Q5zBM0OGv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/smuWsT9G7f2YRHhVgzfRdxmPHT7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ubc8VRD9A4qPeeMZx6k0FhyzHw7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6Q3qra4jQ0Ad2fouFi3fjY4SziS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2wefZz5kyZZIa5KIhHmincW0u9U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/bmKSgJJBszkUBRFQtFuVwwebsvw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zOl5YlIvBQcJqeYm0PCmglLJ9gs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/3OWy7mPbSBjic3IIwryew5G3gTX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2288, - "iso_639_1": "cs", - "file_path": "/zItOPvcXLAYkTjtBBQPLblSjHSv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1525 - }, - { - "aspect_ratio": 0.72, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gXHotQYzlNcZVPN9Z6iU6CrFB4U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/vrUC67ds2ZrC4J5bdcfi6FI8gZa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "en", - "file_path": "/jWZMIMvYtrFoYqSwKwJQ18ztkn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/xxgt5RoUT6q43CbVkhzKKCIaa7c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fXNzXU7eq5ubB7vaaf2qy8HcWJz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/At3FwaovrFt3hQtGQz1OmHIr60R.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zLVqwz0u3quPkGEDgKfDuI2x2sb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/oXE4JxcgGGv8Q8dmkufzEG0p80T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jivTMvMrBdUKIx17hBx4QtWXOLB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vh8UJQCPZPfm86Bwz84ArjowsLz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aUjelSp8zgbEqjd6bmQd1PYDIiA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4ztVUeKqKXFSbOiALb9ewqcd7I4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/h8aJuEeQQGcWw3SDr1pMPFHIhrp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/e96B2faGGLRjIKvHFkKDfYyzmEq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aGhZ7qE4D8hnrIQSk95iWV2ySdo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/h8R1oxYprhvdU3mDiTQRhxkeFGh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sV2m0gQ41RV0fINLTedVWSOmPx8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tTC8z7tIyPjdgD9AfGiMmzEkCes.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kmfB0n0ctxG466InOGOUv8cH3SI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fQkYtDXKChOrITcZn8bLiV2ujqn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8kRshyI5rfic9EaZrpX14UZz0kz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qfrKO1GuepEhOYiE1dm7YmyHN6n.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/eVxCs4YUfJfraBlYRyiYbLWujjM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/fnEmISMiUYs82UdAiHybuUa6Tib.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.666, - "height": 1697, - "iso_639_1": "sk", - "file_path": "/gIrGAqLlbgAeAweBFOnhkSymBiS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1131 - }, - { - "aspect_ratio": 0.667, - "height": 2381, - "iso_639_1": "cs", - "file_path": "/57HJgQt6GQVaTStMxWNv1tyJQ9o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/iIYheSZ3DlcA6khMXGFBAq3TOdJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1458, - "iso_639_1": "th", - "file_path": "/nN66LLvLbpeWX4uuPZvoFJkTJxo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/9mFRC5BtPIKQvJh7UMeNeZzXdIv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/sx2AEfoGPPnBG9mvwpYFWdITkFV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2131, - "iso_639_1": "de", - "file_path": "/9YFxjmWV3rGTcZCcOVOPOQjMo4v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1421 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/zFXmcflIw0JIXvH5wWihTcyOEUW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1034, - "iso_639_1": "fr", - "file_path": "/tlGegIwQCgSqJEm5FVVFTQXQQ3q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 689 - }, - { - "aspect_ratio": 0.675, - "height": 1778, - "iso_639_1": "es", - "file_path": "/3mTNVlIKVGNXXh4BHnPpysIuPEn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 2690, - "iso_639_1": "fa", - "file_path": "/nsBBABzi9iIifsTM9e6KF5EfFgD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1794 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "fa", - "file_path": "/vM4AEkAt0pmqKMl8UObAxHEXCoe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 2586, - "iso_639_1": "fa", - "file_path": "/fKyYi3y3SljK8keNhrDzQdYZeI8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1724 - }, - { - "aspect_ratio": 0.667, - "height": 2963, - "iso_639_1": "ko", - "file_path": "/kwLyydGLCKoNiNSvgMEsiq0Fv8o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1975 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/7wh2qJpocF4t67rPZg50KxNiNn6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.666, - "height": 1558, - "iso_639_1": "lt", - "file_path": "/npsv7Fm6uDQLJExLS2Jdv5SFN1a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1038 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/4luV7Af9djB0JLbRIFZAzsiqtHj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "ro", - "file_path": "/4ympvYV3A0MhtDTf56pHmdOQATq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/nbknhapAeJZ8IQtnfVD7Lsn43tV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/7w9EAb3BjACsJLFSvH4ODHr6Pky.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.699, - "height": 751, - "iso_639_1": "pt", - "file_path": "/yOFrxHgR9k9e3dKdkKklfDg6jzE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 525 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/7Ua2EhxbMvljj77UAZxkyxVRXve.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hXZ4gQQRinikpJTw7kpvPAx1bKe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gboTbLLqHCRVohbrkD4jFfBACol.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/d5UW94Yeqy9M48LfpNPnCdpal5x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/d9fDQKNSnRaQSTgn2KCLQ9Lx2Fh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/e8ETeIqUpxhqtKJSERwWOe2KxNU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/4PjnNfy6n45Znd4j72y8DG8FUsK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6ZJLSmytIuUmeA2sxIygroIEzoY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.675, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/sTbRa3OKgNsCdPZdDH6oOSnxBCe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 675 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/2rnSybkw4UpJFdA8Lr82GdM3TFj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/cGreSQDJBC6EjNZDH2hVxSva1s2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/68Z1wbPiByvFJdCyd6J4W9XI01Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/9pCq8l2QczBS6EHVa65YYVxFZNQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/cTTdHeNBvNnAKfjD9I6SAydMX45.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/6kQUUCg0RDDvSuqm8MOo2AApf4M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/6NNaGgD62LvqXMI5aIlb0WCJiVC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/uXhqaiYn3IBnnypl1p7oEQRLnR6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.675, - "height": 2370, - "iso_639_1": "el", - "file_path": "/mq0r74pim7mmD6iCNaXRn4jXLVo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/6jVZt2XjIggNasW7Zme4kvlnpgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/udk3gp8HnjSQqqce9TnZMGC1NOE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/aejNdvJQtX0xT8nQunHx8J0DQ1H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/brDyldQOXaqqN44W7VjDWjwSiY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/emTz9m1vYzhPKwVygCQaAhlKReM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sCizIgD5UdLdDnJJPVPjovlV3uh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/f9qIROU1QyzVRaX4Xb1NCiuzhI7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 791, - "iso_639_1": "hr", - "file_path": "/2QiThJIewGvRZIXBr9Hb8eSNADa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 550 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/efqciqATvc15pbPrVEz5JcbVo8c.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/615656.json b/examples/view-transitions/src/content/movies/615656.json deleted file mode 100644 index eb166f2d85f3..000000000000 --- a/examples/view-transitions/src/content/movies/615656.json +++ /dev/null @@ -1,3698 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/5mzr6JZbrqnqD8rCEvPhuCE5Fw2.jpg", - "belongs_to_collection": { - "id": 742536, - "name": "The Meg Collection", - "poster_path": "/rbacYOwij2bEIvO0gKUF2funWKp.jpg", - "backdrop_path": "/rNoyJmjdhgn30bVbvd8n3DJMocB.jpg" - }, - "budget": 129000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 878, "name": "Science Fiction" }, - { "id": 27, "name": "Horror" } - ], - "homepage": "https://www.themeg.movie", - "id": 615656, - "imdb_id": "tt9224104", - "original_language": "en", - "original_title": "Meg 2: The Trench", - "overview": "An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.", - "popularity": 1804.581, - "poster_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "production_companies": [ - { - "id": 56242, - "logo_path": "/1YORRYmg7hgYIgoJek8jU3cykuQ.png", - "name": "Apelles Entertainment", - "origin_country": "US" - }, - { - "id": 174, - "logo_path": "/IuAlhI9eVC9Z8UQWOIDdWRKSEJ.png", - "name": "Warner Bros. Pictures", - "origin_country": "US" - }, - { - "id": 435, - "logo_path": "/AjzK0s2w1GtLfR4hqCjVSYi0Sr8.png", - "name": "di Bonaventura Pictures", - "origin_country": "US" - }, - { - "id": 92484, - "logo_path": "/dfWwoWRp8snHjzDKO5IFkiCAUe7.png", - "name": "CMC Pictures", - "origin_country": "CN" - }, - { "id": 208093, "logo_path": null, "name": "DF Pictures", "origin_country": "" }, - { "id": 208094, "logo_path": null, "name": "Onaroll Productions", "origin_country": "" } - ], - "production_countries": [ - { "iso_3166_1": "CN", "name": "China" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-08-02", - "revenue": 384056482, - "runtime": 116, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "Back for seconds.", - "title": "Meg 2: The Trench", - "video": false, - "vote_average": 6.973, - "vote_count": 1825, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "cast_id": 5, - "character": "Jonas Taylor", - "credit_id": "5f93b1997719d751dbe9160c", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 78871, - "known_for_department": "Acting", - "name": "Wu Jing", - "original_name": "Wu Jing", - "popularity": 29.324, - "profile_path": "/pgE2SqqtbT6dNo8waDMTpYuVVCj.jpg", - "cast_id": 22, - "character": "Jiuming Zhang", - "credit_id": "62190394d14443006536aba3", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1704579, - "known_for_department": "Acting", - "name": "Shuya Sophia Cai", - "original_name": "Shuya Sophia Cai", - "popularity": 92.691, - "profile_path": "/8zzSyNhoFJQ3eRqaqIgiryoONJB.jpg", - "cast_id": 20, - "character": "Meiying", - "credit_id": "621721c367e0f7001ba6a2d6", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 177214, - "known_for_department": "Acting", - "name": "Page Kennedy", - "original_name": "Page Kennedy", - "popularity": 8.453, - "profile_path": "/hM7yB43TFtzKg8W3rW0LOceVnok.jpg", - "cast_id": 21, - "character": "DJ", - "credit_id": "621721da5be00e001b2694a0", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 78994, - "known_for_department": "Acting", - "name": "Sergio Peris-Mencheta", - "original_name": "Sergio Peris-Mencheta", - "popularity": 8.219, - "profile_path": "/uPE1n0JpbicJ5gm2fNarbsx6Nc4.jpg", - "cast_id": 28, - "character": "Montes", - "credit_id": "6300ae8cdfe31d0092042bda", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 7055, - "known_for_department": "Acting", - "name": "Sienna Guillory", - "original_name": "Sienna Guillory", - "popularity": 14.456, - "profile_path": "/rpnWJT1d61GwnG9bQoGSxWbIaL4.jpg", - "cast_id": 16, - "character": "Driscoll", - "credit_id": "6217211ba27502001b6664ca", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 7248, - "known_for_department": "Acting", - "name": "Cliff Curtis", - "original_name": "Cliff Curtis", - "popularity": 13.99, - "profile_path": "/3D6qz8vL6DWHAO3HeXeaSuwxq3s.jpg", - "cast_id": 19, - "character": "Mac", - "credit_id": "6217219326dac10042b60568", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 110930, - "known_for_department": "Acting", - "name": "Skyler Samuels", - "original_name": "Skyler Samuels", - "popularity": 20.064, - "profile_path": "/4HeEvih8dRezHnnS1Ss9L7hKsLx.jpg", - "cast_id": 17, - "character": "Jess", - "credit_id": "6217212a96670e006c2a64ef", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1977759, - "known_for_department": "Acting", - "name": "Melissanthi Mahut", - "original_name": "Melissanthi Mahut", - "popularity": 7.469, - "profile_path": "/c5Or2xsO8ni2F95RR5ImUmfLGmg.jpg", - "cast_id": 31, - "character": "Rigas", - "credit_id": "63063ac7c39266007f18bc1a", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 1503556, - "known_for_department": "Acting", - "name": "Whoopie van Raam", - "original_name": "Whoopie van Raam", - "popularity": 2.3, - "profile_path": "/hxV4Mwy9uxExVxsrRaYgQau09AW.jpg", - "cast_id": 97, - "character": "Curtis", - "credit_id": "64d1c71585090f00e79850f1", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1600494, - "known_for_department": "Acting", - "name": "Kiran Sonia Sawar", - "original_name": "Kiran Sonia Sawar", - "popularity": 2.024, - "profile_path": "/sRuFPJIW2yJTvov1cS0T9Baqb8U.jpg", - "cast_id": 91, - "character": "Sal", - "credit_id": "64c7f145cadb6b00c82ac553", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 2583691, - "known_for_department": "Acting", - "name": "Felix Mayr", - "original_name": "Felix Mayr", - "popularity": 3.577, - "profile_path": "/7UGb95MGrUkUeDZhC7M4m3EFBx0.jpg", - "cast_id": 96, - "character": "Lance", - "credit_id": "64d1c6f0549dda0139340730", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 548608, - "known_for_department": "Acting", - "name": "Guo Tao", - "original_name": "Guo Tao", - "popularity": 4.689, - "profile_path": "/s4g5lIlszWb1QxpMLO2YDNDUsMx.jpg", - "cast_id": 98, - "character": "Party Guest", - "credit_id": "64d2aea1dd926a01e731dd5b", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 137469, - "known_for_department": "Editing", - "name": "Robin Hill", - "original_name": "Robin Hill", - "popularity": 2.269, - "profile_path": "/utXs2BpYryzNPjgcZtU6hrf12xA.jpg", - "cast_id": 99, - "character": "Cargo Ship Captain", - "credit_id": "64d2aee5d100b600c5ce93de", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 1844395, - "known_for_department": "Acting", - "name": "Dai Lele", - "original_name": "Dai Lele", - "popularity": 4.653, - "profile_path": "/xaiH4RCXfG71uZHNqy8gHFjC4Tw.jpg", - "cast_id": 100, - "character": "Beautiful Tourist", - "credit_id": "64d2af9e03726400c5726389", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 1828107, - "known_for_department": "Acting", - "name": "Sui Fong Ivy Tsui", - "original_name": "Sui Fong Ivy Tsui", - "popularity": 2.039, - "profile_path": "/p0L9wNrSU0LFZsWVXFiqzB9tUMi.jpg", - "cast_id": 101, - "character": "Coco", - "credit_id": "64d2b076037264013914e0e6", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 165359, - "known_for_department": "Acting", - "name": "Stewart Alexander", - "original_name": "Stewart Alexander", - "popularity": 1.4, - "profile_path": "/najx2f4DAKt7DtQkPEyNXJURyNe.jpg", - "cast_id": 102, - "character": "Tourist Buisinessman", - "credit_id": "64d2b0b4bf31f201cd4cd569", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 97550, - "known_for_department": "Acting", - "name": "Able Wanamakok", - "original_name": "Able Wanamakok", - "popularity": 3.605, - "profile_path": "/sALxV7ZuLxsQcPfHu0mSMdjv78p.jpg", - "cast_id": 111, - "character": "Tourists' Friend", - "credit_id": "64d317ddb6c264011da0068a", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4259752, - "known_for_department": "Acting", - "name": "Xiong Jinyi", - "original_name": "Xiong Jinyi", - "popularity": 1.018, - "profile_path": null, - "cast_id": 116, - "character": "Tourists' Friend", - "credit_id": "64fa62eadb4ed610363c5b8f", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 4259754, - "known_for_department": "Acting", - "name": "Cai Jingjing", - "original_name": "Cai Jingjing", - "popularity": 0.648, - "profile_path": null, - "cast_id": 117, - "character": "Newlywed Woman", - "credit_id": "64fa63185f2b8d00e12e7319", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 4204604, - "known_for_department": "Acting", - "name": "Li Xin", - "original_name": "Li Xin", - "popularity": 0.648, - "profile_path": null, - "cast_id": 103, - "character": "Guest", - "credit_id": "64d2b12bbf31f201ccbc27a8", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 2522177, - "known_for_department": "Acting", - "name": "Kenneth Won", - "original_name": "Kenneth Won", - "popularity": 2.761, - "profile_path": "/5vhOcyQ0LgBFXHlvhoJ0IyqwGSX.jpg", - "cast_id": 110, - "character": "Club Paradise Guide", - "credit_id": "64d317c0db4ed600ffb6090a", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4259755, - "known_for_department": "Acting", - "name": "Longxi", - "original_name": "Longxi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 118, - "character": "Cute Girl on Boat", - "credit_id": "64fa634fdb4ed610363c5ba7", - "order": 22 - }, - { - "adult": false, - "gender": 2, - "id": 2494369, - "known_for_department": "Acting", - "name": "Bai Narisu", - "original_name": "Bai Narisu", - "popularity": 3.604, - "profile_path": "/nh5yrlDCJQHMEAsqHHcdhFEk2Qi.jpg", - "cast_id": 109, - "character": "Cute Guy on Boat", - "credit_id": "64d3177cd100b6011c7f25c8", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 40739, - "known_for_department": "Crew", - "name": "Matthew Stirling", - "original_name": "Matthew Stirling", - "popularity": 3.496, - "profile_path": "/eOxhalNnaj7oHof0JIPC6n8KHPK.jpg", - "cast_id": 119, - "character": "Leary Crewman", - "credit_id": "64fa6366a35c8e00e255c35b", - "order": 24 - }, - { - "adult": false, - "gender": 2, - "id": 193020, - "known_for_department": "Acting", - "name": "Richard Glover", - "original_name": "Richard Glover", - "popularity": 2.254, - "profile_path": "/iaGTaqXVZcc1JVvUOjfflL8vvvh.jpg", - "cast_id": 120, - "character": "Mercenary Pilot", - "credit_id": "64fa637effc9de0138eb658a", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 2423284, - "known_for_department": "Crew", - "name": "Billy Clements", - "original_name": "Billy Clements", - "popularity": 0.703, - "profile_path": null, - "cast_id": 104, - "character": "Mercenary", - "credit_id": "64d2b184bf31f201c94bfe3f", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 2752069, - "known_for_department": "Crew", - "name": "Jonny James", - "original_name": "Jonny James", - "popularity": 1.624, - "profile_path": "/yNLcisY7ThsxzIP0Lj54OPB9rw9.jpg", - "cast_id": 108, - "character": "Mercenary", - "credit_id": "64d31703db4ed6013957e0df", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4259756, - "known_for_department": "Acting", - "name": "Enzo di Bonaventura", - "original_name": "Enzo di Bonaventura", - "popularity": 0.6, - "profile_path": null, - "cast_id": 121, - "character": "Curious Tourist", - "credit_id": "64fa63aedc1cb4013d0df17b", - "order": 28 - }, - { - "adult": false, - "gender": 1, - "id": 28483, - "known_for_department": "Acting", - "name": "Sara Dee", - "original_name": "Sara Dee", - "popularity": 2.669, - "profile_path": "/b5YW2CBc4dvdKmVmJPCI0zYX1V2.jpg", - "cast_id": 107, - "character": "Parrot / Suit Voice (voice)", - "credit_id": "64d316dadd926a01e626e867", - "order": 29 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 976, - "known_for_department": "Acting", - "name": "Jason Statham", - "original_name": "Jason Statham", - "popularity": 118.356, - "profile_path": "/lldeQ91GwIVff43JBrpdbAAeYWj.jpg", - "credit_id": "64598c7d1b70ae01260c9b54", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2211, - "known_for_department": "Production", - "name": "Gerald R. Molen", - "original_name": "Gerald R. Molen", - "popularity": 4.65, - "profile_path": "/m1C2E9MWClm3ITzxQzUxmE1qphL.jpg", - "credit_id": "64598d7077d23b00e2f5a8e1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 5553, - "known_for_department": "Sound", - "name": "Harry Gregson-Williams", - "original_name": "Harry Gregson-Williams", - "popularity": 6.418, - "profile_path": "/xLuIAM22zCffnzPyKOSRQQYh03C.jpg", - "credit_id": "6459913c156cc700ffa78a80", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 10952, - "known_for_department": "Production", - "name": "Lorenzo di Bonaventura", - "original_name": "Lorenzo di Bonaventura", - "popularity": 1.355, - "profile_path": "/skMUk4eVV6e08mv31A48jdYpEPp.jpg", - "credit_id": "60ca91ab665408003fd1a4fe", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20516, - "known_for_department": "Writing", - "name": "Dean Georgaris", - "original_name": "Dean Georgaris", - "popularity": 4.844, - "profile_path": "/z5fxTbK7ekUO1ibwKUKlsxq0kaE.jpg", - "credit_id": "60ca917466ae4d0059c6c7fb", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 20516, - "known_for_department": "Writing", - "name": "Dean Georgaris", - "original_name": "Dean Georgaris", - "popularity": 4.844, - "profile_path": "/z5fxTbK7ekUO1ibwKUKlsxq0kaE.jpg", - "credit_id": "64fa607c5f2b8d00e12e729d", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 0, - "id": 23425, - "known_for_department": "Art", - "name": "Chris Lowe", - "original_name": "Chris Lowe", - "popularity": 0.932, - "profile_path": null, - "credit_id": "62eaaafd1bf266005da4d1d2", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 24217, - "known_for_department": "Camera", - "name": "Haris Zambarloukos", - "original_name": "Haris Zambarloukos", - "popularity": 2.435, - "profile_path": "/buBq3MDhGydmOBQvodoNA5lk0PE.jpg", - "credit_id": "6459907d3fe16000e32873cc", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 1, - "id": 53471, - "known_for_department": "Writing", - "name": "Belle Avery", - "original_name": "Belle Avery", - "popularity": 3.151, - "profile_path": "/s5RVco8H90NxipRHoHccqDJRxNM.jpg", - "credit_id": "5d2c09c7a294f042db2f5954", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 54252, - "known_for_department": "Production", - "name": "E. Bennett Walsh", - "original_name": "E. Bennett Walsh", - "popularity": 2.771, - "profile_path": null, - "credit_id": "64598d60fe077a5caadf6ade", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 59533, - "known_for_department": "Costume & Make-Up", - "name": "Lindsay Pugh", - "original_name": "Lindsay Pugh", - "popularity": 0.996, - "profile_path": null, - "credit_id": "62eaab56f1b571005e2c7f39", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 72075, - "known_for_department": "Production", - "name": "Kenneth Atchity", - "original_name": "Kenneth Atchity", - "popularity": 1.174, - "profile_path": null, - "credit_id": "60ca91c6c390c500413628bb", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 72076, - "known_for_department": "Production", - "name": "Chi-Li Wong", - "original_name": "Chi-Li Wong", - "popularity": 0.907, - "profile_path": null, - "credit_id": "60ca91b942d8a5003f7af848", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 2, - "id": 78871, - "known_for_department": "Acting", - "name": "Wu Jing", - "original_name": "Wu Jing", - "popularity": 29.324, - "profile_path": "/pgE2SqqtbT6dNo8waDMTpYuVVCj.jpg", - "credit_id": "64598d58ae384301386ac077", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 75109, - "known_for_department": "Lighting", - "name": "Dan Lowe", - "original_name": "Dan Lowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5fa172d7f0092dac9b2", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 75113, - "known_for_department": "Camera", - "name": "Luke Redgrave", - "original_name": "Luke Redgrave", - "popularity": 1.778, - "profile_path": null, - "credit_id": "6370a72221621b009ba288d8", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "60ca917f7739410040bb4494", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "64fa606d5f2b8d00fef66b4a", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "60ca918b18864b006e2eba86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "64fa607743494f013b993f2e", - "department": "Writing", - "job": "Screenstory" - }, - { - "adult": false, - "gender": 2, - "id": 137467, - "known_for_department": "Directing", - "name": "Ben Wheatley", - "original_name": "Ben Wheatley", - "popularity": 7.78, - "profile_path": "/d9MEfHUzizFSB5IdrsGxG8vYBLK.jpg", - "credit_id": "5f93805c84448e00439a82d7", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 969704, - "known_for_department": "Editing", - "name": "Jonathan Amos", - "original_name": "Jonathan Amos", - "popularity": 1.867, - "profile_path": "/p8UQ1bxUrio1xsmHR9n2zFp7Y5Y.jpg", - "credit_id": "62eaab2448333a0061eb2719", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1180713, - "known_for_department": "Production", - "name": "Randy Greenberg", - "original_name": "Randy Greenberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a35d21621b00777dbf26", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1188916, - "known_for_department": "Production", - "name": "Erik Howsam", - "original_name": "Erik Howsam", - "popularity": 2.12, - "profile_path": null, - "credit_id": "64598d683fe16001557155b6", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1189807, - "known_for_department": "Camera", - "name": "Tim Wooster", - "original_name": "Tim Wooster", - "popularity": 1.148, - "profile_path": null, - "credit_id": "6370a65802842000dcab2001", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1243035, - "known_for_department": "Writing", - "name": "Steve Alten", - "original_name": "Steve Alten", - "popularity": 1.073, - "profile_path": null, - "credit_id": "60ca9152c390c5002a021968", - "department": "Writing", - "job": "Novel" - }, - { - "adult": false, - "gender": 0, - "id": 1338262, - "known_for_department": "Directing", - "name": "Saithip Boonyasomphop", - "original_name": "Saithip Boonyasomphop", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a7721684f70083dcb307", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1408347, - "known_for_department": "Visual Effects", - "name": "Peter Bebb", - "original_name": "Peter Bebb", - "popularity": 1.987, - "profile_path": null, - "credit_id": "6459915fae384300fef53670", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1411064, - "known_for_department": "Costume & Make-Up", - "name": "Joe Hopker", - "original_name": "Joe Hopker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a3e721621b007dd9f9c0", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1434639, - "known_for_department": "Costume & Make-Up", - "name": "Catherine Heys", - "original_name": "Catherine Heys", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a3c98138310080857144", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1434643, - "known_for_department": "Crew", - "name": "Waldo Mason", - "original_name": "Waldo Mason", - "popularity": 0.895, - "profile_path": null, - "credit_id": "6370a400ca4f6700c68dd3a8", - "department": "Costume & Make-Up", - "job": "Prosthetics" - }, - { - "adult": false, - "gender": 0, - "id": 1439752, - "known_for_department": "Production", - "name": "Peter Bardsley", - "original_name": "Peter Bardsley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a75f798e0600914f0b41", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1541577, - "known_for_department": "Directing", - "name": "Mark Layton", - "original_name": "Mark Layton", - "popularity": 0.642, - "profile_path": null, - "credit_id": "6370a4610284200082797bd6", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "6370a36721621b00b49f007b", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "6370a49281383100dd36e1d5", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1635063, - "known_for_department": "Production", - "name": "Jami Chan", - "original_name": "Jami Chan", - "popularity": 1.96, - "profile_path": null, - "credit_id": "6370a42d81383100b5120771", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1647906, - "known_for_department": "Costume & Make-Up", - "name": "Atchariya Pinitsanpirom", - "original_name": "Atchariya Pinitsanpirom", - "popularity": 0.997, - "profile_path": null, - "credit_id": "6370a376ca4f6700bbbfd42a", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1706702, - "known_for_department": "Camera", - "name": "Stamos Triantafyllos", - "original_name": "Stamos Triantafyllos", - "popularity": 1.054, - "profile_path": null, - "credit_id": "6370a68621621b007dd9fabc", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 1712970, - "known_for_department": "Camera", - "name": "Ben Saffer", - "original_name": "Ben Saffer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a631813831007730b06e", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 1, - "id": 1737667, - "known_for_department": "Production", - "name": "Cate Adams", - "original_name": "Cate Adams", - "popularity": 1.002, - "profile_path": null, - "credit_id": "64598c91ae38430155ed491a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1762191, - "known_for_department": "Directing", - "name": "Anita Christy", - "original_name": "Anita Christy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a77e1684f7007736c3ed", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1775681, - "known_for_department": "Directing", - "name": "Ben Dixon", - "original_name": "Ben Dixon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a44e02842000dcab1f44", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 1, - "id": 1796987, - "known_for_department": "Crew", - "name": "Rachael Evelyn", - "original_name": "Rachael Evelyn", - "popularity": 4.261, - "profile_path": null, - "credit_id": "64cfc7ca85090f00e7974593", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1819553, - "known_for_department": "Crew", - "name": "Peter Ayriss", - "original_name": "Peter Ayriss", - "popularity": 0.818, - "profile_path": null, - "credit_id": "6370a58e21621b007dd9fa6e", - "department": "Camera", - "job": "Drone Pilot" - }, - { - "adult": false, - "gender": 2, - "id": 1824249, - "known_for_department": "Crew", - "name": "Theo Morton", - "original_name": "Theo Morton", - "popularity": 2.081, - "profile_path": "/4Tb0c4se7k6dXieFTx38kY86aB4.jpg", - "credit_id": "64cfc7b4549dda00e2dd7f87", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1966279, - "known_for_department": "Camera", - "name": "Alex Mott", - "original_name": "Alex Mott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a61aca4f6700bbbfd539", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1985337, - "known_for_department": "Camera", - "name": "Iain Thomson", - "original_name": "Iain Thomson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a69a798e0600914f0ad3", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 2010328, - "known_for_department": "Directing", - "name": "Teresa Orlando", - "original_name": "Teresa Orlando", - "popularity": 0.608, - "profile_path": null, - "credit_id": "6370a4abca4f67009b54f29f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2060688, - "known_for_department": "Costume & Make-Up", - "name": "Alice Hollingum", - "original_name": "Alice Hollingum", - "popularity": 0.996, - "profile_path": null, - "credit_id": "6370a3da028420007d729df6", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2094299, - "known_for_department": "Directing", - "name": "Mac Montero", - "original_name": "Mac Montero", - "popularity": 0.694, - "profile_path": null, - "credit_id": "6370a49d81383100b51207a0", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2358479, - "known_for_department": "Costume & Make-Up", - "name": "Roseanna Larner", - "original_name": "Roseanna Larner", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a3f00284200082797b9d", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2362143, - "known_for_department": "Production", - "name": "Catherine Xujun Ying", - "original_name": "Catherine Xujun Ying", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61fd4b26b7abb500e890618b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2383714, - "known_for_department": "Directing", - "name": "Charlie Reed", - "original_name": "Charlie Reed", - "popularity": 1.143, - "profile_path": null, - "credit_id": "6370a483ca4f6700bbbfd497", - "department": "Production", - "job": "Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2425421, - "known_for_department": "Camera", - "name": "Dean Thompson", - "original_name": "Dean Thompson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a6b581383100abf66d9c", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2650621, - "known_for_department": "Costume & Make-Up", - "name": "Sylvia Atkins", - "original_name": "Sylvia Atkins", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6370a3b921621b00777dbf4c", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2825744, - "known_for_department": "Camera", - "name": "Dominique Cheung", - "original_name": "Dominique Cheung", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5b502842000b44cc2c9", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3144882, - "known_for_department": "Crew", - "name": "Adam Kiani", - "original_name": "Adam Kiani", - "popularity": 0.98, - "profile_path": "/nQpcPSc9MSM1KCrhM4xdglk8vIl.jpg", - "credit_id": "64cfc7da4d679100acf0e0fd", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 3240958, - "known_for_department": "Lighting", - "name": "Ella Robinson", - "original_name": "Ella Robinson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a625798e0600dc3663cf", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3336546, - "known_for_department": "Camera", - "name": "Oliver Squire", - "original_name": "Oliver Squire", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a6f91684f70083dcb2c6", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 1, - "id": 3528061, - "known_for_department": "Crew", - "name": "Emma Ennis", - "original_name": "Emma Ennis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cfc7c5303c850100b13b06", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3783637, - "known_for_department": "Production", - "name": "Ariel Murray-Simmons", - "original_name": "Ariel Murray-Simmons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a47621621b007dd9fa0a", - "department": "Production", - "job": "Unit Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3783639, - "known_for_department": "Camera", - "name": "Jack Ainsworth", - "original_name": "Jack Ainsworth", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a570ca4f6700c68dd43a", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3783640, - "known_for_department": "Lighting", - "name": "Lester Ambrose", - "original_name": "Lester Ambrose", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a57a02842000b44cc2ad", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783641, - "known_for_department": "Lighting", - "name": "Paul Helm", - "original_name": "Paul Helm", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a5c6172d7f00b5fdb00b", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783642, - "known_for_department": "Crew", - "name": "John Koukouzis", - "original_name": "John Koukouzis", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5da798e0600b4d08248", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3783643, - "known_for_department": "Crew", - "name": "John Koutsoulas", - "original_name": "John Koutsoulas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5e821621b009ba28871", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3783644, - "known_for_department": "Lighting", - "name": "Sacha Kovacevic", - "original_name": "Sacha Kovacevic", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a5f1813831008b7c952f", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3783645, - "known_for_department": "Camera", - "name": "Piran John Miller", - "original_name": "Piran John Miller", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a60a21621b009112ed0c", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3783647, - "known_for_department": "Camera", - "name": "Aphisit 'Pep' Wansri", - "original_name": "Aphisit 'Pep' Wansri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a640ca4f67008211dbb8", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3783648, - "known_for_department": "Camera", - "name": "Beth Trinder", - "original_name": "Beth Trinder", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a675798e0600aa9fdabb", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3783651, - "known_for_department": "Camera", - "name": "Nisa Rizvi", - "original_name": "Nisa Rizvi", - "popularity": 0.98, - "profile_path": null, - "credit_id": "6370a70c798e0600914f0b16", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3783652, - "known_for_department": "Costume & Make-Up", - "name": "Zachary Winnington", - "original_name": "Zachary Winnington", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a74e1684f7008072eff1", - "department": "Costume & Make-Up", - "job": "Costume Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3783653, - "known_for_department": "Production", - "name": "Tom Beltrandi", - "original_name": "Tom Beltrandi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6370a767ca4f67007fc316bd", - "department": "Production", - "job": "Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 4052337, - "known_for_department": "Production", - "name": "Ruigang Li", - "original_name": "Ruigang Li", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64598d36ae38430155ed4987", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 4239323, - "known_for_department": "Production", - "name": "Kelly Lee", - "original_name": "Kelly Lee", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64ecb63006f984012d740281", - "department": "Production", - "job": "Production Manager" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Make a Stand", - "key": "94NhiwjR6fw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-20T15:00:13.000Z", - "id": "650b4f05d6c30000edeffe4d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Up from the Depths: Even More Beasts", - "key": "YrFdtxb0CGI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-09-14T15:00:33.000Z", - "id": "650b4f3cd6c300010e05c6af" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get the Fuel", - "key": "1ay8gcgEtEg", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-04T15:00:01.000Z", - "id": "650b4f2e501cf200e3c0f6b1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Octopus Attack", - "key": "gkgxWJwY6Xw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-09-02T15:00:25.000Z", - "id": "650b4f18aede591aae7a8769" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Extended Preview", - "key": "NMSilJCThnc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-25T14:00:16.000Z", - "id": "64e91ebe06f98400ca55792a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Good Luck", - "key": "A_EOMsqb4gM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-08-24T15:00:07.000Z", - "id": "64e81330e894a6013bb019ca" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Do you suffer from the following?", - "key": "Xh8lOrObhHs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-04T20:53:00.000Z", - "id": "64e3a2f465e0a20139ffacea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big-A$$ Sharks", - "key": "ujp_0ws6nk0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-04T20:31:29.000Z", - "id": "64d34a0adb4ed600e2b4dd5b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "BTS from the Depths", - "key": "BU3e8cTsojc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-03T21:00:06.000Z", - "id": "64cc85e7706e5600c9a0fc47" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Just a few of my fav local spots", - "key": "cPFlnJRp9N8", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-02T21:07:21.000Z", - "id": "64e3a2c4d7cd06013cbde8a9" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meg on the Thames", - "key": "9h9QnLuucPY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-08-01T14:50:58.000Z", - "id": "64ca6a990b74e900ea8bc35a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Exist", - "key": "xxyJRvI41k0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:11:35.000Z", - "id": "64afd0eee24b935b32b045f2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fun Island", - "key": "27_JHKTmdZE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:07:37.000Z", - "id": "64afd0bae24b935b30a2d706" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transmission", - "key": "LptU9LtDSLA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-07T11:01:04.000Z", - "id": "64afd1376a3448012ce803c4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Magic", - "key": "sWWeN8iEO88", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T14:26:20.000Z", - "id": "646826782bcf6700fe5ff377" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "dG91B3hHyY4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-08T22:00:15.000Z", - "id": "64597c0d156cc7013ff1b9d8" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/8pjWz2lt29KyVGoq1mXYu6Br7dE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5mzr6JZbrqnqD8rCEvPhuCE5Fw2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zI8JZ05S9Lm1D2TuZcovlUD0ptk.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "tr", - "file_path": "/gD7UURPGoxm2eGFC0MnUPIe8Ncv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qlxy8yo5bcgUw2KAmmojUKp4rHd.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/2Icjry0xdRSNxrtsBR1F47b9r3u.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/na442LUrWkQMxSmrQUPtaw3T3nn.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/2iNUodSKykQ4VtvtG280ntNy7hB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zN41DPmPhwmgJjHwezALdrdvD0h.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1000, - "iso_639_1": null, - "file_path": "/Aukfa8dk6B5OxuelbaPBOJYXaBI.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1778 - }, - { - "aspect_ratio": 1.777, - "height": 1002, - "iso_639_1": "en", - "file_path": "/nmei2VyCb7RYWPgH9ayvwMGXYww.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1781 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bFtAauBTA5HDOHShO2IMKbfXl1p.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8Ki2QD1mXL3o5ZxHtvzik3vagZ6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "zh", - "file_path": "/tyjAXIGkvm9sJPWfqXiNTrLqZUW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/z0BfLSi2Jg1wPeDk9h12epcjptY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/ewD0nCanirwfSFqkXJufCSwlX0m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/vfPlTtNuhGamTdAHHlgS87MLHis.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/pYFNA112h90QtMDN5MGouTioL8M.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5qAFgeWIuSb1VrZlGdSuHb5xe2T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": "en", - "file_path": "/wMHPWMjR4UcGDU054NIhP74lbHt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": "en", - "file_path": "/oEJl2d0OdI9uURU3maAQHqj7P1h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "de", - "file_path": "/q8uQiOcv2qxLMIeN4wXUD3Zlt1Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/r72aBhg84kKmZa7JFuPGHMcwvOs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zr5mHLqTRleb3SAdYMnGovtsnaa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bcSJyVoPSy99CTSnJA42o0tDsWx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tLiHIPv9VD37T5YzIzRXG7zNAZm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/l9SvYXAehH0d5KfnyucwwjsPiGv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/1o3Ehk8ai9eF1cKrk2O4XWhU2vW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ufGo2PFAImwUBJ4UXZxo0aEJnAO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/1QDFJNTNBNNDNHaiLiVI2APO2py.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/tw67OlJ4tesaAw8R9i0Dq196KM3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - } - ], - "logos": [ - { - "aspect_ratio": 3.237, - "height": 1297, - "iso_639_1": "en", - "file_path": "/xjzbSDGtnxnr2E1eXWTEcmVbuZR.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 4198 - }, - { - "aspect_ratio": 3.237, - "height": 1297, - "iso_639_1": "en", - "file_path": "/xfu52018OAqF3J6Oc7HQBYbOot6.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 4198 - }, - { - "aspect_ratio": 2.374, - "height": 262, - "iso_639_1": "zh", - "file_path": "/8McBYDpHUe1VeTnGkuFLIuCUOQh.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 622 - }, - { - "aspect_ratio": 3.233, - "height": 993, - "iso_639_1": "en", - "file_path": "/wpv8lP3C5WEqov4niCwUInx8Crw.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 3210 - }, - { - "aspect_ratio": 5.948, - "height": 231, - "iso_639_1": "es", - "file_path": "/kcq8o2YAHpBCpUBxJfNlTSTAQXC.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1374 - }, - { - "aspect_ratio": 1.66, - "height": 482, - "iso_639_1": "en", - "file_path": "/pmG7DR97uoEUSSimCp7QKkwlaUM.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 3.281, - "height": 278, - "iso_639_1": "zh", - "file_path": "/sH4CoECml3AkpIoaT47Zt5Hatea.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 912 - }, - { - "aspect_ratio": 6.199, - "height": 1324, - "iso_639_1": "fr", - "file_path": "/cPvgXX7TSqE28UOMrxr3n2Af1Gj.png", - "vote_average": 0, - "vote_count": 0, - "width": 8207 - }, - { - "aspect_ratio": 2.941, - "height": 358, - "iso_639_1": "ja", - "file_path": "/pd3vvTXjpcBm8H67XIEKNxHl06W.png", - "vote_average": 0, - "vote_count": 0, - "width": 1053 - }, - { - "aspect_ratio": 7.841, - "height": 145, - "iso_639_1": "ja", - "file_path": "/r2HkEQ5InHi4bHsZB2DJEAQ1SmJ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1137 - }, - { - "aspect_ratio": 2.949, - "height": 335, - "iso_639_1": "uk", - "file_path": "/aYx8P1U2Bw4us61UjxJ1sj1eB3L.png", - "vote_average": 0, - "vote_count": 0, - "width": 988 - }, - { - "aspect_ratio": 9.405, - "height": 84, - "iso_639_1": "pt", - "file_path": "/q2AoGpTGKHojsWWVKRLRueQ3bSz.png", - "vote_average": 0, - "vote_count": 0, - "width": 790 - }, - { - "aspect_ratio": 2.271, - "height": 266, - "iso_639_1": "th", - "file_path": "/eb8JUYztUnoJIyu4vRyScVqFXjd.png", - "vote_average": 0, - "vote_count": 0, - "width": 604 - }, - { - "aspect_ratio": 9.17, - "height": 165, - "iso_639_1": "pt", - "file_path": "/xIuXZ3xf2tMLZO6rOIAL2v08O2Q.png", - "vote_average": 0, - "vote_count": 0, - "width": 1513 - }, - { - "aspect_ratio": 2.357, - "height": 384, - "iso_639_1": "fr", - "file_path": "/3AH57JjgfckxqOtPBnFegEFDU9O.png", - "vote_average": 0, - "vote_count": 0, - "width": 905 - }, - { - "aspect_ratio": 2.465, - "height": 482, - "iso_639_1": "cn", - "file_path": "/yokqfy88mWhrQIAWCWAzn1RWOTq.png", - "vote_average": 0, - "vote_count": 0, - "width": 1188 - }, - { - "aspect_ratio": 4.537, - "height": 175, - "iso_639_1": "it", - "file_path": "/g2YU8gjujXVjcCYSX6gHl6AdP6n.png", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 3.242, - "height": 289, - "iso_639_1": "da", - "file_path": "/aTVTbBKJr4G0sxyOGbG4OJsMCGD.png", - "vote_average": 0, - "vote_count": 0, - "width": 937 - }, - { - "aspect_ratio": 3.329, - "height": 1261, - "iso_639_1": "de", - "file_path": "/eQZ8X7IrhssokUmRAdm2hcrTBp7.png", - "vote_average": 0, - "vote_count": 0, - "width": 4198 - }, - { - "aspect_ratio": 3.158, - "height": 247, - "iso_639_1": "cs", - "file_path": "/PBMXlcA3VGSAHneSxjulgLTFiS.png", - "vote_average": 0, - "vote_count": 0, - "width": 780 - }, - { - "aspect_ratio": 6.078, - "height": 129, - "iso_639_1": "es", - "file_path": "/bGAFzl73lUxkEEiQqNxkYFt3VH8.png", - "vote_average": 0, - "vote_count": 0, - "width": 784 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/vbvcvIxXywM6rP1ayoz3AxE83oe.jpg", - "vote_average": 5.834, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ww0197yqAzP0ih3Er0n18A7D5Zt.jpg", - "vote_average": 5.834, - "vote_count": 9, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qGMp7R7FsUoKrdqIEOcbkA7HFPC.jpg", - "vote_average": 5.586, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xJUZhfB5tRuSn6Ml0kUf5yB1HZh.jpg", - "vote_average": 5.58, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "vote_average": 5.576, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mBgynPDplmo5JTY9VfGqY35OjDu.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/FQHtuf2zc8suMFE28RyvFt3FJN.jpg", - "vote_average": 5.518, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/f5JwC0zhq0nnPQfOeS8CvdRCIHR.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/drCySAAAvegq1vQRGRqPKN9f00w.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/ijhxSWwgRwXRFVErL0hEkhxNffL.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/6x2CNod5RB3NkXSBJ81Y8KNy4g3.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/vizye6NJMLFgpI8Wmq4HOebGr9z.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "sk", - "file_path": "/esyIcTl8VtbO9M8GxUAWfTlhlcK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/jsRUTry6NZYJBqMsHE4qbTPjRJe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1482, - "iso_639_1": "no", - "file_path": "/5GIedinx4ZpD0jA3mOOCjLEjbud.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/eE8jl6frI7B5PU9WlrnUl9kzfhU.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/cbAHK6Vrt0GClMRUxH8TsgC2JqL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/kVIhaNn8zTDVcMFiwthvjLjCJMt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/tPnya8bGupPR7dYxlh5w4z3P6pW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/asZc9KUBzy3qv8b9d342TwsOt01.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/8eNRxRW6tMKrZkl43uc8gAymwZl.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lE3H5u1EBf8xi8piZMlMGE9zrvW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "tr", - "file_path": "/kgtWaWkERAZfSjIc5KsOHMDuJAV.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1500 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/rzei3gGmHheQJwSZTLmHLtmyIXn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/pIMtEFU5yvkB6CEAaf00I1cX0dv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/fcpv5neSUmsfMRbXpJbIxOYn3J6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/aXLb2YWXEammySGBh0m6aELmaNq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/tGH4MBvmlDyvIvARIYVseRvsZba.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": null, - "file_path": "/h8ppMBasVqCsiUzceOCZkMnaqRa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wajeIrwoZPUOIGiCe5WzapNAOO9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/klGKGITBYYyTiHrph1VDSgGULOR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2373, - "iso_639_1": "ru", - "file_path": "/nAS7A7ZdUDQLHXsvg2XAX3IUkml.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1582 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/g9AomE2SCzrKCV52qxK1XAWS6Pe.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/hirlrqHvpgCqyDu3hWtewLmgyXX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uvYbo4eF3q6W06kpx5iDwC4jt6N.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nJPlTkgnWUWTzGfDm3DH0yWZoM5.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/iNweHQSpBqiV4oTueFUGzhBqzO9.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/j9IXzr6XI9rfOwElXj44yxyOBJb.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/akOVih5TGPjk84o1hGGXZ0P2tT0.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/32Ha4NQCZw4BVvEXtWIlbL2IDt9.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vHe1KoxALidSMGHX5xeQI63ygYB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/bCSjyOEAJyGflreEANuvEqdkz4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1536 - }, - { - "aspect_ratio": 0.666, - "height": 2362, - "iso_639_1": "fr", - "file_path": "/yFZWkuNqKZwGwbT3VR1r03Lv2dj.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1574 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/wWtASrfOnfrxr3HAV5IfSNSLikQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/sd0PhLR56F9MuxWtXOdZ4nVKOIB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/b3pYeNq5URt7IADL9xlOadyMv73.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "de", - "file_path": "/1L67OvSOMLmAsbwm9dlBZV7aICK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5eIseU5VC9WgBQ9yZ22cZZYibzq.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1599, - "iso_639_1": "da", - "file_path": "/jTxs5dFRjiBpVgle4bInDNpRCEW.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1066 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/9JD7LylO0NzZgPh7ED2mOK8PIst.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/zDZcHcKOv1RVfmjVAgRHPv4bmkJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1389, - "iso_639_1": "zh", - "file_path": "/nSzjqEGupvtQPb2fwccrhKFwioy.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 926 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "es", - "file_path": "/dus1hCux82PoctaeQRAEadeps6S.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mkMRoepr0sNMksQBlc4HSbye7fR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "en", - "file_path": "/kGMe8oqY2m8tWRFp3jjglmL7jnY.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/tsQKdg5BXEKEJEheXnl6wi76VAr.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/ptzU9YUSNBPobBThWsHBsDHWM5H.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/lHDSrLqoNSzaOEbyfD6bBBJyzSE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 720 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": null, - "file_path": "/xUOirVrtDM7BBvxT0dKwxMCiC6P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1973 - }, - { - "aspect_ratio": 0.675, - "height": 2961, - "iso_639_1": "zh", - "file_path": "/hKuJiyf98MraXRqU6T0mHpZ0WY1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.664, - "height": 1507, - "iso_639_1": "en", - "file_path": "/3VEBy0YOa9LRfTXJTedltsc2CrY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1229, - "iso_639_1": "en", - "file_path": "/jhknTb0IgkNO5iXGAjOqU5aZ4Vq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 819 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/gebDN3WqUlZq4edFWS5duYa0A0i.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/wx2phyq7O4PuuPqoajCvXV2ojMd.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/A3AK4IuLXQbqiif3Wrt28qNvkee.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/rwObGayWm7T5e8pXwu2tKDub9xa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/7B3TyfBDQaspsniueJrP4LCIe3S.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/xcQLbyGO1rkVkBL8jD786xuG0C.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.704, - "height": 800, - "iso_639_1": "zh", - "file_path": "/chPfFYeUvef4FEr8K8VTl9XQ7uO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 563 - }, - { - "aspect_ratio": 0.705, - "height": 2200, - "iso_639_1": "zh", - "file_path": "/2W0WMKNQmWez1gMq4933jx5aAWQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1551 - }, - { - "aspect_ratio": 0.714, - "height": 2800, - "iso_639_1": "zh", - "file_path": "/gyaO3lkeDjMMLgiw8dlRss4rbPo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.715, - "height": 1791, - "iso_639_1": "zh", - "file_path": "/stO4vPTDUGDBseMeP8s25Qsvg1T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.714, - "height": 2803, - "iso_639_1": "zh", - "file_path": "/21Bdu846xUqUXuS3WztIpILMOCv.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1599, - "iso_639_1": "zh", - "file_path": "/1kr1xPaeqh5SmgEffHlIZUBbLo6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 1896, - "iso_639_1": "zh", - "file_path": "/iSfC5G3PllG0AAwFR3Ou7kfWmN1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4iMP9bYlsleqP5zhffi8eu1AI2w.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/meuqVoP2hVT6UH80EWdk622pgRl.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1978 - }, - { - "aspect_ratio": 0.675, - "height": 1494, - "iso_639_1": "zh", - "file_path": "/gwZb5AQEDUaKnlC7gQASlNT0OZB.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1008 - }, - { - "aspect_ratio": 0.673, - "height": 1548, - "iso_639_1": "zh", - "file_path": "/4SfwR59uGgfu1CCyBhCgxcj4kSX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1042 - }, - { - "aspect_ratio": 0.666, - "height": 1400, - "iso_639_1": "de", - "file_path": "/Am5TE1HPdIFAGBv4CDISxHooHoX.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 933 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/gn1NYCe3LBGFaeWJv2uFlUSFrdZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 1425, - "iso_639_1": "en", - "file_path": "/yIRyyC7EXqOHAJjM29wAIbH1nQY.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 950 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/akddLfWDirkkvYrAHHof7YfT54P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yphyMQn6KEUa4LoCYIuYZjv2M3O.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7ZtGxAzYsEZZTUSfRtdDA4JCdi6.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 900, - "iso_639_1": "es", - "file_path": "/v3nbEzUG85BftyF4RMuEM57qz2W.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b4nrJALNRBbhOVKnEpjEl8t2DGG.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/p7DU8UIiHorYmlOp0n93gL239Id.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.665, - "height": 907, - "iso_639_1": "en", - "file_path": "/cft9sAu8HMqDd6zCnjXkypLFyCB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 603 - }, - { - "aspect_ratio": 0.667, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/j79Gw6KuRH8ccRynKC0bxdrurya.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1028 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hImi8ZPWU1WCZ3IyPA6E9hP6rQp.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/30MUcuI6p4toyfCV349wZleqG5d.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1542, - "iso_639_1": "zh", - "file_path": "/aeIxFfOU5REwtlScG07OE63zTsn.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1028 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/58qcnS8anwKGO3EivX0ibwrDIg2.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/qmOzB9kbWuBNdwlaXRklI3MJNs6.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6K7P4RtBZmNKkituNdDuarFMh9R.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": "en", - "file_path": "/AkTPs7pjonA2CPUcWNfWeQQ5mO9.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1973 - }, - { - "aspect_ratio": 0.714, - "height": 2800, - "iso_639_1": "zh", - "file_path": "/aF780NvbKO2RlcwIIOJyLy7nhWW.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/hB49j2oRWXyXsyojS0KbWIXmgRR.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1280, - "iso_639_1": "es", - "file_path": "/zKDz6a5M8ZpR2N2eipvBiZ5kjNz.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 864 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5SJmaEinrSLHMlT6lzmO58oek5a.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/vk6QMiHuk7ZWnougpsvR6w0in8A.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/nLlWgbXRoP26kLw4rzSvxH9XQVq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1750, - "iso_639_1": "it", - "file_path": "/55gBDwzQ2RVGfxJWfPJbSxZbB4B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1167 - }, - { - "aspect_ratio": 0.75, - "height": 1936, - "iso_639_1": "fr", - "file_path": "/mlSq344dvpCiHuPlBKiiueoVh3K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1452 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/VXKh9BpS7DvHJxs52zq8TQvlvA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/qaPMIlHoBaVjonMiCEkfgMZCM4d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/tQDC98AU2FujN3P46EQBu8Aljdd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/7zr4bHsNyAJT7O4QZvfEpNX13pP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/q4DpwvNpvJwmBdnzRnfeyKZwJSV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/fvwrE0PYgDNdp2kiF1VyEMQ003J.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/cvNmnBwo2xm469ob7g2qs9lbGHF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/lIGRFRsLHpth2krhBHZqQbTryX6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/sP18xI8dgyHFNuT3nW1emgORiDq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "hr", - "file_path": "/2NDvjbgCtWS9w6wvvvcsUrhjljO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 779, - "iso_639_1": "lo", - "file_path": "/hjoGcUw0xZ0dZnBvpsCvXCuHNIf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 526 - }, - { - "aspect_ratio": 0.675, - "height": 779, - "iso_639_1": "lo", - "file_path": "/6gEdl9HKAnZKIs4DzAanNS1O5p2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 526 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/9IpdtKypexds5DiHi5X2LRu3jkF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/2B0KdfQkZpbBUB7218MLTOVJsrY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1061 - }, - { - "aspect_ratio": 0.658, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/2ZbOsuUT8Tx0XNEFpSaXRgoKyjm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1973 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/zsCvHakRgDxyLoKTiv0k7PGWn0C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3D5PjyHgWKwknbxfs3cdcGGK8Rt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/7b2CXmMMg1gRrkhuh6dJkPp3ZbS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/zmIxjB8mFyTM3giCSzb5Avz2e8Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/rDd4vRnzUe5dIqktjZPfDSY1Nz6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/vETHi47k8Mezeh5CeRWPswhTGG7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/5PTGfi3AJE8ZyhFPrW0jctNmJJx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/90tguiPKVGUhoH6x0VoG7d0OXG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.714, - "height": 1512, - "iso_639_1": "zh", - "file_path": "/jo4oWN549ItW9QBGgQcrapZalR2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/ndXK3L29oqXDJr3VLFfiyl0JyJx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/pGGAUUtccOKDHh8uM0oQdFRpNRu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.708, - "height": 1808, - "iso_639_1": "zh", - "file_path": "/pxFFKi7KrgvWJhUqUptdsieK6ee.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/iNvNBWO9i6U1F8NvUywTbVW1ylg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1351, - "iso_639_1": "cn", - "file_path": "/pISUQ0dO99b9bzaaeSg27ehF2MR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/UiHfPg7y2IM9fhW7jj4zLXajnp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/4U0YTs4W94hMkZU1jrnHKFcyVtK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/ttKRMDn0tZDotaQkXrhlIqWQY5b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/a871BYZZM61nyhFvA0kZmqWfp0L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.715, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/7scnBCgd0hDYEAnHfqC7I0tQ39l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/mmkGWBD1Mv6xu5nrV029NQLBV8C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "da", - "file_path": "/a7xxpHZw1U5KZMsDFADnP0iH8Yk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.665, - "height": 2663, - "iso_639_1": "ar", - "file_path": "/uzqfE6NIkQHxv28HipFgiBQ4M3K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1772 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/sTEPkhEZVKP6Aptr4Mh6EEIU1Zb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/93sxESg8clryX5uSJlTwr8b2TN8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/w6p9mHnkYOuptesKqp8uUeMS5X7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.678, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/kRkwN8ZKnaJG8SxHgJEhE8F7FKT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 976 - }, - { - "aspect_ratio": 0.676, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/rCFfSeFXundeOPWPYFa30QSqROK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 974 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/6RosqzuWdmxRfzHgzPGRA2cVBJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/kFKkSUutiKaOWxo9fC2f6YkytDi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.675, - "height": 2560, - "iso_639_1": "pt", - "file_path": "/o982XhfTlDmo1wNDPets6k7iOmb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1728 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/riNGm71Ep5bJjREtNj0HP97vN60.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/7FkqcvUlH6MO366lULlFRkw8Sfr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/555EoTkCaaaoO4W53UlfkDvF8Zq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 838 - }, - { - "aspect_ratio": 0.699, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/fuLS6g3p8IhXoZrDYSJi7pRbcCl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/6h3LZcgIyFgyLd7N2MDQhKIqDKZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/nd2iDzOYXiITdAgG6w7x9WQ6nWG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/dARsjcAJfqtXP37iOPUS6b3XgP3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/p7ga9sFSBbADHIF1tVBbP7XG28o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/seHvZ6MgkmuVgwYywIGL1OnUjsU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6IVwcMLWNPjrW6HxOH7I18Yckrw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/fVUWFCkolrAEDI2zLIpFN5a1X9U.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/cseSZhP9yQbFpKLJFW6mWE4P8cF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/kEsyJehbFzyhijbEFCg5LIN3s4O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/ogQixCaGN8G8qh0neZPK6miic75.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/s8cZdLneQOzx73Lvx4wVtcpZV1h.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "pt", - "file_path": "/cIyiqeaA5feQMBb2U0YDorEwky3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/t0OqTD9KuKH62LEzNRqK8Vlzy9Q.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/8Wxj1NmjjxhjIoFXf30VdsVsikL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/czQu3oW94oj9QsVjsgZAEifjIoY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 2920, - "iso_639_1": "it", - "file_path": "/wJY3xxU3J0ScBXNV9HY5TqAZqyi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.685, - "height": 1460, - "iso_639_1": "it", - "file_path": "/crAoiYpoL24WmWoz5EuYwnmStQh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/dhOYsGWs4L8jB4b0Uz0V1VnqNcq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/72nA1qxZNTf3Wqg66TeIKIOIN4X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/667538.json b/examples/view-transitions/src/content/movies/667538.json deleted file mode 100644 index dd5ee34028b8..000000000000 --- a/examples/view-transitions/src/content/movies/667538.json +++ /dev/null @@ -1,4848 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "belongs_to_collection": { - "id": 939352, - "name": "Transformers: Rise of the Beasts Collection", - "poster_path": "/6sAdtwp5LV0jlNVhefTMEsjP7py.jpg", - "backdrop_path": null - }, - "budget": 195000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 12, "name": "Adventure" }, - { "id": 878, "name": "Science Fiction" } - ], - "homepage": "https://www.transformersmovie.com", - "id": 667538, - "imdb_id": "tt5090568", - "original_language": "en", - "original_title": "Transformers: Rise of the Beasts", - "overview": "When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.", - "popularity": 650.789, - "poster_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "production_companies": [ - { - "id": 82819, - "logo_path": "/gXfFl9pRPaoaq14jybEn1pHeldr.png", - "name": "Skydance", - "origin_country": "US" - }, - { - "id": 4, - "logo_path": "/gz66EfNoYPqHTYI4q9UEN4CbHRc.png", - "name": "Paramount", - "origin_country": "US" - }, - { - "id": 435, - "logo_path": "/AjzK0s2w1GtLfR4hqCjVSYi0Sr8.png", - "name": "di Bonaventura Pictures", - "origin_country": "US" - }, - { "id": 6734, "logo_path": null, "name": "Bay Films", "origin_country": "US" }, - { - "id": 114732, - "logo_path": "/tNCbisMxO5mX2X2bOQxHHQZVYnT.png", - "name": "New Republic Pictures", - "origin_country": "US" - }, - { - "id": 38831, - "logo_path": null, - "name": "Tom DeSanto/Don Murphy Production", - "origin_country": "" - }, - { - "id": 2598, - "logo_path": "/i42C5gRq7XqlG4S9vkchuJZfrBn.png", - "name": "Hasbro", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-06", - "revenue": 429800000, - "runtime": 127, - "spoken_languages": [ - { "english_name": "Quechua", "iso_639_1": "qu", "name": "" }, - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "Unite or fall.", - "title": "Transformers: Rise of the Beasts", - "video": false, - "vote_average": 7.5, - "vote_count": 3191, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1560244, - "known_for_department": "Acting", - "name": "Anthony Ramos", - "original_name": "Anthony Ramos", - "popularity": 14.962, - "profile_path": "/2Stnm8PQI7xHkVwINb4MhS7LOuR.jpg", - "cast_id": 6, - "character": "Noah Diaz", - "credit_id": "60662146e1ad790029066453", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1676520, - "known_for_department": "Acting", - "name": "Dominique Fishback", - "original_name": "Dominique Fishback", - "popularity": 6.947, - "profile_path": "/zduC0PM7xKzFX4F7DH8CCt5gt6O.jpg", - "cast_id": 7, - "character": "Elena Wallace", - "credit_id": "608b0e363852020040ff410d", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 19540, - "known_for_department": "Acting", - "name": "Peter Cullen", - "original_name": "Peter Cullen", - "popularity": 9.887, - "profile_path": "/9Snf4fBUkk5MrAjqtNtgZRJYJbj.jpg", - "cast_id": 10, - "character": "Optimus Prime (voice)", - "credit_id": "60d25b2b07165000738d3a34", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 2372, - "known_for_department": "Acting", - "name": "Ron Perlman", - "original_name": "Ron Perlman", - "popularity": 35.184, - "profile_path": "/9riPBfsWpzEzh2y9ucxTW22iakI.jpg", - "cast_id": 11, - "character": "Optimus Primal (voice)", - "credit_id": "60d9fd440b731600456062e0", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 22970, - "known_for_department": "Acting", - "name": "Peter Dinklage", - "original_name": "Peter Dinklage", - "popularity": 18.048, - "profile_path": "/9CAd7wr8QZyIN0E7nm8v1B6WkGn.jpg", - "cast_id": 59, - "character": "Scourge (voice)", - "credit_id": "6388e6840398ab007f8be4f4", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1620, - "known_for_department": "Acting", - "name": "Michelle Yeoh", - "original_name": "Michelle Yeoh", - "popularity": 35.837, - "profile_path": "/6oxvfyrrM3YmhgFZSqc8ESqPZoC.jpg", - "cast_id": 40, - "character": "Airazor (voice)", - "credit_id": "6345fb88d6c300007f5f9653", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 1427948, - "known_for_department": "Acting", - "name": "Pete Davidson", - "original_name": "Pete Davidson", - "popularity": 18.103, - "profile_path": "/mSlLMk45CUgMGT1o7Pkh9zYaLxK.jpg", - "cast_id": 41, - "character": "Mirage (voice)", - "credit_id": "6345fb9407e2810082f15336", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1700631, - "known_for_department": "Acting", - "name": "Liza Koshy", - "original_name": "Liza Koshy", - "popularity": 5.287, - "profile_path": "/67PtOsPiLTvyFtRtJ1pK23oJICc.jpg", - "cast_id": 60, - "character": "Arcee (voice)", - "credit_id": "6388e6941b157d00b7888461", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 2627590, - "known_for_department": "Acting", - "name": "Cristo Fernández", - "original_name": "Cristo Fernández", - "popularity": 3.805, - "profile_path": "/pRuCGBvmLgtALcEUcFemzTDYad1.jpg", - "cast_id": 63, - "character": "Wheeljack (voice)", - "credit_id": "6388e790a410c800c887a6a1", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 141610, - "known_for_department": "Acting", - "name": "Luna Lauren Velez", - "original_name": "Luna Lauren Velez", - "popularity": 12.112, - "profile_path": "/98BvmTJCZHx0jPv0oNcv04Jkmfb.jpg", - "cast_id": 17, - "character": "Breanna Diaz", - "credit_id": "612ee010eb79c200446713ee", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 2940842, - "known_for_department": "Acting", - "name": "Dean Scott Vazquez", - "original_name": "Dean Scott Vazquez", - "popularity": 28.224, - "profile_path": "/bo4Cmv8rXIYSskIbMFbrcIedFnG.jpg", - "cast_id": 68, - "character": "Kris Diaz", - "credit_id": "644b9867336e01054173538e", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 3002060, - "known_for_department": "Acting", - "name": "Tobe Nwigwe", - "original_name": "Tobe Nwigwe", - "popularity": 0.998, - "profile_path": "/52Zu83S7T9tkzQeQuLyLJgUoXVa.jpg", - "cast_id": 14, - "character": "Reek", - "credit_id": "60ecdb57706e560045c05a3b", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 1890500, - "known_for_department": "Acting", - "name": "Sarah Stiles", - "original_name": "Sarah Stiles", - "popularity": 3.245, - "profile_path": "/t1OuHZmz9GlbFu7bfOUg3nzIki6.jpg", - "cast_id": 109, - "character": "Jillian", - "credit_id": "64826db5e272600107210afc", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 90461, - "known_for_department": "Acting", - "name": "Leni Parker", - "original_name": "Leni Parker", - "popularity": 2.886, - "profile_path": "/rmOCAuZxYO50EmRxNDdrS3JB6f1.jpg", - "cast_id": 113, - "character": "Ms. Greene", - "credit_id": "64826e6cc9dbf9011dfad449", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2069637, - "known_for_department": "Acting", - "name": "Frank Marrs", - "original_name": "Frank Marrs", - "popularity": 1.008, - "profile_path": "/6uEP6rv08fuX0vgyEot9FAuY60L.jpg", - "cast_id": 112, - "character": "Receptionist", - "credit_id": "64826e4ec9dbf900e3fe7b3b", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 237, - "known_for_department": "Acting", - "name": "Aidan Devine", - "original_name": "Aidan Devine", - "popularity": 3.858, - "profile_path": "/3qrUCw73cAN0923x5jCxAiiSaJE.jpg", - "cast_id": 110, - "character": "Bishop", - "credit_id": "64826dcec9dbf900c5708b9b", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 2567003, - "known_for_department": "Acting", - "name": "Kerwin Jackson", - "original_name": "Kerwin Jackson", - "popularity": 0.6, - "profile_path": null, - "cast_id": 114, - "character": "Hotel Security Guard", - "credit_id": "6486a4fac0348b00aed510b6", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 59613, - "known_for_department": "Crew", - "name": "Mike Chute", - "original_name": "Mike Chute", - "popularity": 5.436, - "profile_path": "/i1zw8nmh7pWHj3KbrVb2GI5ZY2F.jpg", - "cast_id": 115, - "character": "NYC Police Officer", - "credit_id": "6486a50be272600147baadcd", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1890932, - "known_for_department": "Crew", - "name": "Tyler Hall", - "original_name": "Tyler Hall", - "popularity": 1.202, - "profile_path": "/lN0FFCcqLTAKMv9uyWYR2o1OPRl.jpg", - "cast_id": 116, - "character": "NYC Police Officer", - "credit_id": "6486a51d028f14013b867899", - "order": 18 - }, - { - "adult": false, - "gender": 2, - "id": 937792, - "known_for_department": "Acting", - "name": "Sean Tucker", - "original_name": "Sean Tucker", - "popularity": 2.274, - "profile_path": "/45OP1d88I1Gsr57kRv7Q1u3HbW8.jpg", - "cast_id": 117, - "character": "Bridge Security Guard", - "credit_id": "6486a52899259c00ff0f83d6", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 1199754, - "known_for_department": "Acting", - "name": "Jay Farrar", - "original_name": "Jay Farrar", - "popularity": 1.4, - "profile_path": null, - "cast_id": 118, - "character": "Museum Guard", - "credit_id": "6486a539bf31f25054b6b1c4", - "order": 20 - }, - { - "adult": false, - "gender": 2, - "id": 4103472, - "known_for_department": "Acting", - "name": "Lucas Huarancca", - "original_name": "Lucas Huarancca", - "popularity": 0.6, - "profile_path": null, - "cast_id": 111, - "character": "Amaru", - "credit_id": "64826e1ce375c000e24e293b", - "order": 21 - }, - { - "adult": false, - "gender": 2, - "id": 2131852, - "known_for_department": "Acting", - "name": "Amiel Cayo", - "original_name": "Amiel Cayo", - "popularity": 0.6, - "profile_path": "/AbkBl3JoWlSbWtpsFqQI7ypTpAe.jpg", - "cast_id": 119, - "character": "Amaru's Son", - "credit_id": "6486a579bf31f250569c5e7f", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4107906, - "known_for_department": "Acting", - "name": "Santusa Cutipa", - "original_name": "Santusa Cutipa", - "popularity": 0.6, - "profile_path": null, - "cast_id": 120, - "character": "Amaru's Wife", - "credit_id": "6486a58cbf31f2505f3f5eb2", - "order": 23 - }, - { - "adult": false, - "gender": 0, - "id": 4107907, - "known_for_department": "Acting", - "name": "Yesenia Inquillay", - "original_name": "Yesenia Inquillay", - "popularity": 0.6, - "profile_path": null, - "cast_id": 121, - "character": "Amaru's Granddaughter", - "credit_id": "6486a5a2bf31f25055a1c086", - "order": 24 - }, - { - "adult": false, - "gender": 0, - "id": 4107908, - "known_for_department": "Acting", - "name": "Sumac T'Ika", - "original_name": "Sumac T'Ika", - "popularity": 0.6, - "profile_path": null, - "cast_id": 122, - "character": "Amaru's Granddaughter", - "credit_id": "6486a5aee375c000c528aafe", - "order": 25 - }, - { - "adult": false, - "gender": 0, - "id": 4107909, - "known_for_department": "Acting", - "name": "Josue Sallo", - "original_name": "Josue Sallo", - "popularity": 0.6, - "profile_path": null, - "cast_id": 123, - "character": "Amaru's Grandson", - "credit_id": "6486a5bae375c000ff494d5f", - "order": 26 - }, - { - "adult": false, - "gender": 0, - "id": 4107910, - "known_for_department": "Acting", - "name": "Mellissa Alvarez", - "original_name": "Mellissa Alvarez", - "popularity": 0.6, - "profile_path": null, - "cast_id": 124, - "character": "Amaru's Daughter-In-Law", - "credit_id": "6486a5ca99259c00accd948a", - "order": 27 - }, - { - "adult": false, - "gender": 0, - "id": 4107911, - "known_for_department": "Acting", - "name": "Gloria Cusi", - "original_name": "Gloria Cusi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 125, - "character": "Amaru's Relative", - "credit_id": "6486a5d2e375c00139c1041e", - "order": 28 - }, - { - "adult": false, - "gender": 2, - "id": 50217, - "known_for_department": "Acting", - "name": "Michael Kelly", - "original_name": "Michael Kelly", - "popularity": 14.82, - "profile_path": "/8V6RKWbbx8lyt3Xxz9B1OAPvHRt.jpg", - "cast_id": 71, - "character": "Agent Burke", - "credit_id": "6472c80195665800a8d821c5", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 1070318, - "known_for_department": "Acting", - "name": "Jason D. Avalos", - "original_name": "Jason D. Avalos", - "popularity": 0.762, - "profile_path": null, - "cast_id": 126, - "character": "Security Guard", - "credit_id": "6486a5eae375c00139c1043d", - "order": 30 - }, - { - "adult": false, - "gender": 1, - "id": 197819, - "known_for_department": "Acting", - "name": "Lesley Stahl", - "original_name": "Lesley Stahl", - "popularity": 1.95, - "profile_path": "/m0vTn5aGk0bw3BNm29wpJHvPpAA.jpg", - "cast_id": 127, - "character": "Lesley Stahl", - "credit_id": "6486a600e375c000ff494d87", - "order": 31 - }, - { - "adult": false, - "gender": 2, - "id": 31531, - "known_for_department": "Acting", - "name": "John DiMaggio", - "original_name": "John DiMaggio", - "popularity": 11.864, - "profile_path": "/awmyFwU6ErFJbGFFzhBYZ9AQn8m.jpg", - "cast_id": 61, - "character": "Transit / Stratosphere (voice)", - "credit_id": "6388e7530398ab007c887aff", - "order": 32 - }, - { - "adult": false, - "gender": 2, - "id": 164614, - "known_for_department": "Acting", - "name": "David Sobolov", - "original_name": "David Sobolov", - "popularity": 5.897, - "profile_path": "/eOBHvvlfQQ4b4120YJ2c2C7anKR.jpg", - "cast_id": 62, - "character": "Rhinox / Battletrap / Apelinq (voice)", - "credit_id": "6388e7800398ab007c887b08", - "order": 33 - }, - { - "adult": false, - "gender": 1, - "id": 1518933, - "known_for_department": "Acting", - "name": "Michaela Jaé Rodriguez", - "original_name": "Michaela Jaé Rodriguez", - "popularity": 5.317, - "profile_path": "/ow7NJkG2ClrHdg13cN8uVvXmESf.jpg", - "cast_id": 64, - "character": "Nightbird (voice)", - "credit_id": "6388e7b3229ae2158118b5e8", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 91671, - "known_for_department": "Acting", - "name": "Colman Domingo", - "original_name": "Colman Domingo", - "popularity": 7.57, - "profile_path": "/2tu6T9ugnf82qIMGVKWSb0dvvq5.jpg", - "cast_id": 69, - "character": "Unicron (voice)", - "credit_id": "644c7ff4596a91054d583299", - "order": 35 - }, - { - "adult": false, - "gender": 2, - "id": 105875, - "known_for_department": "Acting", - "name": "Tongayi Chirisa", - "original_name": "Tongayi Chirisa", - "popularity": 5.488, - "profile_path": "/iNUnPz0fcz2kGYZ5lhkXo042iAl.jpg", - "cast_id": 67, - "character": "Cheetor (voice)", - "credit_id": "644b9829726fb1054a06107d", - "order": 36 - }, - { - "adult": false, - "gender": 2, - "id": 1517706, - "known_for_department": "Acting", - "name": "Luke Jones", - "original_name": "Luke Jones", - "popularity": 2.46, - "profile_path": "/cwwKbw74j5W2MQse64keCl7eGIi.jpg", - "cast_id": 128, - "character": "Additional Voice (voice)", - "credit_id": "6486a766028f1400e4b22021", - "order": 37 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 488, - "known_for_department": "Directing", - "name": "Steven Spielberg", - "original_name": "Steven Spielberg", - "popularity": 26.915, - "profile_path": "/tZxcg19YQ3e8fJ0pOs7hjlnmmr6.jpg", - "credit_id": "6154561967dcc90043e3757a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 15841, - "known_for_department": "Editing", - "name": "William Goldenberg", - "original_name": "William Goldenberg", - "popularity": 5.496, - "profile_path": "/eOgoea8HbZt2TfLn0tDNI1TepSN.jpg", - "credit_id": "647ea96eccde0400de90496b", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 865, - "known_for_department": "Production", - "name": "Michael Bay", - "original_name": "Michael Bay", - "popularity": 18.657, - "profile_path": "/8I9H9IKROECFEn7usvyChbRMhbI.jpg", - "credit_id": "6346230c699fb70081dc5b31", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3183, - "known_for_department": "Production", - "name": "Don Murphy", - "original_name": "Don Murphy", - "popularity": 1.602, - "profile_path": "/xX9mLKLbsnYhdRMrdpK2ULJIe0s.jpg", - "credit_id": "6388e9fb1b157d009718bc43", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 3964, - "known_for_department": "Art", - "name": "Patrick Tatopoulos", - "original_name": "Patrick Tatopoulos", - "popularity": 1.552, - "profile_path": "/6tkcPHANqVx7sXTXKR8knw87h06.jpg", - "credit_id": "615456ade8a3e10043033ca6", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 6870, - "known_for_department": "Production", - "name": "Duncan Henderson", - "original_name": "Duncan Henderson", - "popularity": 1.967, - "profile_path": null, - "credit_id": "634622eb07e2810082f16f35", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 10952, - "known_for_department": "Production", - "name": "Lorenzo di Bonaventura", - "original_name": "Lorenzo di Bonaventura", - "popularity": 1.355, - "profile_path": "/skMUk4eVV6e08mv31A48jdYpEPp.jpg", - "credit_id": "5fb33b71ec4552003efa9198", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 9271, - "known_for_department": "Art", - "name": "Michele Laliberte", - "original_name": "Michele Laliberte", - "popularity": 0.796, - "profile_path": null, - "credit_id": "647ea9ebcf4b8b01419092b4", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 9776, - "known_for_department": "Production", - "name": "Chantal Feghali", - "original_name": "Chantal Feghali", - "popularity": 2.201, - "profile_path": null, - "credit_id": "6154580fe8a3e10043033e91", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 13245, - "known_for_department": "Editing", - "name": "Joel Negron", - "original_name": "Joel Negron", - "popularity": 0.928, - "profile_path": null, - "credit_id": "647ea977caef2d00df8a04e9", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 17598, - "known_for_department": "Camera", - "name": "Enrique Chediak", - "original_name": "Enrique Chediak", - "popularity": 1.226, - "profile_path": null, - "credit_id": "612edf01fac5020026fce2e2", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 10994, - "known_for_department": "Production", - "name": "Tom DeSanto", - "original_name": "Tom DeSanto", - "popularity": 4.872, - "profile_path": null, - "credit_id": "6388e9f1d388ae007f5821ff", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 24308, - "known_for_department": "Production", - "name": "Brian Goldner", - "original_name": "Brian Goldner", - "popularity": 0.931, - "profile_path": null, - "credit_id": "61545674e18b97008c9759e4", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 24309, - "known_for_department": "Production", - "name": "Mark Vahradian", - "original_name": "Mark Vahradian", - "popularity": 2.94, - "profile_path": "/soKYRPi4hYTnVABGkAGCRGnU87J.jpg", - "credit_id": "6154560ddd731b0042a5fcca", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 20208, - "known_for_department": "Production", - "name": "Brad Fischer", - "original_name": "Brad Fischer", - "popularity": 1.768, - "profile_path": "/xJbGB0pDWKc4tniAQpFxhL7xLyT.jpg", - "credit_id": "6154568afe6c18008b4680a2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 20227, - "known_for_department": "Sound", - "name": "Felix Andrew", - "original_name": "Felix Andrew", - "popularity": 0.979, - "profile_path": null, - "credit_id": "647eaba893828e00a765dea2", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 29018, - "known_for_department": "Production", - "name": "Dana Goldberg", - "original_name": "Dana Goldberg", - "popularity": 2.745, - "profile_path": null, - "credit_id": "6154567ffe6c180062a9705a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 56737, - "known_for_department": "Production", - "name": "Don Granger", - "original_name": "Don Granger", - "popularity": 2.25, - "profile_path": "/ilhrUzybaDqaZOiaw1M8dzkZ0ZF.jpg", - "credit_id": "61545668fe6c1800428e0a94", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57049, - "known_for_department": "Production", - "name": "Brian Oliver", - "original_name": "Brian Oliver", - "popularity": 0.926, - "profile_path": "/jjRoepjAT6nDzNEglANnM9ppPxa.jpg", - "credit_id": "6154564ddd731b008b8bf77b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 58433, - "known_for_department": "Production", - "name": "David Ellison", - "original_name": "David Ellison", - "popularity": 3.597, - "profile_path": "/jOhjFZWW2KqsOzm4IiE71FHmcIf.jpg", - "credit_id": "6154569743d9b100294b088f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "5e2f8fdcac8e6b0015bd5c86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 74569, - "known_for_department": "Writing", - "name": "Joby Harold", - "original_name": "Joby Harold", - "popularity": 2.237, - "profile_path": "/q3jMKt9f93fZwJHVQoov0hFAFwJ.jpg", - "credit_id": "634623bfcf62cd007eae2392", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 112947, - "known_for_department": "Writing", - "name": "Erich Hoeber", - "original_name": "Erich Hoeber", - "popularity": 2.262, - "profile_path": "/iIV4kJKeaOth7n7iYVMOl2DQ3lw.jpg", - "credit_id": "634623a7f3b49a007c955918", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 112948, - "known_for_department": "Writing", - "name": "Jon Hoeber", - "original_name": "Jon Hoeber", - "popularity": 2.708, - "profile_path": null, - "credit_id": "634623acd55c3d007a1acb8a", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 1, - "id": 1097215, - "known_for_department": "Crew", - "name": "Vaia Zaganas", - "original_name": "Vaia Zaganas", - "popularity": 1.174, - "profile_path": "/hrILpV8bSEe1BYPNkN4mRai8mJW.jpg", - "credit_id": "636df3a981383100dd361001", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1193446, - "known_for_department": "Art", - "name": "Anthony Leonardi III", - "original_name": "Anthony Leonardi III", - "popularity": 0.818, - "profile_path": null, - "credit_id": "647eaab393828e0133791e3f", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 1, - "id": 1269034, - "known_for_department": "Crew", - "name": "Jen Weissenberg", - "original_name": "Jen Weissenberg", - "popularity": 1.81, - "profile_path": "/eldqpfXTxspQmIr7LQ2qqnWwPYs.jpg", - "credit_id": "636df3c8d7fbda00e7b750be", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 1326399, - "known_for_department": "Art", - "name": "Louis Dandonneau", - "original_name": "Louis Dandonneau", - "popularity": 0.668, - "profile_path": null, - "credit_id": "647eaa19ccde0400c13aad03", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1327222, - "known_for_department": "Art", - "name": "Philippe Lord", - "original_name": "Philippe Lord", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6154571ed1ca2a0042646d04", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1378695, - "known_for_department": "Sound", - "name": "Erik Aadahl", - "original_name": "Erik Aadahl", - "popularity": 1.4, - "profile_path": "/Ny1Ru6rlJFGmIB1vhbP9ENZsqo.jpg", - "credit_id": "647eab9a0fb39800fb0d017b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1378695, - "known_for_department": "Sound", - "name": "Erik Aadahl", - "original_name": "Erik Aadahl", - "popularity": 1.4, - "profile_path": "/Ny1Ru6rlJFGmIB1vhbP9ENZsqo.jpg", - "credit_id": "647eab94ccde0400fbcee21b", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1384359, - "known_for_department": "Art", - "name": "Félix Larivière-Charron", - "original_name": "Félix Larivière-Charron", - "popularity": 1.208, - "profile_path": null, - "credit_id": "647ea9fdcf4b8b01419092be", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 1, - "id": 1384360, - "known_for_department": "Art", - "name": "Ann Smart", - "original_name": "Ann Smart", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6154572add731b006201d390", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1398122, - "known_for_department": "Acting", - "name": "Gui DaSilva-Greene", - "original_name": "Gui DaSilva-Greene", - "popularity": 1.637, - "profile_path": "/8scb1cYtbaGsrlVJ7szgIBjiuXE.jpg", - "credit_id": "64cfb6d4d9f4a603bafac9bb", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 1, - "id": 1402019, - "known_for_department": "Costume & Make-Up", - "name": "Colleen Quinton", - "original_name": "Colleen Quinton", - "popularity": 0.84, - "profile_path": null, - "credit_id": "6154574643d9b10043997e54", - "department": "Costume & Make-Up", - "job": "Makeup Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1425353, - "known_for_department": "Art", - "name": "Mathieu Giguère", - "original_name": "Mathieu Giguère", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6154570de18b9700628ef275", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1445475, - "known_for_department": "Art", - "name": "Arthur Jongewaard", - "original_name": "Arthur Jongewaard", - "popularity": 1, - "profile_path": null, - "credit_id": "647ea9e193828e011625f13f", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 2, - "id": 1510496, - "known_for_department": "Acting", - "name": "Rodney Alexandre", - "original_name": "Rodney Alexandre", - "popularity": 1.645, - "profile_path": "/2yWvyUvq4dNEamZPjpTCWNYR9jo.jpg", - "credit_id": "636df34021621b00b49e1e8d", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1538204, - "known_for_department": "Production", - "name": "Wittney Horton", - "original_name": "Wittney Horton", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9810fb39800a7a0106d", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1551545, - "known_for_department": "Directing", - "name": "Steven Caple Jr.", - "original_name": "Steven Caple Jr.", - "popularity": 2.757, - "profile_path": "/aU8p958QyhfV2jurc3L5pn7sN6L.jpg", - "credit_id": "5fb33ac6d55e4d003cd58727", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1631516, - "known_for_department": "Production", - "name": "Cliff Lanning", - "original_name": "Cliff Lanning", - "popularity": 2.262, - "profile_path": "/fMbBthNyuTtB2bayJHSrmrWIR0G.jpg", - "credit_id": "647eaaa80fb39800de68a44b", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1635225, - "known_for_department": "Crew", - "name": "Alvin Zalamea", - "original_name": "Alvin Zalamea", - "popularity": 1.164, - "profile_path": null, - "credit_id": "636df392d7fbda00bb8f8259", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 1640991, - "known_for_department": "Art", - "name": "Brent David Mannon", - "original_name": "Brent David Mannon", - "popularity": 1.38, - "profile_path": null, - "credit_id": "647eaa22ccde0401355c3995", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1663700, - "known_for_department": "Sound", - "name": "Jongnic Bontemps", - "original_name": "Jongnic Bontemps", - "popularity": 0.884, - "profile_path": null, - "credit_id": "646d29ae9661fc0157366504", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 0, - "id": 1731667, - "known_for_department": "Costume & Make-Up", - "name": "Ciara Whaley", - "original_name": "Ciara Whaley", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61545735af58cb0044e29991", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 1, - "id": 1810161, - "known_for_department": "Art", - "name": "Marie-Soleil Dénommé", - "original_name": "Marie-Soleil Dénommé", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9d6caef2d00df8a0514", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1867396, - "known_for_department": "Art", - "name": "Georges Samuel", - "original_name": "Georges Samuel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab3b93828e00f9d8d398", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 2, - "id": 1890965, - "known_for_department": "Art", - "name": "Frédéric Berthiaume", - "original_name": "Frédéric Berthiaume", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9a30e29a22be293a8e6", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1929030, - "known_for_department": "Art", - "name": "Radia Slaimi", - "original_name": "Radia Slaimi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab7bcaef2d00fce6ffb2", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1938584, - "known_for_department": "Crew", - "name": "Nathalie Legault", - "original_name": "Nathalie Legault", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea93e0e29a22be3284621", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1981111, - "known_for_department": "Art", - "name": "Dennis Ogle", - "original_name": "Dennis Ogle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab2c0fb39801355a903d", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 2121799, - "known_for_department": "Art", - "name": "Manuel Charbonneau", - "original_name": "Manuel Charbonneau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaaf993828e0133791e5a", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 2224819, - "known_for_department": "Crew", - "name": "Nitasha Bhambree", - "original_name": "Nitasha Bhambree", - "popularity": 0.682, - "profile_path": null, - "credit_id": "636df3511684f700c4ea414a", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2252524, - "known_for_department": "Directing", - "name": "Geneviéve Duguay", - "original_name": "Geneviéve Duguay", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa720fb39800de68a42d", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 2295472, - "known_for_department": "Crew", - "name": "Adam Winlove-Smith", - "original_name": "Adam Winlove-Smith", - "popularity": 0.6, - "profile_path": "/5zdDvfKOBiCP0i4kurhz4wvfgym.jpg", - "credit_id": "636df3b61684f70083dbcf63", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2300589, - "known_for_department": "Crew", - "name": "Stephannie Hawkins", - "original_name": "Stephannie Hawkins", - "popularity": 9.934, - "profile_path": "/tXsJfDknfeB4lt1LbVw0hAqxHHb.jpg", - "credit_id": "636df311d7fbda00ca8ba8df", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 2300590, - "known_for_department": "Crew", - "name": "E. Nova Zatzman", - "original_name": "E. Nova Zatzman", - "popularity": 1.041, - "profile_path": "/4wNYheN7WXrp1nR4ugwr5vwZwt3.jpg", - "credit_id": "636df36d1684f700ab805ddf", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 2, - "id": 2389963, - "known_for_department": "Art", - "name": "Simon Théberge", - "original_name": "Simon Théberge", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab850e29a22be08e643f", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 1, - "id": 2431754, - "known_for_department": "Art", - "name": "Ève Boulonne", - "original_name": "Ève Boulonne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9bbccde0400c13aacd5", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 2435602, - "known_for_department": "Art", - "name": "Travis Nunnally", - "original_name": "Travis Nunnally", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab210e29a22bdfece642", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 1, - "id": 2560300, - "known_for_department": "Crew", - "name": "Vanessa Zamarripa", - "original_name": "Vanessa Zamarripa", - "popularity": 2.538, - "profile_path": "/wxGSsJ53bQPVOG3JRjlCSVrxHPs.jpg", - "credit_id": "636df37cd7fbda0088757c04", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2561259, - "known_for_department": "Costume & Make-Up", - "name": "Eli Girard", - "original_name": "Eli Girard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea933caef2d00df8a04c6", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2615718, - "known_for_department": "Art", - "name": "Michael Nallan", - "original_name": "Michael Nallan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa2dcf4b8b00a878f11c", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 2806442, - "known_for_department": "Art", - "name": "Shoko Kambara", - "original_name": "Shoko Kambara", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab100e29a22bdfece636", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2998872, - "known_for_department": "Production", - "name": "Valerii An", - "original_name": "Valerii An", - "popularity": 1.4, - "profile_path": null, - "credit_id": "615455eae8a3e10062205c5a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3005590, - "known_for_department": "Art", - "name": "Eduardo Santibanez", - "original_name": "Eduardo Santibanez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eab47ccde0400de904a35", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 3072850, - "known_for_department": "Writing", - "name": "Darnell Metayer", - "original_name": "Darnell Metayer", - "popularity": 0.711, - "profile_path": null, - "credit_id": "63462393cdf2e6007ad2a2c0", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 3072852, - "known_for_department": "Writing", - "name": "Josh Peters", - "original_name": "Josh Peters", - "popularity": 0.98, - "profile_path": null, - "credit_id": "634623a0f621b20079f98b95", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 3128690, - "known_for_department": "Costume & Make-Up", - "name": "Frédéric Bélanger", - "original_name": "Frédéric Bélanger", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea905ccde0400c13aac83", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 1, - "id": 3158816, - "known_for_department": "Art", - "name": "Caroline Davignon", - "original_name": "Caroline Davignon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9c6caef2d00fce6ff02", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3231077, - "known_for_department": "Art", - "name": "Clothilde Caillé-Levesque", - "original_name": "Clothilde Caillé-Levesque", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaaefccde040118aae629", - "department": "Art", - "job": "Set Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3527987, - "known_for_department": "Crew", - "name": "Kye Walstrom", - "original_name": "Kye Walstrom", - "popularity": 0.6, - "profile_path": null, - "credit_id": "636df3d721621b007dd9348c", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3743667, - "known_for_department": "Directing", - "name": "Esteban Sánchez", - "original_name": "Esteban Sánchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaadccf4b8b00c3d3996f", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3987675, - "known_for_department": "Directing", - "name": "James Madigan", - "original_name": "James Madigan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaac6caef2d00c29bb41b", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 4099165, - "known_for_department": "Costume & Make-Up", - "name": "Melissa Puch", - "original_name": "Melissa Puch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea94993828e00dcde3a42", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 4099166, - "known_for_department": "Costume & Make-Up", - "name": "Soraya Qadi", - "original_name": "Soraya Qadi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647ea9550e29a22be1f0ec91", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 4099171, - "known_for_department": "Directing", - "name": "Clara Haddad", - "original_name": "Clara Haddad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaa9793828e00a765de39", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4099175, - "known_for_department": "Art", - "name": "Dale Byrns", - "original_name": "Dale Byrns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "647eaae7caef2d01362c99b2", - "department": "Art", - "job": "Set Designer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Behind The Scenes With Anthony Ramos & Peter Dinklage", - "key": "2-u1H4DEoNI", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-07-18T15:00:01.000Z", - "id": "64c0d134097c49011d828dc5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meeting Mirage Clip", - "key": "OW1mU4vBBEU", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-11T16:41:43.000Z", - "id": "64ad87a5e24b9300e32874d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "VIVID Sydney Drone Show", - "key": "tnXIcwd221g", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-19T12:27:36.000Z", - "id": "6491546642bf01011e75368e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Don't miss \"the best Transformers movie yet.\"", - "key": "DMTufSkyx6E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-16T01:00:05.000Z", - "id": "648d83f62f8d090100a9e1b1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "'Mirage Makes A Promise' Clip", - "key": "ghNLISP-ke8", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-15T23:15:02.000Z", - "id": "6490164c2f8d0900ad35d000" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Experience the brand new Transformers Movie", - "key": "zJyF9r09Gu4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-14T04:42:59.000Z", - "id": "64897eb6e375c000acc7845a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hilarious Interview with Anthony Ramos, Dominique Fishback, and Toby Nwigwe", - "key": "qRFewQKMlZM", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-13T10:11:13.000Z", - "id": "648c564826346200ca194810" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transformers x Boston Dynamics | Spot Becomes an Honorary Autobot", - "key": "sWxdei61tR8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-09T23:30:02.000Z", - "id": "648973bce2726001072469bd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Legends On Legends", - "key": "aTPKdtSwvpQ", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-09T16:40:46.000Z", - "id": "648d831542bf0100c7fb209a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A new era has begun", - "key": "cAopdJX4H-o", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-09T02:06:15.000Z", - "id": "64896fe6e375c00139c25450" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Beast Mode\" Promo", - "key": "BPAOEtUvtFA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-07T19:15:01.000Z", - "id": "6480fe31bf31f20100331f36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Voices of Transformers Featurette", - "key": "s1K4Qy-UKRA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-07T19:00:24.000Z", - "id": "6480fe82e2726000afc0c213" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Final Trailer", - "key": "ZtuFgnxQMrA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-06T16:08:29.000Z", - "id": "648050e8e375c0011c7de2dc" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the Maximals Featurette", - "key": "orqLnSmC0V4", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-05T15:07:27.000Z", - "id": "6480510b6476540143331bec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Autobots and Maximals join forces", - "key": "TnrlEf7e25g", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-02T01:00:18.000Z", - "id": "647ad67ce323f301275171d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "The Legacy of Optimus Prime Featurette", - "key": "9hGW2aLE1ZU", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T19:11:30.000Z", - "id": "647c39220e29a200a660c259" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Fresh New Sound Featurette", - "key": "Yz8rZ8gmFRM", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-06-01T14:16:27.000Z", - "id": "647c39f7e323f300e524e1da" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Transformers is back and better than ever", - "key": "EAs8AmQUwrA", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-01T01:00:04.000Z", - "id": "647ad675e323f30148166609" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Prepare to face the Terrorcons", - "key": "srjEfwIjlKM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-31T01:00:23.000Z", - "id": "647ad66e0e29a20116ac91d1" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Caple's New Vision Featurette", - "key": "ISfvlDlPR_Y", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-30T16:00:17.000Z", - "id": "64774e6f00508a00bfcbf738" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "A new era begins", - "key": "PgP1SNzQdpU", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T04:23:10.000Z", - "id": "647ad65a93828e0116242f80" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Meet the Autobots\" Clip", - "key": "nr3RRWPXbhM", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-25T23:35:07.000Z", - "id": "6472aa3f5cd16e00f9af00ec" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Filming in Peru", - "key": "rRe_gQYoRTs", - "site": "YouTube", - "size": 1080, - "type": "Behind the Scenes", - "official": true, - "published_at": "2023-05-25T13:00:21.000Z", - "id": "6472aa36a199a60116c7341f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Let the battle begin. Get tickets now.", - "key": "yonWH8gJdFY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-25T02:00:21.000Z", - "id": "6472dd51a199a600f9427e6e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Car Talk - Who's Your Favorite Transformer?", - "key": "mTS1VrqEFiY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-24T17:29:49.000Z", - "id": "6472aa195cd16e0133e19837" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Car Talk with Anthony Ramos", - "key": "lJBWqWKIeLc", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-23T17:44:51.000Z", - "id": "6472aa125cd16e00dc3da2ea" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Join the team. Get tickets now.", - "key": "NH-lpPldGwc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-23T03:00:16.000Z", - "id": "6472cb0f9408ec0100257b26" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Is Your Car a Transformer?", - "key": "pJN-XBzpwlE", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-23T00:30:11.000Z", - "id": "6472aa069408ec011f2bb16a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Car Chase\" Clip", - "key": "5CNQEutg-bQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-22T18:13:52.000Z", - "id": "646bc0bed18572016192d34c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Not Alone TV Spot", - "key": "aiWG3KK1Gck", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-22T17:52:35.000Z", - "id": "646bc0b77b7b4d00e4adfcad" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heroes come in all forms", - "key": "SjeOfHy6Qbg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-20T01:00:19.000Z", - "id": "64683456006b01010589d431" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Maximals and Autobots, roll out!", - "key": "t3-2jFXSQBI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-19T01:00:18.000Z", - "id": "646827ba006b010126f590c5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Get ready to join the fight", - "key": "pYPcCSxprcs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-16T08:00:20.000Z", - "id": "64668461006b010126f4d653" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Heroes come in all forms", - "key": "1qKDowzluGo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-15T09:01:57.000Z", - "id": "64668467c3514c013a549576" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Meet the New Characters", - "key": "2evSQ-HhSj8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-05-10T15:01:00.000Z", - "id": "645cccd8156cc7013ff38824" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unicron is coming", - "key": "OANHe5GJ_AI", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-10T01:00:14.000Z", - "id": "645cc89177d23b00fcccc0fd" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Unite or fall", - "key": "5_ORHOcPiWE", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-08T02:35:27.000Z", - "id": "6458ab3d156cc700e39db4e3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Prime Meets Primal\" Clip", - "key": "Zxore0Gxwpc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-08T01:25:25.000Z", - "id": "6458ab0dfe077a01398c9271" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "itnqEauWQZM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-27T13:00:05.000Z", - "id": "644a7695a76ac50449b3c3e3" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "TOMORROW", - "key": "dL2aboBfiSY", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-27T05:07:27.000Z", - "id": "644b5dca336e0104ed7339b6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Something has awakened", - "key": "vd3sX2VPhXg", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-19T11:00:49.000Z", - "id": "644b7bbd596a91057957be36" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Prepare for worlds to collide", - "key": "3SzLeDdQxDo", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-04-14T09:30:01.000Z", - "id": "6439a839955c6505a9026d04" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Global Statue Tour", - "key": "Ki-9EZ6lAyY", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-04-01T16:00:13.000Z", - "id": "6434925206f98400f1f272c5" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Big Game Spot", - "key": "QqwK4ZGqI8M", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-02-12T23:32:08.000Z", - "id": "63e97a026c8492008dc43369" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Teaser Trailer", - "key": "WWWDskI46Js", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-12-01T17:15:08.000Z", - "id": "6388e1f9d388ae007f58202c" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "vote_average": 5.708, - "vote_count": 9, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qWQSnedj0LCUjWNp9fLcMtfgadp.jpg", - "vote_average": 5.522, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1440, - "iso_639_1": null, - "file_path": "/woJbg7ZqidhpvqFGGMRhWQNoxwa.jpg", - "vote_average": 5.396, - "vote_count": 12, - "width": 2560 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/9NgtktUFLm9cnFDFaekx2ROh84f.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/pUQ03oxdKCEJK36nE8cEugqlMAO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/9mn4JEBAJted8Jh2ykBO9wKgIUg.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1406, - "iso_639_1": null, - "file_path": "/p8djosrgWSKh6jQkrWJXzzZRABl.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2500 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/au2JALdGTbucQQKKEY2K2D7ivVH.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/iCBbVU4Lzd3p74vFKEit76Dy5Je.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/bVhhmoo2w9HKMmjV3gPehWjDTcO.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/oSNFLkwT7RFf8e5XCUZVH5xsuO0.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/A3uMobzyLpvquw1oYbaP9BNMgaS.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nPQmjaNX9whrYZh8vx5Xo9ywynD.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 990, - "iso_639_1": null, - "file_path": "/rH3jY9JN9krUyE0Q3WLNtujMs8.jpg", - "vote_average": 5.08, - "vote_count": 9, - "width": 1760 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "uk", - "file_path": "/enBk1WhakLtc7uyBGCNSvZiFtJG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/99vJK1Zs5ppLFkowoPEfDNLTKby.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/xzKRj1szWDa3b1uMemWZZNjMUXw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/bfXBR3qRhAP40cuaMwJcI6IkHD5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/yhQ1oWtcKZOze8ZDee0jPDjG68i.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "de", - "file_path": "/xmprhUqhsjzaWmgjpVzAueflqtw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/ws3bmkHm8JyawBjHZe0tGopmpT0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sk", - "file_path": "/2tfr87lvBf7B7uqTI4ttLErobtM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cn", - "file_path": "/hhoRBrX5sShZB45VOYazTVBdbgP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/rkOE88JKK1lHSXFkDNd2zZW81LU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 5.91, - "height": 935, - "iso_639_1": "en", - "file_path": "/zX2iimO7CMwyw0qPfmYyEcmVfMD.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 5526 - }, - { - "aspect_ratio": 6.006, - "height": 160, - "iso_639_1": "en", - "file_path": "/w0mXeEplcMkjqsYml9Z4zsnLQ3p.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 961 - }, - { - "aspect_ratio": 6.046, - "height": 453, - "iso_639_1": "pt", - "file_path": "/d4j4h55SpCvstleYTKAMdGsvLqx.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2739 - }, - { - "aspect_ratio": 2.971, - "height": 662, - "iso_639_1": "zh", - "file_path": "/v95surdtYdDzsCQn5eIdzW9lbvR.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1967 - }, - { - "aspect_ratio": 8.075, - "height": 387, - "iso_639_1": "en", - "file_path": "/4ijkVgACdM9MajPJfi39SQKY02G.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3125 - }, - { - "aspect_ratio": 2.94, - "height": 266, - "iso_639_1": "zh", - "file_path": "/m0HSdBfZGclM5oFCwd8DiJY3xRs.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 782 - }, - { - "aspect_ratio": 6.188, - "height": 442, - "iso_639_1": "en", - "file_path": "/8Z9e3UtUojzQRBDns9hCLxWyZhX.png", - "vote_average": 0, - "vote_count": 0, - "width": 2735 - }, - { - "aspect_ratio": 6.091, - "height": 309, - "iso_639_1": "uk", - "file_path": "/hoFWHAz4mPsU7wswVim6zhAqlX4.png", - "vote_average": 0, - "vote_count": 0, - "width": 1882 - }, - { - "aspect_ratio": 6.156, - "height": 270, - "iso_639_1": "uk", - "file_path": "/cuNlnJNezWAue3OCaCCe60iJpKQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 1662 - }, - { - "aspect_ratio": 3.54, - "height": 880, - "iso_639_1": "ja", - "file_path": "/kSjLp8h8NGplhao2WH3dqOu0Ylh.png", - "vote_average": 0, - "vote_count": 0, - "width": 3115 - }, - { - "aspect_ratio": 4.1, - "height": 170, - "iso_639_1": "ja", - "file_path": "/4ys9LashkQ6g5jvYJUCskU0ifuP.png", - "vote_average": 0, - "vote_count": 0, - "width": 697 - }, - { - "aspect_ratio": 3.971, - "height": 488, - "iso_639_1": "ja", - "file_path": "/j26JZ06P0xpvLqJHYwGwLt20CKB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1938 - }, - { - "aspect_ratio": 6.127, - "height": 252, - "iso_639_1": "ru", - "file_path": "/uvua9PTxppbBSE4zCqzTj7G2bl6.png", - "vote_average": 0, - "vote_count": 0, - "width": 1544 - }, - { - "aspect_ratio": 8.075, - "height": 387, - "iso_639_1": "en", - "file_path": "/aVF3xxeqozR8VsJBOGIehwdtKMm.png", - "vote_average": 0, - "vote_count": 0, - "width": 3125 - }, - { - "aspect_ratio": 6.228, - "height": 439, - "iso_639_1": "es", - "file_path": "/mO8h0VyrFhk8tjjQHLdughlMLku.png", - "vote_average": 0, - "vote_count": 0, - "width": 2734 - }, - { - "aspect_ratio": 6.006, - "height": 160, - "iso_639_1": "en", - "file_path": "/aYP1sKqdNrLau0rVqMnPzZC2hW4.png", - "vote_average": 0, - "vote_count": 0, - "width": 961 - }, - { - "aspect_ratio": 3.167, - "height": 864, - "iso_639_1": "zh", - "file_path": "/ckN7kvvIx5jswzY9lwRh4LE8YBs.png", - "vote_average": 0, - "vote_count": 0, - "width": 2736 - }, - { - "aspect_ratio": 6.008, - "height": 130, - "iso_639_1": "cs", - "file_path": "/hKhczTXOULnqC6ZuErhQiTIkH8C.png", - "vote_average": 0, - "vote_count": 0, - "width": 781 - }, - { - "aspect_ratio": 5.875, - "height": 305, - "iso_639_1": "th", - "file_path": "/4NRUEMME2RonNOiyExKQ6UF3neX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1792 - }, - { - "aspect_ratio": 2.024, - "height": 335, - "iso_639_1": "en", - "file_path": "/irSf6D3RnrFdlga9BzUlHTJ03qt.png", - "vote_average": 0, - "vote_count": 0, - "width": 678 - }, - { - "aspect_ratio": 6.048, - "height": 692, - "iso_639_1": "en", - "file_path": "/lwZdGhz26x78xWYIwY59vLUElYd.png", - "vote_average": 0, - "vote_count": 0, - "width": 4185 - }, - { - "aspect_ratio": 5.886, - "height": 711, - "iso_639_1": "en", - "file_path": "/k2WizmXPzNU9UR1t0epNIMGUcNM.png", - "vote_average": 0, - "vote_count": 0, - "width": 4185 - }, - { - "aspect_ratio": 6.074, - "height": 310, - "iso_639_1": "de", - "file_path": "/dyEkxR6jVQWKRancFV5jYZ6PaRF.png", - "vote_average": 0, - "vote_count": 0, - "width": 1883 - }, - { - "aspect_ratio": 2.959, - "height": 469, - "iso_639_1": "cn", - "file_path": "/hkRJXuN7yw7s9KiyXljV3gewwsx.png", - "vote_average": 0, - "vote_count": 0, - "width": 1388 - }, - { - "aspect_ratio": 6.818, - "height": 220, - "iso_639_1": "pt", - "file_path": "/j8LyxBycN7eSJQXETXe3RnDIZXB.png", - "vote_average": 0, - "vote_count": 0, - "width": 1500 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/zEqwfO5R2LrrLgV61xm8M9TmNTG.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "vote_average": 5.928, - "vote_count": 24, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2047, - "iso_639_1": "en", - "file_path": "/k5mQ2G1jS47fuxCjmkzFDeaNYvj.jpg", - "vote_average": 5.456, - "vote_count": 11, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/z5XC46TJoHOV2g5Fwbh5fbuknco.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/eKERyBrJ8zWtNYJXXlxRCT6s6J6.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aY2hzOLuHTxKev5bWnC05ZjxtrB.jpg", - "vote_average": 5.4, - "vote_count": 16, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/73tyKUtXZCgyUdHM5cAaoY4f0nM.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/kq6AYN96FjWSZQVRYpAPmBAVq2s.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/uRx4iLAXpv8z6cCu6uxabSNPWib.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "ja", - "file_path": "/hzTCFPV1IsJdJxPxquA1AzbYB0M.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/vBP5xZYGI88dOilwZdxVCn2EjqJ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8GN5toSNH8HNZXZ8P0uNz2kdNHz.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/8HBYMQkF6cFpupgRDhsrrKskXOE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lMSKjvaDb47Z0OzwVwg5CSDYTen.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/ssL9oxbuyyBjOhlN0yEEKLg7DFY.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qBcIUgJmDGrcAKbhRwCd6AmO0ZW.jpg", - "vote_average": 5.342, - "vote_count": 15, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/4fK63NtPWgZs8irIzuuVxqNHIsw.jpg", - "vote_average": 5.326, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1752, - "iso_639_1": "zh", - "file_path": "/uty9jd88buxZd5ZhpuXKaANFhr9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1168 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/k1zmtALC7V8xcbVgpdxpORKmAK9.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/dMIfRXSzxrsXdO0n6O8lMN79KKD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/3EhiKCgQSjjX3nNyrSK4rokz9Ma.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2829, - "iso_639_1": "no", - "file_path": "/n9a0yEXoi6Uy300DQZGUOacVgyt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/nc0QxZqwaNX9ytyYZmA5Zh8E3Y.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/yvU1pWsqJXOpC08R4jAkh4DCM9S.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/chUZNPNd7EiETSB4xBGykXhuXRr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wx5Pe69YpuiDxCWfL7GKnArdfLv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2290, - "iso_639_1": "cs", - "file_path": "/sHgvdFI20YGCXsLAtRTd2Kqg0C0.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1527 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/d6szddOi2ZlMtB1gvJzFDJgbtBo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2047, - "iso_639_1": "ru", - "file_path": "/e0p6MFlZedrQVbpigRZ7dFtrZDS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.714, - "height": 1350, - "iso_639_1": "hr", - "file_path": "/woNCjzliS54e23E3QRuYRRBIzm3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 964 - }, - { - "aspect_ratio": 0.666, - "height": 2875, - "iso_639_1": "bg", - "file_path": "/6tdWtOkySG9mdmhNKRUG9Xlz26Q.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1916 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/7ijvFQUlGlok8eW3MfDnQrR6Puo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/yu24fXpro7jx4XFlgEWwElW1kgW.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/5aN6J0l2dUokxOOJZrQBKlsUHu3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/6Qpg485zIcxWiX1yzM1NnpezGTu.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/9PSKoY98olv7Sru1PWnLpFDqat9.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/t87CjXc2GGWG5b3VEUKaKBWwjps.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/7VLWQa5h1eyJ3xX7KWwQdjxogHg.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "vi", - "file_path": "/8fjDDRRmJqkw5T9tYrnOntxt7SH.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/7M5ffeGzyIQWZh76uLtz8sL3PXs.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/yqXbE4epcDgxJd89hhqNXiNYjMc.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/9ndmXcQibvOPYz58wqOou4t1XoE.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/imzUKQbSanWDJcCsY9QKmk9qmDp.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/eOHDeAiJcTrS0RJElENcbFjY5yr.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rkDaMJXYl3ULrTNpetTojBe8Vl8.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/pnUjGWvhfPRo7j395HFAUtuFEpL.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/hXRJiybJaX6SjelCCR1h9LkwMy5.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/l3WMRxwkQ8yQ2iPxon2jwdIvkDW.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/lzqps4nH34Bryc8DKsWVQwyofgB.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/thQzOulFF5q27OysxSmhk05PoI1.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2TtCHblu9nNrsISN8NGX2UCESuI.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cDboyw31PuIeO3te8Aapa0SZVzi.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mbXk2bJfhpPPHITd5r3kw5vBhvt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6NpMzc5br1aiLIHJrM4A44fytNU.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2uV5UX4lFibpV183zLuw7qMtkMf.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/sasmRMNUzeAenTyhhBKlNisWgIv.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/aQFfiLBbjyuIynbQKlr7M4KLTRJ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 810 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3oypSaTizrfBbpIeRs8tTOF2EqV.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7y0eBIw5MWsrOBgJZWPWwwLXIfy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "sk", - "file_path": "/1oBtQAld9o2zIScrXgkUFSwYRYn.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tf7l8ZL6UfD5to7t9y8pC4KmLnK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1184, - "iso_639_1": "en", - "file_path": "/cU0qBkwfl9smKhBSZcrEg2gM071.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bwyOIBzO9oHrxvsbSajsyGSIRdA.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/bWc3bWtsqtdw6bptZe48TEvOulX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/j2smiewL3w7s0KMAfqizscn4bBR.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/dXHBCxki7W16pE9MP6EC0VVbJoP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "th", - "file_path": "/hwaHhr8hmIP2jNl9EwT5YZ2Hsmy.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 972 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/AhwolAZAsAy82mmDxsYFMQx0yy5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/17wVv7l8OZ8Cs1wKB7BT4VXpI3l.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.677, - "height": 2953, - "iso_639_1": "en", - "file_path": "/byNWRiY7Wtv8XhqpK95GxqX8ZYk.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/vi6PP4Ak39kPisPuduspHZy1p18.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "de", - "file_path": "/b8aRdduiUopWlvO2fEUUm9BZsQ5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1350, - "iso_639_1": "zh", - "file_path": "/2isgEleNBOgonfhlybOlV0RrGEQ.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 945 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/p2X0DLb8prHFYdlNGvp2stbH0YB.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.698, - "height": 859, - "iso_639_1": "ko", - "file_path": "/vEgBqPDgvbKbhq8A19OszoX6CKR.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/qSd4ajMHKwk6cFXYdSEbImAzyZC.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/78o7t4tbBNFBYtrKSE7gXjmcy8x.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fNWpvKi2Rf6JyhR2ZupPIVyhGdJ.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/t4YDjrsZSng0f7OBfIKGLBECml3.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6kYJACZjjQUOYmg6XblEM5qqTOM.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/npI9RXqhsBCCV95oKstdsWgnaO6.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2368, - "iso_639_1": "de", - "file_path": "/vBMbLkug9mz7vw9J5jUl1i0VbeZ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1579 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/r5ht7Dxx1pPSpEBTAcMTXZHpyR4.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/4mC9oVVN0SNKitT49HXgJ4EJJSs.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/me6xOi9cwFkfkFKps6PxWW2ngDy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/gBGRGaZ95qXmqx7XwlkxptNZLoU.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/bGnd0VhwZEdLmOf4sra2Ci7g4ip.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/aux09eXXhzpKyBAvZ5DIDAtQ0QH.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/iTU8mTXkEitBJ7VWeerhF78OoS4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/isiwtLmKOh3yXxY0wi8nuv1FwKC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/4Ylkt4z7bGxNlMRS8vlJ22OFAtN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1778, - "iso_639_1": "it", - "file_path": "/aAX8vIdN76RHj6IFlN9j0N8QH45.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1185 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/18FdEzq2KSXqUAHeW5qdqlnzCpp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1364 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/n9UmD868d1sG05BP7m0aMJ32tPx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/je1FZ3VzHFVTNKC6sqBXVZG0Q50.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tmFgL4XnpimIP6nsRpahxHgD05x.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/uidZY7akgQRNGj0DNm5MT8xxiqV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/t0S1ym1kp9PIxIo2vvbCV5VAEKR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/oU90atKsgN3W88Ue2cZw35i1n5P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/tLfMLSLuxqGrC2XoHDn7uQfepEG.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jrifTIhhtGvO1WIq2bUBFuicWHh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/45k14FqW6HU9QoYrarn8k6tWMDE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eEMGw9Za5XR0OjDuY3m3XbXhwBn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eUEMLwyzn8rDsIVTZLCTvHKLlGi.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3lYtRDM7OjIOuGMasK8QB6pBSOT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/8lq1Lxa9DbfOXeQmet0mRPvxTtn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2290, - "iso_639_1": "cs", - "file_path": "/r0tvVU54cyP2b1fjJkBgpG1pzVa.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1619 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/ilNaBfolPpXDLQS2JFNftdUnGbz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/jXjq4W0dJTrqlYx5izPsnDAgpVV.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/jGlY03Ym2dgQvg5dCcR3H4mWxti.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/s9ZBvtVLQNLb4jppXWJz5LaQwDC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/sLs8CWeUdlt9d5Y2OzH5RfE6jLM.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/7aJoiCR8AhMi0akuUBh9IKuwkft.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/2ldASC7oxLig1djmIaozJCekmDO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/9sZdMG1Snetlj7RBxNKNJFmQFKy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "el", - "file_path": "/tTTo2S9ywvytH5zXALNLx1FFNlq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.745, - "height": 1450, - "iso_639_1": "el", - "file_path": "/ovGzIJYfgWuDnstzUxELZ1H0z3P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/xtQ9a1seTb823ntc89LovoPnZRf.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/4EWu19ZW9lfTEqNTUeYrgckxKfp.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "de", - "file_path": "/dQmgIoC2T3FxaZzOe6nw6fCrbG8.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "it", - "file_path": "/lHsLdOnzmndRekk8Z5WbpQgdk6P.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/srMDcc1spa1TJI8UPWFyY0VJwkC.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/nQCfRBHG7aP1vh0VQUBw9aW9HtH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/tL74X2WKjiS06wqPWhveXfgmxMN.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/d2NNe1UUD1XU2rnrUXojziKOOBL.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1050 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/ciqf6p2BCrqpdbK6HzQCyiWRWmU.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/5L8WUe5F8OOudXxZnewHFww5nGl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/mnS2gxodxAFpOXGHj7q2jrn17yx.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dl1vYU4JiCSAvE4LDYuXriSVK5p.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/p5bHII4iU0s5DsW31bqV6k5amRu.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/pxSq3l90rup7KqqMsPQnfghAHXU.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/aXRvhdVeUx5Ped6Avbb9VlZb6aP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/rAkUu6eFgtAuzZsbj5khAzauhju.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/pSeIYzJSIwBSiDRDe2HYR2wApIl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ezlDZZGIIbsCLYKs8qZJKpIS40V.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/lYnv9fOrZxE8HoJhxZias6Xs9JF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.671, - "height": 1610, - "iso_639_1": "zh", - "file_path": "/ry5nGeqpgoWJSizGWwVrmThYMhg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.67, - "height": 2983, - "iso_639_1": "zh", - "file_path": "/zsitfwOCLbujOeOzMHJoy7CVR1F.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.712, - "height": 1517, - "iso_639_1": "zh", - "file_path": "/90nbpc6fsE7zcS01TF2FxPzeOO1.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "zh", - "file_path": "/rPaZIVVhy52v5YWTrbsaEKRHvSF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.714, - "height": 2522, - "iso_639_1": "zh", - "file_path": "/rqZe5tgVrM0yRfnXNKpMj57VcxP.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/auQ2OZlFne3jBwwlQLCWBgWXRe.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/3qBMAFwv88yHMquElfKNU3zj3p8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/1ASTDDjKK01u1g6C3RixP6mHgLU.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/g1HcrEiN0UiSpjQMJ3Klzw8KOZS.jpg", - "vote_average": 4.928, - "vote_count": 14, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "tr", - "file_path": "/50N9uUOEUZDpziinwxXXtKagaLW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/8LFGygAXc4b3ktcLVqFf4i5fXcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/peIB7KBBrqW0JsCLQBt9ChEtZ7m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jAxJimwdCHbdNRPnR6ciwhj6bXP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/fQcg1JNCMOcwNKlQlOSZfqag6E0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "no", - "file_path": "/bfiNNXYKEDW7PiSM7H6daeUMMhw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/9T1i9UrJntm4By4W4pwSEBxhffo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/kmk8vdGE218I7w9gTHLHbXF64YF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2048, - "iso_639_1": "tr", - "file_path": "/sGwU0MQ4pnJx7QkM4nQUCCz11v4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1364 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/hfCYq5ibZ71wBnUFFHHdPWU9dW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/gbhi8Becy7TXOfUwzs3XeMgZkD2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/eZO8q1ZUTNuFz6FZfB00y3oIXcW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/ftheuCH4kO0rtRy9KIpp7oFjIAP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/taR4xc0TxBgpXaPAGvfOXPV4FKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "en", - "file_path": "/mhpqRJtGNOrU9oyv5fcpVoj024B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1383 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/PMSY9JQloJnS9WuAIT5CdDh9Zn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7jOi0Ywj72SDmEbMePoQrQqUhvo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kh0mqWOLoKN9ZI8VejFmu0MiTxM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kdY1Ryr92rQtHqCczjrh8vuQx9d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s7VjcqsQyi34nrt0oh2X9WcoHkW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/7ZNsF4vGPilD91YF2QDf3MBmjsc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": null, - "file_path": "/7cVFmOuQxrj5qkxhATxl4QX2FJR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/zIgMUCMAJaliAS1xyP1MsLVNKdp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/fClwabMHGZp5qBHSZOtnfMBErhQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2718, - "iso_639_1": "sk", - "file_path": "/tXa7fo1sckOrvpAdCTbYLJ0jWqc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1812 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/WrBS2zS4pHKyTy8SS3byC99duU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/llABsPecLybfhZdrHdOpXrdy7fv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/aa4amMOJzd7H4NJteT6w276WxOk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8z2dupG3SFXZ7R0S2kr8DY2RanM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/fsvpks5mDKsu2hcPvCyHq70vEDo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/g7dPc7LXpc2VnVtkdK2BegeESuG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.71, - "height": 2048, - "iso_639_1": "cn", - "file_path": "/7U1ZXF20JyltqPSn0kB28ZVB3xO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1455 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/5KZwFWPY7a0bZFRXgA8t8fY6bcL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/41tE8QVRaOUMipMddqwsrSnFngS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/d2SVY6NOQRnPuzsaP85brkWJGF9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/fkYBA2s38nKxBAZBVIqeUNmi6QO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/kQb5n8Le9RHSRinqIxgMT5Tt0qP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/arLi3Eeo9bs1KqQ4peG2BHDTQhd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1012 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/wsLn9xeBnhBTPqcSLxEU6C62iHr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1060 - }, - { - "aspect_ratio": 0.707, - "height": 2048, - "iso_639_1": "ja", - "file_path": "/9dg6EtqfZZoLfKLyZgJKce1rC1B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1448 - }, - { - "aspect_ratio": 0.667, - "height": 1275, - "iso_639_1": "hr", - "file_path": "/mZDNSyDUdu7jT4IdCsMSMiIuWfI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 850 - }, - { - "aspect_ratio": 0.667, - "height": 2976, - "iso_639_1": "sv", - "file_path": "/knKkQZZK4iVVfEo8TqHjCH1vaH3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1984 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/i0DDWW7xV9BfOIZHaaveyvQr4cF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qD3W5jzyPiL3IMF3w5RPSraoFyA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uux0adgeWy4OsNObw87Gq8kqyxg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1wdG2xEuHHLxhdr9lehZnkFJfPP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/3amtQqe0jlR7Gc9DjVK0zkDGPQL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/6VzjwukpimgM26qiUgquQim2fw2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/duYI9761sZWu37cXWZBX5yiLcsB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/61YW0L1S8d2AL2SEQ9g69GMZQxj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/x7rRyzjniye6ZgMb7E7GFLPCkOe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/gdl3A2WfHPYJ7Mam1AuZn4qJyYh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.696, - "height": 2875, - "iso_639_1": "bg", - "file_path": "/XyhSEf48zAEI6Ny869sAVa0YjM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/69yfPOqY9oWE3bwpXbexGtW9iWX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 888, - "iso_639_1": "fi", - "file_path": "/4pBpVp5ExWkxrWisQC1mxWMzmE0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/erFPC2FNYczzAliYWFybJdhpCRF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.721, - "height": 1920, - "iso_639_1": "en", - "file_path": "/zDPktf4WPRgnUrT98PsXbo7N1cP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1385 - }, - { - "aspect_ratio": 0.675, - "height": 1481, - "iso_639_1": "en", - "file_path": "/tLYWKD2TxNtsH7Djw0K3haFxM9W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/1Cw4shSWAgseofZYPUnjVezh3PG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/xhH092qQbfgt8ue7OxrrekvKsoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/jkgQY1Bn3Mv3S2rEda1ARpX2W14.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1500, - "iso_639_1": "en", - "file_path": "/yBRoPjERughnUNl1ZZ2e7lluzWI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1013 - }, - { - "aspect_ratio": 0.666, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/6Hcr4wYetGH25JacwHRlpUA5Vkq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 799 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/hNnjMoiZh2947yjpcZtvILF547s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pl", - "file_path": "/aAoRVlCqV35rVqBDT3NgMfEC6bZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/aVs9VEL7jFamcvPoHJ62gtCjkan.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 1600, - "iso_639_1": "en", - "file_path": "/AtugHg2I6SIo3Ij77Q8YgTXUyBE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.674, - "height": 1024, - "iso_639_1": "pl", - "file_path": "/bqIgGekLf5MYepA6kR7raT0TgIx.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 690 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/zvWl7d7q0lSZViIvS5fdoIvOLHU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/9UheIinZAnRaQ9BjBBSjfy43Fmh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/8zZHxhzv9K05BmunfVcfNWtt6UK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vLZzhPl2NQOejiMTfOOkHvHHTdQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/nv9B3hcOTcsccMmt8BzCl8dxdiN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/z3siSyzcbztwfPYaA29oxzOfRNI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/ouC5oZYtphz36CJ4s0P4sJBqpX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gwlwkMlCRpgpyCnBDj0PsAujAu3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cGzg6EFavxogw8I7rKLLd7Zicj7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/p2lZ8KCyoXvFc5wD0c7CdacrvcZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/lzOYfcstqz2ucvsiVjXefjnsWR3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/pm4trNl2wSPL4GvnNg2EgkqBI3k.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.676, - "height": 2048, - "iso_639_1": "lo", - "file_path": "/sIRRDRzpI0yLagFkDd6mJEKaHDs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1384 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "lo", - "file_path": "/nz5H7Vdq6TSEU6bwq87xuyFYSXB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/28R0ksoyidEKAVej0OMMSsNDROy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/ioEKu92CsH7hZTT65CTZl6nEG7t.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/hUqYSEHGh2Nod7k1o9GV4g1mcaA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/qx2SOr4qeTlrZYkBz9iNMunOjOD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/8lxrtJLjEJzafW7XA0VEM3R8O1W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/o9pFGlfxZL7xURTwJuaInpUxlU1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zDWM4CdEQq7fRjfHpifz0o8atZv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/v7SaW7cl7Dqt9HwiYZa4QreLVY9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1920, - "iso_639_1": "es", - "file_path": "/csnU3TX58uEOzEpZR8BxrYWLvwv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "de", - "file_path": "/opOgU5F2o17IUqZR640YbVZdoDP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.67, - "height": 1394, - "iso_639_1": "zh", - "file_path": "/tEg8p966Ppf9CJL4SE8E5rZzowR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 934 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "zh", - "file_path": "/qgsjBfTZWcNlCfLNJ8hctACmGrr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/vtGEXE1sT5MK0H085ricx3r1Jce.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ru", - "file_path": "/tWYa5ckV5RZps3gtLqBfjWtgNRr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.724, - "height": 1444, - "iso_639_1": null, - "file_path": "/qPa1ioCM4XZG5YvGfGA9dfPBFMA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1045 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/ydT8dE2jf5y9cbalsARhnWtYWbn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": null, - "file_path": "/rXjNCKZqRHXn3eMIswx5P2gMcVO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.701, - "height": 1426, - "iso_639_1": "ru", - "file_path": "/uHwFQEcp7840opJ8BVfsEvtPAuM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/316B5mYGcKpYVDPrE2x2MLMKkpY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/3vqfHwRdSM8nDJ4epiSIeMOS6IY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/678512.json b/examples/view-transitions/src/content/movies/678512.json deleted file mode 100644 index 22d3d4a83909..000000000000 --- a/examples/view-transitions/src/content/movies/678512.json +++ /dev/null @@ -1,1226 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/eMPxmNvJjxVZIQWI2t1VmNC5IuR.jpg", - "belongs_to_collection": null, - "budget": 14500000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "https://www.soundoffreedommovie.com/", - "id": 678512, - "imdb_id": "tt7599146", - "original_language": "en", - "original_title": "Sound of Freedom", - "overview": "The story of Tim Ballard, a former US government agent, who quits his job in order to devote his life to rescuing children from global sex traffickers.", - "popularity": 668.456, - "poster_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "production_companies": [ - { "id": 90508, "logo_path": null, "name": "Santa Fe Films", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-07-03", - "revenue": 183405443, - "runtime": 131, - "spoken_languages": [ - { "english_name": "Spanish", "iso_639_1": "es", "name": "Español" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "Fight for the light. Silence the darkness.", - "title": "Sound of Freedom", - "video": false, - "vote_average": 8.011, - "vote_count": 459, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 8767, - "known_for_department": "Acting", - "name": "Jim Caviezel", - "original_name": "Jim Caviezel", - "popularity": 19.203, - "profile_path": "/wDf6ukCaGMEnH94GzLP2NGjKeNL.jpg", - "cast_id": 3, - "character": "Tim Ballard", - "credit_id": "5f2b29df79a1c3003732e78f", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 23931, - "known_for_department": "Acting", - "name": "Mira Sorvino", - "original_name": "Mira Sorvino", - "popularity": 20.381, - "profile_path": "/11raFiNo7QfisH44v3NIfpVvIz5.jpg", - "cast_id": 4, - "character": "Katherine Ballard", - "credit_id": "5f2b29f12b531d00390175bc", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 121718, - "known_for_department": "Acting", - "name": "Bill Camp", - "original_name": "Bill Camp", - "popularity": 12.571, - "profile_path": "/yZFata0EVr7TbIAz8vZFyiDKDts.jpg", - "cast_id": 5, - "character": "Vampiro", - "credit_id": "5f2b2a002b531d0038018eb1", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 29685, - "known_for_department": "Acting", - "name": "Kurt Fuller", - "original_name": "Kurt Fuller", - "popularity": 7.292, - "profile_path": "/kV02XLACLFd1YYQdSOgqy6lFmQ3.jpg", - "cast_id": 6, - "character": "John Bryant", - "credit_id": "5f2b2a10a698cf0031560719", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 17689, - "known_for_department": "Acting", - "name": "Gerardo Taracena", - "original_name": "Gerardo Taracena", - "popularity": 9.812, - "profile_path": "/wvqDQf71ezlA36ZzhWe1D7cKLLS.jpg", - "cast_id": 7, - "character": "El Alacrán", - "credit_id": "5f2b2a1cfab3fa0035fd60fd", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 10963, - "known_for_department": "Acting", - "name": "José Zúñiga", - "original_name": "José Zúñiga", - "popularity": 6.759, - "profile_path": "/r6nFkJkMHP9tFDohwfav9Bf2rCR.jpg", - "cast_id": 8, - "character": "Roberto", - "credit_id": "5f2b2a4cf1759c0035886c03", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 87954, - "known_for_department": "Acting", - "name": "Scott Haze", - "original_name": "Scott Haze", - "popularity": 4.677, - "profile_path": "/6cd3Jt8Vo52j8cRKbNf1j7cERhs.jpg", - "cast_id": 9, - "character": "Chris", - "credit_id": "5f2b2a6079a1c30038322a22", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 96228, - "known_for_department": "Acting", - "name": "Gary Basaraba", - "original_name": "Gary Basaraba", - "popularity": 3.072, - "profile_path": "/dH6zocqD5heDerhCANUtfy00gHm.jpg", - "cast_id": 10, - "character": "Earl Buchanan", - "credit_id": "5f2b2a742d8ef30038e93dda", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 72968, - "known_for_department": "Acting", - "name": "Eduardo Verástegui", - "original_name": "Eduardo Verástegui", - "popularity": 17.233, - "profile_path": "/jUPrzJbA4ksTR0DYK10PKpq1yJG.jpg", - "cast_id": 11, - "character": "Pablo", - "credit_id": "5f2b2a8679a1c3003732e82d", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 72983, - "known_for_department": "Acting", - "name": "Manny Pérez", - "original_name": "Manny Pérez", - "popularity": 3.69, - "profile_path": "/auDXIA7COAJkgPFYlZWAvCuezRG.jpg", - "cast_id": 12, - "character": "Fuego", - "credit_id": "5f2b2a992b531d0037016ace", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 18468, - "known_for_department": "Acting", - "name": "Gustavo Sánchez Parra", - "original_name": "Gustavo Sánchez Parra", - "popularity": 2.896, - "profile_path": "/ymg31PTbKfOxE7jV4QSgtCZKPbg.jpg", - "cast_id": 13, - "character": "El Calacas", - "credit_id": "5f2b2aab3e09f3003720454d", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 93649, - "known_for_department": "Acting", - "name": "Javier Godino", - "original_name": "Javier Godino", - "popularity": 4.744, - "profile_path": "/qwXxX6gKIphuCXJ2wgeROPjIdic.jpg", - "cast_id": 14, - "character": "Jorge", - "credit_id": "5f2b2abf458199003457e246", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 51656, - "known_for_department": "Acting", - "name": "James Quattrochi", - "original_name": "James Quattrochi", - "popularity": 3.09, - "profile_path": "/fy7pSTUy6JfZRdaYhsTWNZ84IHw.jpg", - "cast_id": 15, - "character": "Border Patrol Captain", - "credit_id": "5f2b2ad179a1c300363192f1", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 3348914, - "known_for_department": "Acting", - "name": "Eduardo Gomez Monteverde", - "original_name": "Eduardo Gomez Monteverde", - "popularity": 0.608, - "profile_path": "/t7lMxKM9I6rIRabNlFjlSxJ17Dd.jpg", - "cast_id": 17, - "character": "Bouncer", - "credit_id": "61ba5b69894ed6005e9aacd7", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 2261058, - "known_for_department": "Acting", - "name": "Gustavo Angarita Jr.", - "original_name": "Gustavo Angarita Jr.", - "popularity": 2.936, - "profile_path": "/cZnxZ3hXa5fi6EWbUqViR3ozFr3.jpg", - "cast_id": 18, - "character": "Jail Guard", - "credit_id": "61ba5b7b1c63290041136ff6", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1532438, - "known_for_department": "Acting", - "name": "Ariel Sierra", - "original_name": "Ariel Sierra", - "popularity": 4.561, - "profile_path": "/gjRtYRm1fIuHot3Wn1PXoFhcBHp.jpg", - "cast_id": 19, - "character": "Checho", - "credit_id": "61ba5b8d894ed6008edde469", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1572118, - "known_for_department": "Writing", - "name": "Kris Avedisian", - "original_name": "Kris Avedisian", - "popularity": 2.795, - "profile_path": "/zfFERw74t4WdPDKtl7MFbPpAAV6.jpg", - "cast_id": 21, - "character": "Oshinsky", - "credit_id": "61ba5beca44d090042867f52", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 3230349, - "known_for_department": "Acting", - "name": "Alejandro Muela", - "original_name": "Alejandro Muela", - "popularity": 0.6, - "profile_path": null, - "cast_id": 22, - "character": "CTI Agent", - "credit_id": "61ba5bf9c616ac009a15615c", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 1681399, - "known_for_department": "Acting", - "name": "Jaime Newball", - "original_name": "Jaime Newball", - "popularity": 0.6, - "profile_path": null, - "cast_id": 23, - "character": "Bam Bam", - "credit_id": "61ba5c0444a424006224574f", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 3452313, - "known_for_department": "Acting", - "name": "Yessica Borroto Perryman", - "original_name": "Yessica Borroto Perryman", - "popularity": 1.373, - "profile_path": null, - "cast_id": 56, - "character": "Giselle / Katy", - "credit_id": "64d2b65fdd926a01e731e126", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 4204656, - "known_for_department": "Acting", - "name": "Cristal Aparicio", - "original_name": "Cristal Aparicio", - "popularity": 0.994, - "profile_path": null, - "cast_id": 57, - "character": "Rocio", - "credit_id": "64d2b71db6c264011d9fbb96", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 2579300, - "known_for_department": "Acting", - "name": "Lucas Ávila", - "original_name": "Lucas Ávila", - "popularity": 0.749, - "profile_path": null, - "cast_id": 58, - "character": "Miguel", - "credit_id": "64d2b74203726400fffc08e5", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4204668, - "known_for_department": "Acting", - "name": "Samuel Livingston", - "original_name": "Samuel Livingston", - "popularity": 0.618, - "profile_path": null, - "cast_id": 59, - "character": "Simba", - "credit_id": "64d2b7b97e403d013c6ef90d", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 1432386, - "known_for_department": "Acting", - "name": "Valerie Domínguez", - "original_name": "Valerie Domínguez", - "popularity": 1.27, - "profile_path": "/mtnZHZDybG4aaZQVjPiAaHlFefJ.jpg", - "cast_id": 60, - "character": "Tanya", - "credit_id": "64d2b837bf31f201ccbc2b2b", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 2551480, - "known_for_department": "Acting", - "name": "Jairo Ordóñez", - "original_name": "Jairo Ordóñez", - "popularity": 3.006, - "profile_path": "/fozkafjHkHO9bm0IIwp6g0E9qRq.jpg", - "cast_id": 61, - "character": "Pirana", - "credit_id": "64d2b876db4ed600ffb5bd05", - "order": 24 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 17004, - "known_for_department": "Sound", - "name": "Javier Navarrete", - "original_name": "Javier Navarrete", - "popularity": 2.8, - "profile_path": "/1SBbpUhTj7KPsJKAySMN4Kt1Sx.jpg", - "credit_id": "61ba5d6b0143250065d4d18d", - "department": "Sound", - "job": "Music" - }, - { - "adult": false, - "gender": 2, - "id": 18212, - "known_for_department": "Acting", - "name": "Mathieu Schiffman", - "original_name": "Mathieu Schiffman", - "popularity": 1.177, - "profile_path": "/wsDoXC9eqb4VHVMAeDIF0xlt9lL.jpg", - "credit_id": "64cea1bc303c8500c61371e4", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 67159, - "known_for_department": "Production", - "name": "Christopher Tuffin", - "original_name": "Christopher Tuffin", - "popularity": 1.435, - "profile_path": null, - "credit_id": "61ba5d44439be100411bdc05", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 92332, - "known_for_department": "Costume & Make-Up", - "name": "Waldo Sanchez", - "original_name": "Waldo Sanchez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e70945d36001d2723e6", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 2, - "id": 72960, - "known_for_department": "Directing", - "name": "Alejandro Gómez Monteverde", - "original_name": "Alejandro Gómez Monteverde", - "popularity": 3.303, - "profile_path": "/hComfoqIuLYwomU8oQ3QhvZZHR0.jpg", - "credit_id": "5f2b2984f1759c00368928c3", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 72960, - "known_for_department": "Directing", - "name": "Alejandro Gómez Monteverde", - "original_name": "Alejandro Gómez Monteverde", - "popularity": 3.303, - "profile_path": "/hComfoqIuLYwomU8oQ3QhvZZHR0.jpg", - "credit_id": "5f2b29ae2d8ef3791fd7821f", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 72967, - "known_for_department": "Production", - "name": "Leo Severino", - "original_name": "Leo Severino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5d2a28d7fe001d5d5ade", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 72968, - "known_for_department": "Acting", - "name": "Eduardo Verástegui", - "original_name": "Eduardo Verástegui", - "popularity": 17.233, - "profile_path": "/jUPrzJbA4ksTR0DYK10PKpq1yJG.jpg", - "credit_id": "61ba5d5213af5f0042feb87e", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 75707, - "known_for_department": "Directing", - "name": "Stephen E. Hagen", - "original_name": "Stephen E. Hagen", - "popularity": 1.036, - "profile_path": null, - "credit_id": "64cea182549dda00acf013ec", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 989750, - "known_for_department": "Production", - "name": "Deanna Brigidi", - "original_name": "Deanna Brigidi", - "popularity": 2.188, - "profile_path": null, - "credit_id": "61ba5db9c616ac009a1564db", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1016150, - "known_for_department": "Production", - "name": "Renee Tab", - "original_name": "Renee Tab", - "popularity": 0.753, - "profile_path": null, - "credit_id": "61ba5d34c15f89001c93fe88", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1075764, - "known_for_department": "Production", - "name": "Warren Ostergard", - "original_name": "Warren Ostergard", - "popularity": 0.65, - "profile_path": "/5u25SwlLuc7eNMfvcLpTwC3vg0x.jpg", - "credit_id": "61ba5d1d014325009a0813ca", - "department": "Production", - "job": "Line Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1165379, - "known_for_department": "Camera", - "name": "Gorka Gómez Andreu", - "original_name": "Gorka Gómez Andreu", - "popularity": 0.95, - "profile_path": "/xXCY9arkK2JzoetYFLGkt6tN7dX.jpg", - "credit_id": "61ba5d97894ed6004061149b", - "department": "Crew", - "job": "Cinematography" - }, - { - "adult": false, - "gender": 2, - "id": 1288829, - "known_for_department": "Acting", - "name": "John Paul DeJoria", - "original_name": "John Paul DeJoria", - "popularity": 1.306, - "profile_path": null, - "credit_id": "61ba5ccefa404600870e3606", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1333076, - "known_for_department": "Costume & Make-Up", - "name": "Isabel Mandujano", - "original_name": "Isabel Mandujano", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e434da3d40043534ca4", - "department": "Costume & Make-Up", - "job": "Costume Designer" - }, - { - "adult": false, - "gender": 2, - "id": 1337636, - "known_for_department": "Art", - "name": "Carlos Lagunas", - "original_name": "Carlos Lagunas", - "popularity": 0.84, - "profile_path": null, - "credit_id": "61ba5dc8894ed6008edde909", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1412478, - "known_for_department": "Art", - "name": "Sandro Valdez", - "original_name": "Sandro Valdez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dfac616ac00668c89b2", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 2, - "id": 1551062, - "known_for_department": "Directing", - "name": "Alonso Alvarez", - "original_name": "Alonso Alvarez", - "popularity": 1.218, - "profile_path": "/tzIXmmKY3PXmoTGqYfjglCl7iyl.jpg", - "credit_id": "64cea152303c85013a14d1b3", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 1582746, - "known_for_department": "Costume & Make-Up", - "name": "Olga Turrini Bernardoni", - "original_name": "Olga Turrini Bernardoni", - "popularity": 1.38, - "profile_path": null, - "credit_id": "61ba5eae223e200042ae6782", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1605770, - "known_for_department": "Editing", - "name": "Brian Scofield", - "original_name": "Brian Scofield", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dab28723c001c09a4f4", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1609113, - "known_for_department": "Production", - "name": "Camilo Buendia", - "original_name": "Camilo Buendia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5cb76a3448001cddaaac", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2327195, - "known_for_department": "Art", - "name": "Eugenio Garcia", - "original_name": "Eugenio Garcia", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5de27d5f4b0062529adf", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 2327198, - "known_for_department": "Costume & Make-Up", - "name": "Alejandra Basabe", - "original_name": "Alejandra Basabe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e659d8939004045fc17", - "department": "Costume & Make-Up", - "job": "Assistant Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2555225, - "known_for_department": "Costume & Make-Up", - "name": "Amanda Nicole Stockham", - "original_name": "Amanda Nicole Stockham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e9fa44d0900428685d4", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 2874819, - "known_for_department": "Costume & Make-Up", - "name": "Juliana Poveda", - "original_name": "Juliana Poveda", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e4fc616ac009a1565f3", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 0, - "id": 2970672, - "known_for_department": "Acting", - "name": "Jaime Hernández", - "original_name": "Jaime Hernández", - "popularity": 0.84, - "profile_path": null, - "credit_id": "61ba5cf15ad76b00640fb81a", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348915, - "known_for_department": "Writing", - "name": "Rod Barr", - "original_name": "Rod Barr", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5bb6a44d09001d120000", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3348926, - "known_for_department": "Production", - "name": "Lukas Behnken", - "original_name": "Lukas Behnken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5c8b13af5f006309d0b0", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348929, - "known_for_department": "Production", - "name": "Patricio Slim Domit", - "original_name": "Patricio Slim Domit", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5cdfcb75d1001c0aa6f1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348931, - "known_for_department": "Production", - "name": "Carlos Martinez", - "original_name": "Carlos Martinez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5d10e72fe800615e148f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3348934, - "known_for_department": "Art", - "name": "Andrew Rodriquez", - "original_name": "Andrew Rodriquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5dee44a424008941a5ac", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 3348938, - "known_for_department": "Art", - "name": "Rafa Mtz Withingham", - "original_name": "Rafa Mtz Withingham", - "popularity": 0.6, - "profile_path": null, - "credit_id": "61ba5e334cd91200983e98c6", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3752956, - "known_for_department": "Directing", - "name": "David Pombo", - "original_name": "David Pombo", - "popularity": 0.614, - "profile_path": null, - "credit_id": "64cea19385090f0125bc6348", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4199308, - "known_for_department": "Directing", - "name": "Harold Ariza Cortes", - "original_name": "Harold Ariza Cortes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cea1736d4c9700afadb147", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 4199309, - "known_for_department": "Directing", - "name": "Collin Reisenauer", - "original_name": "Collin Reisenauer", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64cea1a5303c85011dd3ad60", - "department": "Directing", - "job": "Assistant Director" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Theatrical Trailer for July 4", - "key": "hyyyKcfJRGQ", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-05-12T02:03:12.000Z", - "id": "645e47e288b1480158f2e037" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "UwSBQWI-bek", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-02T00:38:32.000Z", - "id": "645046a1e942ee012100f35b" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/waBWlJlMpyFb7STkFHfFvJKgwww.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/eMPxmNvJjxVZIQWI2t1VmNC5IuR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/iR0OHKW2Fng8yyuKhmQCd5j2Vom.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/84cS9oEm33jD05T0p39TbwADY8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/e8uGiKR2XhV4Zcm0U5JKCxPy8xS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/6KuNIGKXPi1nmGxSXPnHYfgehz4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cluzwi8vqVtTMeD2vHG8dFM9nol.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pknzyhP1Bnnlmn94VC8UlcoqfNn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1215, - "iso_639_1": "en", - "file_path": "/yG3bd7ZFz9gK6T3VYKic2jgXrT3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2160 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/rfUVMI6devjhmM0lN8iVqgkwYwL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.776, - "height": 1081, - "iso_639_1": "en", - "file_path": "/kwqVGjmpZbrAR8ycxULibvO9pEE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uScRrwovhJNGlC3LbpNusvmvLCD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/7QgNUbBbpKyUeh11zbX8CniL9gC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1260, - "iso_639_1": null, - "file_path": "/o4SBV32WdZZOd9mV9ng7zUUWG70.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2240 - } - ], - "logos": [ - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/esz2VF2MCl4NnUpOPq3XzIUfm8X.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/uZ5pSOdhForMQPUaf4zFu2u8h57.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/tG729221xBkECL7HGK5MlF4X8CE.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/x05IYi2CCD3K6RxJ5Cd7fAUuWTu.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/r6qFgL5ZtOJQRl8fv7GLe1W4Xk5.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - }, - { - "aspect_ratio": 2.977, - "height": 596, - "iso_639_1": "en", - "file_path": "/lyFS2aNN0MPazHsGwqbqmSaXfEl.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1774 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "uk", - "file_path": "/sDJm6zhD7nXkNo8MBdymJXWizBT.jpg", - "vote_average": 5.574, - "vote_count": 15, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ks", - "file_path": "/joai0d9CwvOcO5xFVUuePpeyHfu.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "en", - "file_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qA5kPYZA7FkVvqcEfJRoOy4kpHg.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2197, - "iso_639_1": "ro", - "file_path": "/itZK7TiZ9QhDULQBKLOPmGmLVSM.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1476 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "es", - "file_path": "/apxaWDCqjPrVc1v5HiKW2r10yiL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "en", - "file_path": "/mx4O9OEvIB265VM3UATLslsSW5t.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 1119 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "es", - "file_path": "/zKs57cx0vjIYSWUZq0oOMrqWSlN.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 1600, - "iso_639_1": "en", - "file_path": "/3rM3iBbDVkpxdh8adTn5uGvcDD2.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/awOlndX2n5hQZ9Scoy9MjqCnzgz.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": "sc", - "file_path": "/r5VQb0LDEZ0r5OHmAQirhOsWrru.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/lmR7QCgQNyUzvmlJk4pB4N7ksAv.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1678, - "iso_639_1": null, - "file_path": "/aoowU4JMr7ddUxfrHkwyQM5fAFE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1119 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "ru", - "file_path": "/5qC9ztUIX15mnZtcaU088M2gX9p.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ydKr0gwH1J69fcxa8JvX3BtDGkK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "pt", - "file_path": "/2BWhcrlPr6UvSJy5D044Ikq2QxH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.672, - "height": 1547, - "iso_639_1": null, - "file_path": "/o8nOQQoMB5fSzxW6wnHQvo8a2FF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1039 - }, - { - "aspect_ratio": 0.672, - "height": 2000, - "iso_639_1": null, - "file_path": "/tK4tigHq7qjyxRRsGhROu9PxaEO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/717930.json b/examples/view-transitions/src/content/movies/717930.json deleted file mode 100644 index c6cc02822c92..000000000000 --- a/examples/view-transitions/src/content/movies/717930.json +++ /dev/null @@ -1,2546 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://www.openroadfilms.com/movies/kandahar", - "id": 717930, - "imdb_id": "tt5761544", - "original_language": "en", - "original_title": "Kandahar", - "overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.", - "popularity": 1206.966, - "poster_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "production_companies": [ - { - "id": 3528, - "logo_path": "/cCzCClIzIh81Fa79hpW5nXoUsHK.png", - "name": "Thunder Road", - "origin_country": "US" - }, - { - "id": 103331, - "logo_path": "/nxkmGpo1Ym74DkBzNtoMz5cl6DJ.png", - "name": "G-BASE", - "origin_country": "US" - }, - { - "id": 145428, - "logo_path": "/dgUV94AxFEumfIICKEg5UdCCU3k.png", - "name": "MBC Studios", - "origin_country": "AE" - }, - { "id": 154063, "logo_path": null, "name": "Capstone Pictures", "origin_country": "US" } - ], - "production_countries": [ - { "iso_3166_1": "AE", "name": "United Arab Emirates" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-05-25", - "revenue": 3000000, - "runtime": 119, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "The only thing more dangerous than the mission is the escape.", - "title": "Kandahar", - "video": false, - "vote_average": 6.8, - "vote_count": 509, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 17276, - "known_for_department": "Acting", - "name": "Gerard Butler", - "original_name": "Gerard Butler", - "popularity": 77.589, - "profile_path": "/hAKPWWvUyvcfqPcoBG45c8NRr6e.jpg", - "cast_id": 1, - "character": "Tom Harris", - "credit_id": "5ef08dfc6e3deb0036a417ff", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 103330, - "known_for_department": "Acting", - "name": "Navid Negahban", - "original_name": "Navid Negahban", - "popularity": 10.944, - "profile_path": "/cPsYncbHK7J76Sm4bc1rtgRh5qf.jpg", - "cast_id": 16, - "character": "Mohammad 'Mo' Doud", - "credit_id": "620297f8ac6c79001bda27c6", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 77700, - "known_for_department": "Acting", - "name": "Travis Fimmel", - "original_name": "Travis Fimmel", - "popularity": 49.407, - "profile_path": "/kuTSw3I2hqb5N1QqYrXPX8zd8EA.jpg", - "cast_id": 117, - "character": "Roman Chalmers", - "credit_id": "648b63f1559d220139bc0f7f", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 492791, - "known_for_department": "Acting", - "name": "Ali Fazal", - "original_name": "Ali Fazal", - "popularity": 4.129, - "profile_path": "/zNCDN1L2WftXVGW9EJcjvtmEsll.jpg", - "cast_id": 15, - "character": "Kahil Nasir", - "credit_id": "620297eecb6db5006d6b2339", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 1437659, - "known_for_department": "Acting", - "name": "Bahador Foladi", - "original_name": "Bahador Foladi", - "popularity": 2.196, - "profile_path": "/iciyiV1tj2osd3JTOInoc24e4r3.jpg", - "cast_id": 22, - "character": "Farzad Asadi", - "credit_id": "623b71bb211ce50088bda0de", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 1227646, - "known_for_department": "Acting", - "name": "Nina Toussaint-White", - "original_name": "Nina Toussaint-White", - "popularity": 4.655, - "profile_path": "/pnuX4VjMKvIrddthUPKq5xebEmM.jpg", - "cast_id": 18, - "character": "Luna Cujai", - "credit_id": "62029826f706de010d42dd6e", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 119893, - "known_for_department": "Acting", - "name": "Mark Arnold", - "original_name": "Mark Arnold", - "popularity": 6.444, - "profile_path": "/dTfoxBUC6jpZry0ijlS8g4Y5cuS.jpg", - "cast_id": 119, - "character": "Mark Lowe", - "credit_id": "64c9101bb9744200eb520ef3", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 17199, - "known_for_department": "Acting", - "name": "Corey Johnson", - "original_name": "Corey Johnson", - "popularity": 4.007, - "profile_path": "/mhNbf4vGzixPL5mTIOBUPguqvpB.jpg", - "cast_id": 33, - "character": "Chris Hoyt", - "credit_id": "63fcd3ec84f24900ccd28623", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 3708802, - "known_for_department": "Acting", - "name": "Hakeem Jomah", - "original_name": "Hakeem Jomah", - "popularity": 0.7, - "profile_path": "/aSg7doju4pfjfxAzN6miWW8dhLM.jpg", - "cast_id": 28, - "character": "Rasoul", - "credit_id": "63fcd3706aa8e000f0b7854a", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1327945, - "known_for_department": "Acting", - "name": "Tom Rhys Harries", - "original_name": "Tom Rhys Harries", - "popularity": 4.994, - "profile_path": "/inO5x5hL08SxTM7F9p3MGGVFJqQ.jpg", - "cast_id": 20, - "character": "Oliver Altman", - "credit_id": "623b7160211ce5004786c0a2", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 965673, - "known_for_department": "Acting", - "name": "Ray Haratian", - "original_name": "Ray Haratian", - "popularity": 2.196, - "profile_path": "/1DcOx50pdS1xgybHBiDNBpkRFkz.jpg", - "cast_id": 29, - "character": "Ismail Rabbani", - "credit_id": "63fcd3906aa8e000c62d4e7f", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 2114526, - "known_for_department": "Acting", - "name": "Elnaaz Norouzi", - "original_name": "Elnaaz Norouzi", - "popularity": 13.996, - "profile_path": "/vClWBDxwNfajDopECzqmn0HSwjN.jpg", - "cast_id": 120, - "character": "Shina Asadi", - "credit_id": "64c9103408cf8700ff55e8e5", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 2723390, - "known_for_department": "Acting", - "name": "Olivia-Mai Barrett", - "original_name": "Olivia-Mai Barrett", - "popularity": 7.035, - "profile_path": "/gWZRzvOnUxZmvdzHuxBvIS0BEJP.jpg", - "cast_id": 21, - "character": "Ida Harris", - "credit_id": "623b7186719aeb00486c0028", - "order": 12 - }, - { - "adult": false, - "gender": 1, - "id": 1355139, - "known_for_department": "Acting", - "name": "Rebecca Calder", - "original_name": "Rebecca Calder", - "popularity": 3.314, - "profile_path": "/ifz75sAvBE4552GZNmdxRrdygkK.jpg", - "cast_id": 116, - "character": "Corrine Harris", - "credit_id": "6444cbd805822402fb331c22", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1905531, - "known_for_department": "Acting", - "name": "Vassilis Koukalani", - "original_name": "Vassilis Koukalani", - "popularity": 4.182, - "profile_path": "/ysb6jYjtb5AkDpWhl09Xfgy9xUO.jpg", - "cast_id": 27, - "character": "Bashar", - "credit_id": "63fcd361344a8e007cbac9f2", - "order": 14 - }, - { - "adult": false, - "gender": 0, - "id": 2546937, - "known_for_department": "Acting", - "name": "Farzad Bagheri", - "original_name": "Farzad Bagheri", - "popularity": 0.6, - "profile_path": null, - "cast_id": 30, - "character": "Parshand", - "credit_id": "63fcd39ce4b576007c76b534", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 3108658, - "known_for_department": "Acting", - "name": "Ross Berkeley Simpson", - "original_name": "Ross Berkeley Simpson", - "popularity": 0.98, - "profile_path": null, - "cast_id": 121, - "character": "English Newscaster 1", - "credit_id": "64c91074d5191f01396f9da9", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2113546, - "known_for_department": "Acting", - "name": "Lee Comley", - "original_name": "Lee Comley", - "popularity": 1.104, - "profile_path": "/tVSWNED3nAaHHXHRHBnbvM69gsT.jpg", - "cast_id": 32, - "character": "English Newscaster 2", - "credit_id": "63fcd3b857176f00bcc0b37b", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 2086134, - "known_for_department": "Directing", - "name": "Najia Khaan", - "original_name": "Najia Khaan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 34, - "character": "Nahal Hosseini", - "credit_id": "63fcd40a72d85500792107e0", - "order": 18 - }, - { - "adult": false, - "gender": 1, - "id": 2742945, - "known_for_department": "Acting", - "name": "Reem AlHabib", - "original_name": "Reem AlHabib", - "popularity": 0.6, - "profile_path": "/twGZr9rOisLJpGKtFkkbulhxF4w.jpg", - "cast_id": 122, - "character": "Adela Doud", - "credit_id": "64c9111308cf8700ff55e965", - "order": 19 - }, - { - "adult": false, - "gender": 2, - "id": 109669, - "known_for_department": "Acting", - "name": "Fahim Fazli", - "original_name": "Fahim Fazli", - "popularity": 2.671, - "profile_path": "/hNjSzr3quACIMwotRaRM2yKi9fU.jpg", - "cast_id": 31, - "character": "Taliban commander", - "credit_id": "63fcd3ac344a8e00aa1c5f7a", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 3941529, - "known_for_department": "Acting", - "name": "Darius Radac", - "original_name": "Darius Radac", - "popularity": 0.6, - "profile_path": null, - "cast_id": 35, - "character": "Stuart Sutherland", - "credit_id": "63fcd41396e30b0083271b72", - "order": 21 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 3501, - "known_for_department": "Production", - "name": "Daniel Hubbard", - "original_name": "Daniel Hubbard", - "popularity": 1.873, - "profile_path": "/1lu2KM4WgcT2W950iYnzLTizJP7.jpg", - "credit_id": "63fcd46d72d85500d4c6ae62", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 17276, - "known_for_department": "Acting", - "name": "Gerard Butler", - "original_name": "Gerard Butler", - "popularity": 77.589, - "profile_path": "/hAKPWWvUyvcfqPcoBG45c8NRr6e.jpg", - "credit_id": "620296f9e004a6001cd58db4", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 18617, - "known_for_department": "Editing", - "name": "Colby Parker Jr.", - "original_name": "Colby Parker Jr.", - "popularity": 1.077, - "profile_path": null, - "credit_id": "63fcd456e4b57600bd396fbd", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 22233, - "known_for_department": "Camera", - "name": "Jack Serino", - "original_name": "Jack Serino", - "popularity": 0.94, - "profile_path": "/3IC5fFjESgjbEqE7umwMYapQI7t.jpg", - "credit_id": "63fcd87d96e30b0087f8dd24", - "department": "Lighting", - "job": "Key Rigging Grip" - }, - { - "adult": false, - "gender": 2, - "id": 43095, - "known_for_department": "Production", - "name": "Tom Ortenberg", - "original_name": "Tom Ortenberg", - "popularity": 1.589, - "profile_path": null, - "credit_id": "632b43a839b6c3007e0cd230", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 50988, - "known_for_department": "Production", - "name": "Scott LaStaiti", - "original_name": "Scott LaStaiti", - "popularity": 1.025, - "profile_path": null, - "credit_id": "62029728439be100aacc32a3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 67759, - "known_for_department": "Production", - "name": "Basil Iwanyk", - "original_name": "Basil Iwanyk", - "popularity": 5.139, - "profile_path": "/7ULVJcHinmbUkjGrjseCgAztcx4.jpg", - "credit_id": "620296c42b932000675fbc69", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 76422, - "known_for_department": "Directing", - "name": "Ric Roman Waugh", - "original_name": "Ric Roman Waugh", - "popularity": 3.543, - "profile_path": "/cu0MJd4exIgSLgaE0uwMDTFQcpA.jpg", - "credit_id": "5ef08e2910dad60032c05f57", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 225635, - "known_for_department": "Sound", - "name": "David Buckley", - "original_name": "David Buckley", - "popularity": 1.66, - "profile_path": "/q1yKKLlYetpFUhR9mrn8gw1SoxE.jpg", - "credit_id": "63fcd44872d8550085a3413b", - "department": "Sound", - "job": "Music" - }, - { - "adult": false, - "gender": 2, - "id": 575735, - "known_for_department": "Acting", - "name": "Danko Jordanov", - "original_name": "Danko Jordanov", - "popularity": 1.285, - "profile_path": "/6fD2hP2eDfuwgpGx5zJOO4AX9mY.jpg", - "credit_id": "63fcd6fae4b576009d1bb345", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 2, - "id": 582624, - "known_for_department": "Production", - "name": "Alan Siegel", - "original_name": "Alan Siegel", - "popularity": 1.4, - "profile_path": null, - "credit_id": "620296ef4df2910108772950", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 587803, - "known_for_department": "Costume & Make-Up", - "name": "Kimberly Adams", - "original_name": "Kimberly Adams", - "popularity": 0.649, - "profile_path": "/hf94FYY3ggQiCi1gDuxOlx3zlA4.jpg", - "credit_id": "63fcd4c5344a8e00aa1c6022", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 1027579, - "known_for_department": "Art", - "name": "Vincent Reynaud", - "original_name": "Vincent Reynaud", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd47d6aa8e0007c047dba", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 1080636, - "known_for_department": "Acting", - "name": "Ivailo Dimitrov", - "original_name": "Ivailo Dimitrov", - "popularity": 1.363, - "profile_path": "/vfxpj3C7CfRYXa401jG3R9Y58JT.jpg", - "credit_id": "64a89b1db686b9012f85dac5", - "department": "Crew", - "job": "Utility Stunts" - }, - { - "adult": false, - "gender": 2, - "id": 1284037, - "known_for_department": "Camera", - "name": "MacGregor", - "original_name": "MacGregor", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63017d115f4b73007af0eb88", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1335559, - "known_for_department": "Sound", - "name": "Dominic Gibbs", - "original_name": "Dominic Gibbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd63ee4b5760081578252", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1337412, - "known_for_department": "Sound", - "name": "Jason Swanscott", - "original_name": "Jason Swanscott", - "popularity": 0.874, - "profile_path": null, - "credit_id": "63fcd6a5344a8e00e6cecb6c", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1350254, - "known_for_department": "Crew", - "name": "Dian Hristov", - "original_name": "Dian Hristov", - "popularity": 2.456, - "profile_path": "/92Dscadv00Q6p9SUKxEOXAERqST.jpg", - "credit_id": "63fcd6ef72d85500d4c6afc6", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1383073, - "known_for_department": "Sound", - "name": "Tom Hambleton", - "original_name": "Tom Hambleton", - "popularity": 1.22, - "profile_path": null, - "credit_id": "63fcd64896e30b009fcab687", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1399863, - "known_for_department": "Crew", - "name": "Joe Pancake", - "original_name": "Joe Pancake", - "popularity": 1.024, - "profile_path": null, - "credit_id": "63fcd6c696e30b0083271cd8", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1402926, - "known_for_department": "Sound", - "name": "Andrew Neil", - "original_name": "Andrew Neil", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd67e96e30b0083271cb4", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1408393, - "known_for_department": "Camera", - "name": "Hopper Stone", - "original_name": "Hopper Stone", - "popularity": 0.947, - "profile_path": null, - "credit_id": "63fcd88796e30b009fcab79d", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 2, - "id": 1410216, - "known_for_department": "Camera", - "name": "Dave Isern", - "original_name": "Dave Isern", - "popularity": 0.6, - "profile_path": "/6upiKn0TBAH1TyARY0GbvEyQeBq.jpg", - "credit_id": "63fcd7ef344a8e00aa1c61e8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1412733, - "known_for_department": "Costume & Make-Up", - "name": "Anita Lowe", - "original_name": "Anita Lowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd50772d85500bc84cdc8", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1426745, - "known_for_department": "Crew", - "name": "Jason Paradis", - "original_name": "Jason Paradis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "63fcd6bce4b57600bd3970d5", - "department": "Crew", - "job": "Special Effects Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 1428252, - "known_for_department": "Production", - "name": "Christian Mercuri", - "original_name": "Christian Mercuri", - "popularity": 0.98, - "profile_path": null, - "credit_id": "620297072b531d2b8d8300a3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1429626, - "known_for_department": "Production", - "name": "Miranda Davidson", - "original_name": "Miranda Davidson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd462e4b576009d1bb1dd", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 1452224, - "known_for_department": "Crew", - "name": "Anas Balawi", - "original_name": "Anas Balawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd48be4b57600a8810067", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1452224, - "known_for_department": "Crew", - "name": "Anas Balawi", - "original_name": "Anas Balawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4b196e30b007bd1db6b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 1475893, - "known_for_department": "Directing", - "name": "Jennifer Josephson", - "original_name": "Jennifer Josephson", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8ca344a8e008ec667bf", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1555183, - "known_for_department": "Camera", - "name": "Vishal Jain", - "original_name": "Vishal Jain", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63fcd7fd344a8e00867dc638", - "department": "Camera", - "job": "First Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1559439, - "known_for_department": "Sound", - "name": "Michael Botha", - "original_name": "Michael Botha", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd61e57176f00db8042fe", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1568535, - "known_for_department": "Editing", - "name": "Cheryl Goodbody", - "original_name": "Cheryl Goodbody", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5626aa8e000c62d4f98", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1638554, - "known_for_department": "Camera", - "name": "Andrea Quaglio", - "original_name": "Andrea Quaglio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd86872d85500bc84cf97", - "department": "Camera", - "job": "First Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 1643667, - "known_for_department": "Directing", - "name": "Ali Cherkaoui", - "original_name": "Ali Cherkaoui", - "popularity": 0.6, - "profile_path": "/rr7jWQVSmjr2zW1LL0e19MMCscF.jpg", - "credit_id": "63fcd58096e30b00dd714417", - "department": "Directing", - "job": "First Assistant Director (Prep)" - }, - { - "adult": false, - "gender": 0, - "id": 1653508, - "known_for_department": "Sound", - "name": "Ben Chick", - "original_name": "Ben Chick", - "popularity": 0.997, - "profile_path": null, - "credit_id": "63fcd62972d85500d4c6af64", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1701648, - "known_for_department": "Crew", - "name": "Stilyan Mavrov", - "original_name": "Stilyan Mavrov", - "popularity": 0.682, - "profile_path": "/LlitrtRpvpDcSkTPjAVTjcS7fD.jpg", - "credit_id": "63fcd70457176f00db804372", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 1, - "id": 1701654, - "known_for_department": "Crew", - "name": "Elitsa Razheva", - "original_name": "Elitsa Razheva", - "popularity": 1.7, - "profile_path": null, - "credit_id": "63fcd7196aa8e0008e848aa6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 1715566, - "known_for_department": "Lighting", - "name": "Ian Hotujac", - "original_name": "Ian Hotujac", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7e3344a8e00e6cecbf5", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 1784629, - "known_for_department": "Sound", - "name": "Mike Tehrani", - "original_name": "Mike Tehrani", - "popularity": 0.601, - "profile_path": null, - "credit_id": "63fcd69ae4b576007c76b6f3", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1892944, - "known_for_department": "Production", - "name": "Raghav Khanna", - "original_name": "Raghav Khanna", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd80972d855009d60ea30", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 2, - "id": 1932090, - "known_for_department": "Production", - "name": "Jonathan Fuhrman", - "original_name": "Jonathan Fuhrman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202975ca61de100e13c1199", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1932093, - "known_for_department": "Production", - "name": "Erica Lee", - "original_name": "Erica Lee", - "popularity": 0.75, - "profile_path": null, - "credit_id": "620296d196670e008f84d4c7", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1968660, - "known_for_department": "Production", - "name": "Patel Cyrus", - "original_name": "Patel Cyrus", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd56c6aa8e000c62d4fa2", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1973268, - "known_for_department": "Sound", - "name": "Stuart Bagshaw", - "original_name": "Stuart Bagshaw", - "popularity": 0.98, - "profile_path": null, - "credit_id": "63fcd61296e30b0087f8dbf4", - "department": "Sound", - "job": "Foley Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1983857, - "known_for_department": "Sound", - "name": "Mark Taylor", - "original_name": "Mark Taylor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd68f57176f0081d6e3e7", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2024663, - "known_for_department": "Camera", - "name": "Beatriz Delgado", - "original_name": "Beatriz Delgado", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd791e4b57600bd39714d", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2072506, - "known_for_department": "Art", - "name": "Keith Weir", - "original_name": "Keith Weir", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5e296e30b00dd714443", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 2120857, - "known_for_department": "Costume & Make-Up", - "name": "Hilary Hughes", - "original_name": "Hilary Hughes", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8b272d8550085a343a4", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2154907, - "known_for_department": "Acting", - "name": "Reni Sirmina", - "original_name": "Reni Sirmina", - "popularity": 2.119, - "profile_path": "/k5x3OuN7DfUTyLjOKUWMmDJiMT4.jpg", - "credit_id": "63fcd72b57176f0081d6e428", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 2157714, - "known_for_department": "Camera", - "name": "Hassan Hajhouj", - "original_name": "Hassan Hajhouj", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7d86aa8e00096903688", - "department": "Lighting", - "job": "Rigging Grip" - }, - { - "adult": false, - "gender": 2, - "id": 2264266, - "known_for_department": "Production", - "name": "James Masciello", - "original_name": "James Masciello", - "popularity": 0.6, - "profile_path": null, - "credit_id": "632b43e6ef9d72007e3496b7", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2389445, - "known_for_department": "Production", - "name": "David Haring", - "original_name": "David Haring", - "popularity": 1.942, - "profile_path": null, - "credit_id": "62029718e004a6006773f824", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 2500622, - "known_for_department": "Crew", - "name": "Zarene Dallas", - "original_name": "Zarene Dallas", - "popularity": 2.673, - "profile_path": "/pCpRhGfErWK0jkagdmGQGpy0hLl.jpg", - "credit_id": "63fcd6e4344a8e00aa1c616c", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2511819, - "known_for_department": "Art", - "name": "Pateel Kishmishian", - "original_name": "Pateel Kishmishian", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5fb344a8e00e6cecb00", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 2534011, - "known_for_department": "Production", - "name": "Rob Moran", - "original_name": "Rob Moran", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5f2ac9ad4b6d9d0036837512", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2580099, - "known_for_department": "Sound", - "name": "Alan MacFeely", - "original_name": "Alan MacFeely", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd66672d85500818932c9", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2661311, - "known_for_department": "Acting", - "name": "Wesley Green", - "original_name": "Wesley Green", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7c884f24900a9425b6c", - "department": "Camera", - "job": "Drone Pilot" - }, - { - "adult": false, - "gender": 0, - "id": 2668082, - "known_for_department": "Editing", - "name": "Simon Adegbenro", - "original_name": "Simon Adegbenro", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd57684f249008615c9a8", - "department": "Directing", - "job": "Second Second Assistant Director" - }, - { - "adult": false, - "gender": 2, - "id": 2762067, - "known_for_department": "Crew", - "name": "Jason Tubbs", - "original_name": "Jason Tubbs", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd735e4b57600bd397115", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 2784705, - "known_for_department": "Directing", - "name": "Michael Saunders", - "original_name": "Michael Saunders", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd59d6aa8e00096903563", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2789861, - "known_for_department": "Acting", - "name": "César Villalba", - "original_name": "César Villalba", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd89e96e30b0087f8dd30", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2851968, - "known_for_department": "Sound", - "name": "Alex Stylianou", - "original_name": "Alex Stylianou", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd6ae57176f007cfdfacc", - "department": "Sound", - "job": "ADR Recordist" - }, - { - "adult": false, - "gender": 0, - "id": 2858140, - "known_for_department": "Production", - "name": "Brendon Boyea", - "original_name": "Brendon Boyea", - "popularity": 0.6, - "profile_path": null, - "credit_id": "620296da2f3b1700432650b3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2872100, - "known_for_department": "Sound", - "name": "Alayn Crespo", - "original_name": "Alayn Crespo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd63396e30b00dd714485", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2878740, - "known_for_department": "Camera", - "name": "Yakoubi Nordine", - "original_name": "Yakoubi Nordine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd84696e30b0083271d82", - "department": "Camera", - "job": "Dolly Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2899431, - "known_for_department": "Production", - "name": "Rory Okey", - "original_name": "Rory Okey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd8a896e30b00dd7145b2", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2988214, - "known_for_department": "Costume & Make-Up", - "name": "Zainab Jaye", - "original_name": "Zainab Jaye", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4de6aa8e00096903505", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3001599, - "known_for_department": "Camera", - "name": "Naoufal Lamkealal", - "original_name": "Naoufal Lamkealal", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd81b57176f007cfdfb52", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3077581, - "known_for_department": "Crew", - "name": "Athba AlKhudairy", - "original_name": "Athba AlKhudairy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5326aa8e000f0b78620", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3418212, - "known_for_department": "Production", - "name": "Ruzanna Kegeyan", - "original_name": "Ruzanna Kegeyan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "62029738a61de100e13c1151", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3418213, - "known_for_department": "Production", - "name": "Andrea Dimity", - "original_name": "Andrea Dimity", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202975235c30a006afa445f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3418216, - "known_for_department": "Writing", - "name": "Mitchell LaFortune", - "original_name": "Mitchell LaFortune", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6202981035c30a001d5e76e8", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 3455596, - "known_for_department": "Costume & Make-Up", - "name": "Jules Chapman", - "original_name": "Jules Chapman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4d16aa8e000c62d4f3e", - "department": "Costume & Make-Up", - "job": "Hair Department Head" - }, - { - "adult": false, - "gender": 0, - "id": 3521476, - "known_for_department": "Art", - "name": "Razanah Silawi", - "original_name": "Razanah Silawi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4bae4b5760085599e6b", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3584954, - "known_for_department": "Art", - "name": "Christian Zollenkopf", - "original_name": "Christian Zollenkopf", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4a6e4b576009d1bb1fe", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3622444, - "known_for_department": "Costume & Make-Up", - "name": "Pati Martí Donoghue", - "original_name": "Pati Martí Donoghue", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd4fc96e30b00be5aaeea", - "department": "Costume & Make-Up", - "job": "Makeup Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3654455, - "known_for_department": "Acting", - "name": "Anna Albiach", - "original_name": "Anna Albiach", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd743e4b57600bd39711a", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3671476, - "known_for_department": "Production", - "name": "Patricia Wheeler", - "original_name": "Patricia Wheeler", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5a86aa8e000f0b7866b", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3710002, - "known_for_department": "Production", - "name": "Matthew Sidari", - "original_name": "Matthew Sidari", - "popularity": 0.6, - "profile_path": null, - "credit_id": "632b43d66ca9a0007d7f74c1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3736597, - "known_for_department": "Camera", - "name": "James France", - "original_name": "James France", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7b072d85500d4c6b03b", - "department": "Crew", - "job": "Drone Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3871339, - "known_for_department": "Art", - "name": "Michael Coja", - "original_name": "Michael Coja", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5c884f249008615c9db", - "department": "Art", - "job": "Standby Property Master" - }, - { - "adult": false, - "gender": 0, - "id": 3924147, - "known_for_department": "Camera", - "name": "Raul Vasquez", - "original_name": "Raul Vasquez", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd89472d8550079210a52", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3941535, - "known_for_department": "Art", - "name": "Vatsal Mistry", - "original_name": "Vatsal Mistry", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd49b72d8550079210823", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3941543, - "known_for_department": "Crew", - "name": "Mouthanna Al-Sayegh", - "original_name": "Mouthanna Al-Sayegh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd5116aa8e0008e848983", - "department": "Crew", - "job": "Post-Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3941544, - "known_for_department": "Production", - "name": "Rayan Aljowair", - "original_name": "Rayan Aljowair", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd52584f249008615c979", - "department": "Production", - "job": "Assistant Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3941547, - "known_for_department": "Production", - "name": "Maxine De Vere", - "original_name": "Maxine De Vere", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd541344a8e00867dc4a6", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3941552, - "known_for_department": "Art", - "name": "Mahdi Jahangir", - "original_name": "Mahdi Jahangir", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd607e4b5760081578230", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3941555, - "known_for_department": "Sound", - "name": "Louisa Kearns", - "original_name": "Louisa Kearns", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd65372d85500d4c6af82", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3941556, - "known_for_department": "Sound", - "name": "Oliver Miszti", - "original_name": "Oliver Miszti", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd672e4b5760085599f74", - "department": "Sound", - "job": "Sound Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3941557, - "known_for_department": "Crew", - "name": "Ben Menzies", - "original_name": "Ben Menzies", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd70c72d85500d4c6afd8", - "department": "Crew", - "job": "Stunt Driver" - }, - { - "adult": false, - "gender": 0, - "id": 3941559, - "known_for_department": "Camera", - "name": "Adrian Alescio", - "original_name": "Adrian Alescio", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd76296e30b009fcab722", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3941560, - "known_for_department": "Camera", - "name": "Mathiew Chambers", - "original_name": "Mathiew Chambers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd781e4b57600a8810205", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941561, - "known_for_department": "Camera", - "name": "Nico Di Masso", - "original_name": "Nico Di Masso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd79e84f249008615cab5", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3941562, - "known_for_department": "Camera", - "name": "Manish Ghadge", - "original_name": "Manish Ghadge", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd7bc72d85500792109d4", - "department": "Camera", - "job": "Second Assistant \"C\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941566, - "known_for_department": "Camera", - "name": "Arkaitz Latorre", - "original_name": "Arkaitz Latorre", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd82957176f00db8043fc", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941568, - "known_for_department": "Camera", - "name": "Arslan Muhammad", - "original_name": "Arslan Muhammad", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd83884f24900ef623614", - "department": "Camera", - "job": "Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3941570, - "known_for_department": "Camera", - "name": "Jonathan Pears", - "original_name": "Jonathan Pears", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63fcd85372d855009d60ea5d", - "department": "Camera", - "job": "Camera Operator" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "“I Should’ve Told You the Truth Earlier!” Extended Preview", - "key": "VlJ-uGKbnuE", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-19T16:00:33.000Z", - "id": "64b858891d5386011eac751a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Yours to Own Promo", - "key": "WrAnd6AMfH0", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-07-11T13:00:32.000Z", - "id": "64ad8e4c66a0d3011d7cfd2b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Watch at Home Now", - "key": "Xe57KV2OyM4", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-06-15T13:00:15.000Z", - "id": "648c4fffc3c89100cad96b23" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "WHs6z9RPGtA", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T14:36:26.000Z", - "id": "642c5dbdc044290236cccc67" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Canadian Trailer", - "key": "IBh9c2WFFz0", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-04-04T13:47:14.000Z", - "id": "646581ec006b010126f45cd0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "bRPxeMUqAKc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-02-15T19:23:45.000Z", - "id": "63ee3e391b7294008e171cc3" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/9VF4NfEvhcQs3GiL3vCS8uZv3O8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/nIYyCGhCq0synnWJg7P4sJoQNLj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/6pqjrhQ1SIEYOJKDhHrQen2TU3G.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "hi", - "file_path": "/4qyCXX3iN0IeRF0hxp5vDmYxct5.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/r7rQ7LZvi1u0vxMnrj4GvyPFYss.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4wYt0YigWl1gHDDCmlv9bzjzTBn.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/igXrblWrU1uaC09VKyquHHSebr.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1152, - "iso_639_1": null, - "file_path": "/rqCnwXaCN6Hau5GzSXRJ4Nvl5Mh.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2048 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sINmOXAeFZutLprGyELychwPKKz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/viYcuT12gUMhgAkNuDTMcpdDkib.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/omlbKt6XxKKGVlfHd3AZcdunBBR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/7P2YuVYYr4jaI5bNVe5uD0gxcxh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/J7mGPuxLSkrwXxPaZu1NWcJIyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/A9wfX0PHNYURZiCtM0MUWP0lMkt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8XKaQAkVeb4mb4N7yUqOSzqxlIp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/2KbJWD52GzffiVCvvBbVmVGtRfo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/yah62W4No3XvV9WIAAJqZYqq3On.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/al3nQvsUrhGkNKW4cVwj6pazeBP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/mahX40mxfEe7duFTbcbRh9DhbPa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "it", - "file_path": "/4mQ4ILsLLrDXqa7pb5i5774aYCz.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/8TLkiYAUwEXInVCJ3cQVyZXChyZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/d4v607nG3w5DLMYoj525ygXJk4K.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 9.074, - "height": 476, - "iso_639_1": "en", - "file_path": "/91We7JCqlfWVEv7z908E1wd8h7b.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4319 - }, - { - "aspect_ratio": 8.711, - "height": 90, - "iso_639_1": "en", - "file_path": "/k2fGMHP3I1GwEAODLAFU7MRj8ps.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 784 - }, - { - "aspect_ratio": 3.972, - "height": 217, - "iso_639_1": "uk", - "file_path": "/e0Yxzbc30fa4kLphBG5SoIMFmnU.png", - "vote_average": 0, - "vote_count": 0, - "width": 862 - }, - { - "aspect_ratio": 9.326, - "height": 86, - "iso_639_1": "es", - "file_path": "/e2a7E0o9OXesjfP2nwUJrVtUpF5.png", - "vote_average": 0, - "vote_count": 0, - "width": 802 - }, - { - "aspect_ratio": 9.074, - "height": 476, - "iso_639_1": "en", - "file_path": "/cixOBgr5AMtMu0PN5ii1nrWAgFP.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 6.043, - "height": 693, - "iso_639_1": "en", - "file_path": "/6VAsUnhCjW7lqbT2VU4mxlB8k5x.png", - "vote_average": 0, - "vote_count": 0, - "width": 4188 - }, - { - "aspect_ratio": 4.527, - "height": 226, - "iso_639_1": "pt", - "file_path": "/3Yxx2nFC2ISBJVahu9q1FClWtDX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1023 - }, - { - "aspect_ratio": 5.458, - "height": 107, - "iso_639_1": "it", - "file_path": "/g840BTZ3q48Annp2ZXb6Aj7Z2Eg.png", - "vote_average": 0, - "vote_count": 0, - "width": 584 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "vote_average": 5.522, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/bedv18cZEfVQGWIztCE8dNaJB4s.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/jekoGDQ6draaeroQ9lm3euvOB03.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9Y948q83aoHXsKeKat6oPDK8t9c.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/keT57nO3QcgrxzTKXH9v4hopI8g.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/ezNxCR9fju6gnTnJ4W6KgcZhD4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.725, - "height": 1770, - "iso_639_1": "es", - "file_path": "/qE2EsMv37IjXLjc6ixOU3LeRtZl.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1283 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/4XTsoBLl303HE5bLttERQpyDvZt.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "th", - "file_path": "/5kE30zmcRe3bTcl7JHYfkszm0cN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/3YyDSvFWg2RezQlshNenpz90UvP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/y8vgFrFzezLtDMS7Q9OUyaO18pK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/mkzXrx1cAeCsVWLpWx0ZZeBHuTq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zPMGGNMLP0JhxVG3yeL0qWs6nHd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/xsmNNU5UbnurOnCOdUHbpv2XyFI.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1950, - "iso_639_1": "uk", - "file_path": "/yCZ1GJMOmnkmi4Cf586Pru9alr9.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1300 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/LgNt3WLrOt17G6ln4Y9EqacZBF.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/aQYselwVs2RbmV2BRG1l3AqDbPT.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/1cnr1M6n78FhfZIKjF9sAX8Rt3p.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8CE1Hv6NSaAzL1LdrjUYu9UW0fK.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kMGuYyt25Ik9ovhf2gxeSWoLhF7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/ykyjIaxqQG5w8wmkWtTHpahLzi1.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/gVh7d9n9WtUS6VSEaRXpGSTyhHW.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/A0GxQDOxckVGCqwJsWw2O6cY1ZW.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 750, - "iso_639_1": "he", - "file_path": "/5R1QcZygMf6yKck0x1DENeQeNLu.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 525 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/ejJP2WZqtpASlewLx9D94K3ed2m.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/wM0G5ECbY69S8isZAwRAyKlboMK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/gcJucpXF8N3pHzb42oxsAjhNqLO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/i5HRQUpliHKj4ZYGv2bZd6UhGRq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/jLGYJn7ygP7TBxvLImAbTrvbae1.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "en", - "file_path": "/4KMTsGvW9JtVzd5NyNldfv7uKvg.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/pXYaU0iFrljaMZL4NSjBX7yXSW5.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/9KR32LVElXE6lJuilwt8Ncic1Xk.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 2000, - "iso_639_1": "es", - "file_path": "/rnAtTLfO4HiOXXxkqj4sPctXyWq.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/vhTPo0ODElsM7Ow5Euu1bEY6vPi.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/f5I5mk0nZzVBRJmeG6kl8aHdAgm.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/lrZyrYCWiQO8ljwhH9sX5RlZN5l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/pDkpD4fl3Ug59GGMkaWxfNbmO2b.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1762, - "iso_639_1": "pt", - "file_path": "/ArDXxgsELJanwYDXd60MLTZDiSj.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1175 - }, - { - "aspect_ratio": 0.666, - "height": 1763, - "iso_639_1": "en", - "file_path": "/9RRFYhHYLLbwMM2aflh6l5J3JM3.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1175 - }, - { - "aspect_ratio": 0.667, - "height": 2018, - "iso_639_1": "en", - "file_path": "/oafmtPoumiUO1BaxgNNiVLeVXio.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1345 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/ntD9oKZ544C7cawUzWrBkrXqgbh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/AdNDXFzuClhkD3wULLTvL992L8Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1926, - "iso_639_1": "el", - "file_path": "/7O57HLkDHlHY0SpHHZXr6SR0Kdf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1300 - }, - { - "aspect_ratio": 0.675, - "height": 1926, - "iso_639_1": "el", - "file_path": "/drPNB8ID0uZKw994Sfxb7YPiIA5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1300 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rVq4EYHVc4ZkGIcF81PcnMlWkSf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ro", - "file_path": "/wCGiASRZ692kdwnCtzt7td58XLa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cR2fVSun4yvYRzYGJHQU0RpSsmC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "th", - "file_path": "/r9EfndyPcLeAbGVHru9VQ3au6xv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.666, - "height": 2863, - "iso_639_1": "fr", - "file_path": "/r8Cwc41H0VIm121i7IILbGkirJp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1908 - }, - { - "aspect_ratio": 0.667, - "height": 2154, - "iso_639_1": "fr", - "file_path": "/hqLzZSBM4HdhAFryhZiJuuXgtkb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1436 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/oVGLRgoLujeNkVZkj5pqqPU8t4m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/lxtt48VB2DddM1qAwHcGHctNOq8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/qLAgPsNxoiUZ6VeVEUdhSz7bMHR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "ko", - "file_path": "/M2w3Hl3Xnjwjm06A14PuuRVOWe.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1890 - }, - { - "aspect_ratio": 0.71, - "height": 1352, - "iso_639_1": "cn", - "file_path": "/yS8YNS4dJJIK9AiEImS1JR6PhJs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 960, - "iso_639_1": "de", - "file_path": "/jE93yuNBqGGQ9zvgQsZPiUsPmhE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 640 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": "pt", - "file_path": "/ciIu5NReKFlVFrwDBgTOPiN9yot.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "pt", - "file_path": "/jLDX3Dut9FTH4XjtPZDRaALHNRn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1440, - "iso_639_1": null, - "file_path": "/25plYYaf1qB4yBiNH3Dy5Y1M0Yk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 960 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": null, - "file_path": "/8NQhrJo9bUdFnBnb3IrSYyDxKeu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/762430.json b/examples/view-transitions/src/content/movies/762430.json deleted file mode 100644 index 79826fe66cc7..000000000000 --- a/examples/view-transitions/src/content/movies/762430.json +++ /dev/null @@ -1,2181 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "belongs_to_collection": null, - "budget": 20000000, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 9648, "name": "Mystery" }, - { "id": 53, "name": "Thriller" }, - { "id": 80, "name": "Crime" } - ], - "homepage": "https://www.lionsgate.com/movies/retribution", - "id": 762430, - "imdb_id": "tt6906292", - "original_language": "en", - "original_title": "Retribution", - "overview": "When a mysterious caller puts a bomb under his car seat, Matt Turner begins a high-speed chase across the city to complete a specific series of tasks. With his kids trapped in the back seat and a bomb that will explode if they get out of the car, a normal commute becomes a twisted game of life or death as Matt follows the stranger's increasingly dangerous instructions in a race against time to save his family.", - "popularity": 702.724, - "poster_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "production_companies": [ - { - "id": 694, - "logo_path": "/5LEHONGkZBIoWvp1ygHOF8iyi1M.png", - "name": "StudioCanal", - "origin_country": "FR" - }, - { "id": 99132, "logo_path": null, "name": "The Picture Company", "origin_country": "US" }, - { "id": 23513, "logo_path": null, "name": "Ombra Films", "origin_country": "US" } - ], - "production_countries": [ - { "iso_3166_1": "FR", "name": "France" }, - { "iso_3166_1": "US", "name": "United States of America" } - ], - "release_date": "2023-08-23", - "revenue": 12905464, - "runtime": 91, - "spoken_languages": [ - { "english_name": "German", "iso_639_1": "de", "name": "Deutsch" }, - { "english_name": "English", "iso_639_1": "en", "name": "English" } - ], - "status": "Released", - "tagline": "All roads lead to the truth.", - "title": "Retribution", - "video": false, - "vote_average": 6.581, - "vote_count": 136, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 3896, - "known_for_department": "Acting", - "name": "Liam Neeson", - "original_name": "Liam Neeson", - "popularity": 65.164, - "profile_path": "/bboldwqSC6tdw2iL6631c98l2Mn.jpg", - "cast_id": 1, - "character": "Matt Turner", - "credit_id": "5fa991e6c68b690040a4c7c3", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 517103, - "known_for_department": "Acting", - "name": "Noma Dumezweni", - "original_name": "Noma Dumezweni", - "popularity": 13.67, - "profile_path": "/abEWaYTugwH967V8LfptQIMioKQ.jpg", - "cast_id": 14, - "character": "Angela Brickmann", - "credit_id": "6240d5a15f2b8d005da966a8", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1829985, - "known_for_department": "Acting", - "name": "Lilly Aspell", - "original_name": "Lilly Aspell", - "popularity": 16.413, - "profile_path": "/phfygRDYezltJge7s7UD4M6IMdI.jpg", - "cast_id": 13, - "character": "Emily Turner", - "credit_id": "6240d596c740d90089e80128", - "order": 2 - }, - { - "adult": false, - "gender": 2, - "id": 1895760, - "known_for_department": "Acting", - "name": "Jack Champion", - "original_name": "Jack Champion", - "popularity": 13.867, - "profile_path": "/aYY3C75ZwbQxGSSan9Uft4mGE9w.jpg", - "cast_id": 16, - "character": "Zach Turner", - "credit_id": "6240d5ba0f3655005ff4681c", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 457386, - "known_for_department": "Acting", - "name": "Arian Moayed", - "original_name": "Arian Moayed", - "popularity": 6.513, - "profile_path": "/ApY4Ql2xGnzy8LeWqcntAbEQHiB.jpg", - "cast_id": 10, - "character": "Sylvain", - "credit_id": "6240d5764cbe120048ad8c5b", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 6368, - "known_for_department": "Acting", - "name": "Embeth Davidtz", - "original_name": "Embeth Davidtz", - "popularity": 22.33, - "profile_path": "/nwsdu9lOsKJ5v9RwOCc7kAiuxSO.jpg", - "cast_id": 11, - "character": "Heather Turner", - "credit_id": "6240d580519bbb005b0686e7", - "order": 5 - }, - { - "adult": false, - "gender": 2, - "id": 8654, - "known_for_department": "Acting", - "name": "Matthew Modine", - "original_name": "Matthew Modine", - "popularity": 17.65, - "profile_path": "/z974QEHL12qUvLyk6hlWGAmDgom.jpg", - "cast_id": 12, - "character": "Anders Muller", - "credit_id": "6240d58ac50ad2005cd26d48", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 1270320, - "known_for_department": "Acting", - "name": "Emily Kusche", - "original_name": "Emily Kusche", - "popularity": 22.327, - "profile_path": "/2XNP9PWe11LlI1hmHN42SAOdaGU.jpg", - "cast_id": 15, - "character": "Mila", - "credit_id": "6240d5b00f3655005ff467f9", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 3499962, - "known_for_department": "Acting", - "name": "Luca Márkus", - "original_name": "Luca Márkus", - "popularity": 2.846, - "profile_path": "/cD3LDnwUCQiyVE2TKcIPAwNL8Jf.jpg", - "cast_id": 39, - "character": "Kat", - "credit_id": "64eae8c3c613ce00c9f28bff", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 234776, - "known_for_department": "Acting", - "name": "Bernhard Piesk", - "original_name": "Bernhard Piesk", - "popularity": 0.745, - "profile_path": null, - "cast_id": 40, - "character": "Captain Dregger", - "credit_id": "64eae8ffc613ce012cc5f123", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 84071, - "known_for_department": "Acting", - "name": "Michael S. Ruscheinsky", - "original_name": "Michael S. Ruscheinsky", - "popularity": 0.766, - "profile_path": "/oOceZaoaAYTL9e2MNK3ArtjonY.jpg", - "cast_id": 41, - "character": "Man in the Blue Suit", - "credit_id": "64eae9184581990100992685", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 3482769, - "known_for_department": "Acting", - "name": "Antonije Stankovic", - "original_name": "Antonije Stankovic", - "popularity": 1.4, - "profile_path": null, - "cast_id": 21, - "character": "Young Protestor", - "credit_id": "6240d63f81a7fc008ca3b826", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 145469, - "known_for_department": "Acting", - "name": "Christian Koerner", - "original_name": "Christian Koerner", - "popularity": 1.7, - "profile_path": "/x3QzBFvFIFQNrIu6Pti0DdLkOLE.jpg", - "cast_id": 18, - "character": "BPol Police Officer", - "credit_id": "6240d5d3223a8b005fa26a83", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 4236664, - "known_for_department": "Acting", - "name": "Gerhard Elfers", - "original_name": "Gerhard Elfers", - "popularity": 0.6, - "profile_path": null, - "cast_id": 42, - "character": "Male News Anchor", - "credit_id": "64eae950c3c89100c6837c2a", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 4236665, - "known_for_department": "Acting", - "name": "Tine Gerhäeusser", - "original_name": "Tine Gerhäeusser", - "popularity": 0.6, - "profile_path": null, - "cast_id": 43, - "character": "Female News Anchor", - "credit_id": "64eae96f1feac1011b2e2e62", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 1998990, - "known_for_department": "Acting", - "name": "Peter Miklusz", - "original_name": "Peter Miklusz", - "popularity": 1.4, - "profile_path": "/4mthNIYvN34kqVqKaYlVJWNFbv1.jpg", - "cast_id": 44, - "character": "Press Conference Reporter", - "credit_id": "64eae98a458199013a7eaa69", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "cast_id": 45, - "character": "Pils Groger", - "credit_id": "64eae9b65258ae010bda1bfd", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 1104694, - "known_for_department": "Sound", - "name": "Nedy John Cross", - "original_name": "Nedy John Cross", - "popularity": 0.6, - "profile_path": null, - "cast_id": 20, - "character": "Passerby (uncredited)", - "credit_id": "6240d62f81a7fc00472ef0e8", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 3482768, - "known_for_department": "Acting", - "name": "Daniel Grave", - "original_name": "Daniel Grave", - "popularity": 0.6, - "profile_path": null, - "cast_id": 19, - "character": "Male Phone Voice (voice) (uncredited)", - "credit_id": "6240d6179451e7008c901367", - "order": 18 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 3708, - "known_for_department": "Crew", - "name": "Volkhart Buff", - "original_name": "Volkhart Buff", - "popularity": 0.881, - "profile_path": "/42DIfmkfF40PAzVxoV8wj1w3x0l.jpg", - "credit_id": "65043e4263aad2011b2331f8", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 5553, - "known_for_department": "Sound", - "name": "Harry Gregson-Williams", - "original_name": "Harry Gregson-Williams", - "popularity": 6.418, - "profile_path": "/xLuIAM22zCffnzPyKOSRQQYh03C.jpg", - "credit_id": "65043a6cea37e0013a4f137a", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 6745, - "known_for_department": "Sound", - "name": "Richard Henderson", - "original_name": "Richard Henderson", - "popularity": 0.652, - "profile_path": null, - "credit_id": "650448d1d7dcd200e2feebc6", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 9349, - "known_for_department": "Sound", - "name": "Dane A. Davis", - "original_name": "Dane A. Davis", - "popularity": 1.234, - "profile_path": "/16RaENd5PxeXs6XE4yrnCPjg4Gz.jpg", - "credit_id": "65044529db4ed6103441487b", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 9349, - "known_for_department": "Sound", - "name": "Dane A. Davis", - "original_name": "Dane A. Davis", - "popularity": 1.234, - "profile_path": "/16RaENd5PxeXs6XE4yrnCPjg4Gz.jpg", - "credit_id": "6504455de0ca7f00ec8e9d8f", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 8751, - "known_for_department": "Editing", - "name": "Steve Mirkovich", - "original_name": "Steve Mirkovich", - "popularity": 1.614, - "profile_path": null, - "credit_id": "6240d6af706e56008bd4a122", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 0, - "id": 9440, - "known_for_department": "Sound", - "name": "Christopher Moriana", - "original_name": "Christopher Moriana", - "popularity": 1.218, - "profile_path": null, - "credit_id": "650446aa6a222701372ef145", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 10903, - "known_for_department": "Production", - "name": "Henning Molfenter", - "original_name": "Henning Molfenter", - "popularity": 2.933, - "profile_path": "/ehadQnjTvjsUh3CSd8OQFdEm4iV.jpg", - "credit_id": "65043b8ce0ca7f00ec8e9a4e", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 10905, - "known_for_department": "Production", - "name": "Charlie Woebcken", - "original_name": "Charlie Woebcken", - "popularity": 1.74, - "profile_path": null, - "credit_id": "65043ba7ea37e000c6393c99", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "credit_id": "65043cd5ffc9de0edf629623", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 19081, - "known_for_department": "Production", - "name": "Luc Etienne", - "original_name": "Luc Etienne", - "popularity": 2.138, - "profile_path": null, - "credit_id": "65043d6adb4ed61032a92964", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 1, - "id": 42909, - "known_for_department": "Costume & Make-Up", - "name": "Mona May", - "original_name": "Mona May", - "popularity": 2.024, - "profile_path": "/tvGFgAsywjg11roGj3YW1Ukv0mE.jpg", - "credit_id": "64edd95ce2bca800ff0ff7cf", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 41671, - "known_for_department": "Directing", - "name": "Nimród Antal", - "original_name": "Nimród Antal", - "popularity": 3.445, - "profile_path": "/x0fSNFKlhcAbbuvFPHPuTSUvOBY.jpg", - "credit_id": "5fa991f141465c0040c3e948", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 55294, - "known_for_department": "Costume & Make-Up", - "name": "Sandra Leutert", - "original_name": "Sandra Leutert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043fe4ea37e0010052846e", - "department": "Costume & Make-Up", - "job": "Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 54528, - "known_for_department": "Writing", - "name": "Alberto Marini", - "original_name": "Alberto Marini", - "popularity": 3.644, - "profile_path": "/f5HQElD4y1YYE9Oblwib2DIh1sm.jpg", - "credit_id": "5fa992a634e152003f7c61ba", - "department": "Writing", - "job": "Original Film Writer" - }, - { - "adult": false, - "gender": 2, - "id": 59521, - "known_for_department": "Directing", - "name": "Jaume Collet-Serra", - "original_name": "Jaume Collet-Serra", - "popularity": 3.637, - "profile_path": "/s1MdlS2wnzfKevPfXK63V1qkwfI.jpg", - "credit_id": "5fa992e481383100419ebe69", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 59528, - "known_for_department": "Camera", - "name": "Flavio Martínez Labiano", - "original_name": "Flavio Martínez Labiano", - "popularity": 1.554, - "profile_path": null, - "credit_id": "65043b1dffc9de0ee00f0c06", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 62011, - "known_for_department": "Production", - "name": "Andrew Rona", - "original_name": "Andrew Rona", - "popularity": 0.914, - "profile_path": null, - "credit_id": "5fa992c9abf8e20040440e49", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 166235, - "known_for_department": "Sound", - "name": "Andy Hay", - "original_name": "Andy Hay", - "popularity": 0.753, - "profile_path": null, - "credit_id": "650445d16a222700c3b801c0", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 223202, - "known_for_department": "Sound", - "name": "Nick Angel", - "original_name": "Nick Angel", - "popularity": 1.231, - "profile_path": null, - "credit_id": "6240d9b6dd83fa005e0a1428", - "department": "Sound", - "job": "Music Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 223247, - "known_for_department": "Sound", - "name": "Julian Slater", - "original_name": "Julian Slater", - "popularity": 0.864, - "profile_path": null, - "credit_id": "650445b3d7dcd200acb251c5", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 587802, - "known_for_department": "Production", - "name": "Alex Heineman", - "original_name": "Alex Heineman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5fa992d61b7294003d9536fb", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 967137, - "known_for_department": "Art", - "name": "David Scheunemann", - "original_name": "David Scheunemann", - "popularity": 1.223, - "profile_path": null, - "credit_id": "64edd9455258ae00eaa5d748", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 967137, - "known_for_department": "Art", - "name": "David Scheunemann", - "original_name": "David Scheunemann", - "popularity": 1.223, - "profile_path": null, - "credit_id": "65043e8fea37e001005283d1", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 0, - "id": 968298, - "known_for_department": "Production", - "name": "Mercedes Gamero", - "original_name": "Mercedes Gamero", - "popularity": 1.213, - "profile_path": null, - "credit_id": "65043c02ea37e0013a4f1405", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 969757, - "known_for_department": "Production", - "name": "Ron Halpern", - "original_name": "Ron Halpern", - "popularity": 5.054, - "profile_path": "/vTDgDF35XMn8eLMpc0XE47eLzuT.jpg", - "credit_id": "65043c4a63aad2011b23311b", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1034171, - "known_for_department": "Production", - "name": "Emma Lustres", - "original_name": "Emma Lustres", - "popularity": 1.4, - "profile_path": null, - "credit_id": "65043bdfea37e0013a4f13f9", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1089142, - "known_for_department": "Production", - "name": "Christoph Fisser", - "original_name": "Christoph Fisser", - "popularity": 0.778, - "profile_path": "/7URHtynBXlFSJph8a3ZxqPmrL2k.jpg", - "credit_id": "65043b7363aad2013800abf3", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1153031, - "known_for_department": "Camera", - "name": "Adrian Cranage", - "original_name": "Adrian Cranage", - "popularity": 1.008, - "profile_path": null, - "credit_id": "65043ef663aad200e12d26c1", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1227175, - "known_for_department": "Sound", - "name": "John Joseph Thomas", - "original_name": "John Joseph Thomas", - "popularity": 2.169, - "profile_path": null, - "credit_id": "650445f2ffc9de0ee00f0ff3", - "department": "Sound", - "job": "Sound Effects Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1320499, - "known_for_department": "Production", - "name": "Juan Solá", - "original_name": "Juan Solá", - "popularity": 0.6, - "profile_path": null, - "credit_id": "5fa992f1e6d3cc00411eeae9", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1324460, - "known_for_department": "Art", - "name": "Ralf Schreck", - "original_name": "Ralf Schreck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d76b99c96400482b65da", - "department": "Art", - "job": "Art Department Manager" - }, - { - "adult": false, - "gender": 2, - "id": 1324460, - "known_for_department": "Art", - "name": "Ralf Schreck", - "original_name": "Ralf Schreck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650441e1ea37e000e3a533eb", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1335857, - "known_for_department": "Art", - "name": "Patrick Herzberg", - "original_name": "Patrick Herzberg", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d713a097dc005d7d60a9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1338159, - "known_for_department": "Costume & Make-Up", - "name": "Anette Czagany", - "original_name": "Anette Czagany", - "popularity": 1.439, - "profile_path": "/AhszXvG4EH2i9rXi4406QoaFUgD.jpg", - "credit_id": "6240d89481a7fc00472efa6a", - "department": "Costume & Make-Up", - "job": "Costume Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1338239, - "known_for_department": "Sound", - "name": "Nick Roberts", - "original_name": "Nick Roberts", - "popularity": 1.306, - "profile_path": null, - "credit_id": "6504484adb4ed6103857825e", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1377503, - "known_for_department": "Camera", - "name": "Sebastian Meuschel", - "original_name": "Sebastian Meuschel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043ecc63aad200ab16568f", - "department": "Camera", - "job": "\"A\" Camera Operator" - }, - { - "adult": false, - "gender": 2, - "id": 1391086, - "known_for_department": "Sound", - "name": "André König", - "original_name": "André König", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044781ffc9de0ee20ae870", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 1, - "id": 1397823, - "known_for_department": "Sound", - "name": "Alyson Dee Moore", - "original_name": "Alyson Dee Moore", - "popularity": 2.827, - "profile_path": null, - "credit_id": "65044688ea37e000ad38c9dd", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 0, - "id": 1404214, - "known_for_department": "Sound", - "name": "Stephanie Flack", - "original_name": "Stephanie Flack", - "popularity": 1.158, - "profile_path": null, - "credit_id": "6504458cd7dcd20139ccda41", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1407354, - "known_for_department": "Sound", - "name": "Terry Rodman", - "original_name": "Terry Rodman", - "popularity": 1.48, - "profile_path": null, - "credit_id": "6504464ee0ca7f00cbec20b5", - "department": "Sound", - "job": "Foley Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1414517, - "known_for_department": "Editing", - "name": "Ron South", - "original_name": "Ron South", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d871c740d90089e80c82", - "department": "Crew", - "job": "Visual Effects Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1446559, - "known_for_department": "Sound", - "name": "Tor McAfee Kingdon", - "original_name": "Tor McAfee Kingdon", - "popularity": 0.828, - "profile_path": null, - "credit_id": "650448a2d7dcd200ffedb6a3", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1448262, - "known_for_department": "Camera", - "name": "Stephan Rabold", - "original_name": "Stephan Rabold", - "popularity": 0.98, - "profile_path": null, - "credit_id": "650443bcffc9de0eded5cfca", - "department": "Camera", - "job": "Still Photographer" - }, - { - "adult": false, - "gender": 0, - "id": 1449988, - "known_for_department": "Visual Effects", - "name": "Roxane Fechner", - "original_name": "Roxane Fechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d823c616ac0091146446", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1449988, - "known_for_department": "Visual Effects", - "name": "Roxane Fechner", - "original_name": "Roxane Fechner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044959d7dcd200acb25339", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1580667, - "known_for_department": "Visual Effects", - "name": "Uli Nefzer", - "original_name": "Uli Nefzer", - "popularity": 1.735, - "profile_path": null, - "credit_id": "650444026a222700fd223437", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1718056, - "known_for_department": "Sound", - "name": "Andrew Rice", - "original_name": "Andrew Rice", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044888ffc9de0ee3c79eb6", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1760572, - "known_for_department": "Sound", - "name": "Jason Oliver", - "original_name": "Jason Oliver", - "popularity": 1.307, - "profile_path": null, - "credit_id": "65044703ea37e00100528723", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1760573, - "known_for_department": "Sound", - "name": "Darrin Mann", - "original_name": "Darrin Mann", - "popularity": 0.866, - "profile_path": null, - "credit_id": "650446c4d7dcd200c538b4d1", - "department": "Sound", - "job": "Foley Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1761422, - "known_for_department": "Sound", - "name": "Aaron Southerland", - "original_name": "Aaron Southerland", - "popularity": 1.171, - "profile_path": null, - "credit_id": "65044813db4ed6103857824a", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 1796072, - "known_for_department": "Directing", - "name": "Scott Kirby", - "original_name": "Scott Kirby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043de06a2227011a7ca12c", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1824830, - "known_for_department": "Production", - "name": "Rori Bergman", - "original_name": "Rori Bergman", - "popularity": 0.786, - "profile_path": null, - "credit_id": "6240d6c1c50ad200883cd7d7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 0, - "id": 2028784, - "known_for_department": "Directing", - "name": "Silke Engelhardt", - "original_name": "Silke Engelhardt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650443a0ffc9de0ee178a3ae", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2041319, - "known_for_department": "Editing", - "name": "Mitch Paulson", - "original_name": "Mitch Paulson", - "popularity": 1.506, - "profile_path": null, - "credit_id": "65044921ea37e0013a4f18e5", - "department": "Editing", - "job": "Digital Colorist" - }, - { - "adult": false, - "gender": 0, - "id": 2057969, - "known_for_department": "Production", - "name": "Matteo Canalis Wandel", - "original_name": "Matteo Canalis Wandel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043dbe63aad200fe2b6715", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 2202204, - "known_for_department": "Directing", - "name": "Dennis Becker", - "original_name": "Dennis Becker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043dfde0ca7f00cbec1de9", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2212041, - "known_for_department": "Sound", - "name": "Manuel Vogt", - "original_name": "Manuel Vogt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044115ffc9de0ee178a2de", - "department": "Sound", - "job": "Production Sound Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2225335, - "known_for_department": "Sound", - "name": "David H. Price", - "original_name": "David H. Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504461ee0ca7f014f720cc1", - "department": "Sound", - "job": "Dialogue Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2225335, - "known_for_department": "Sound", - "name": "David H. Price", - "original_name": "David H. Price", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504462ae0ca7f00ae40ed6a", - "department": "Sound", - "job": "ADR Editor" - }, - { - "adult": false, - "gender": 0, - "id": 2263409, - "known_for_department": "Camera", - "name": "Suza Kohlstedt", - "original_name": "Suza Kohlstedt", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d8e24cbe120091ff87b4", - "department": "Costume & Make-Up", - "job": "Costume Coordinator" - }, - { - "adult": false, - "gender": 2, - "id": 2575689, - "known_for_department": "Sound", - "name": "Don Hoffman", - "original_name": "Don Hoffman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044827ea37e000e3a53649", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2598906, - "known_for_department": "Sound", - "name": "Jackson Milliken", - "original_name": "Jackson Milliken", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d7e4a097dc0048d8b258", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2673880, - "known_for_department": "Sound", - "name": "Chris Basta", - "original_name": "Chris Basta", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650447ccea37e0011d091ea4", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 2763378, - "known_for_department": "Costume & Make-Up", - "name": "Anett Weber", - "original_name": "Anett Weber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043f91e0ca7f010debb972", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2763378, - "known_for_department": "Costume & Make-Up", - "name": "Anett Weber", - "original_name": "Anett Weber", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043fa16a222700c3b7ff32", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 2849974, - "known_for_department": "Writing", - "name": "Chris Salmanpour", - "original_name": "Chris Salmanpour", - "popularity": 0.63, - "profile_path": null, - "credit_id": "5fa9921a9ac535003fbafaef", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 2998988, - "known_for_department": "Camera", - "name": "Christopher Ulrich", - "original_name": "Christopher Ulrich", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504420aea37e000c6393ed6", - "department": "Art", - "job": "Storyboard Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3244749, - "known_for_department": "Crew", - "name": "Shawn Montgomery", - "original_name": "Shawn Montgomery", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044484db4ed61032a92c0a", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3345289, - "known_for_department": "Art", - "name": "Adorjan Portik", - "original_name": "Adorjan Portik", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d72197a4e60047a0e1b9", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 3401679, - "known_for_department": "Production", - "name": "Anna Marsh", - "original_name": "Anna Marsh", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043c2eea37e000c6393cc1", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3482772, - "known_for_department": "Production", - "name": "Shanna Eddy", - "original_name": "Shanna Eddy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65043c74e0ca7f012eba6fb8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3482777, - "known_for_department": "Art", - "name": "Hanna Bowe", - "original_name": "Hanna Bowe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d79f99c964008d096ca5", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 0, - "id": 3482779, - "known_for_department": "Costume & Make-Up", - "name": "Veronica Santos Ruiz", - "original_name": "Veronica Santos Ruiz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6240d8a81cfe3a005cee2789", - "department": "Costume & Make-Up", - "job": "Costumer" - }, - { - "adult": false, - "gender": 0, - "id": 3571875, - "known_for_department": "Sound", - "name": "Lisa Strohbehn", - "original_name": "Lisa Strohbehn", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044178ffc9de0eded5cef5", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 2, - "id": 3571885, - "known_for_department": "Lighting", - "name": "Björn L. Hübscher", - "original_name": "Björn L. Hübscher", - "popularity": 0.6, - "profile_path": null, - "credit_id": "65044017d7dcd20139ccd7c5", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 4273148, - "known_for_department": "Sound", - "name": "Gero Renner", - "original_name": "Gero Renner", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504419ddb4ed61038578035", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 4273155, - "known_for_department": "Production", - "name": "Julia Tiziana Dege", - "original_name": "Julia Tiziana Dege", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504435cd7dcd200acb250a6", - "department": "Production", - "job": "Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4273170, - "known_for_department": "Editing", - "name": "Steven Korechoff", - "original_name": "Steven Korechoff", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650444d1ffc9de0ee20ae779", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 4273191, - "known_for_department": "Sound", - "name": "Adrian Guogov", - "original_name": "Adrian Guogov", - "popularity": 0.6, - "profile_path": null, - "credit_id": "650447fae0ca7f010debbc33", - "department": "Sound", - "job": "ADR Mixer" - }, - { - "adult": false, - "gender": 0, - "id": 4273193, - "known_for_department": "Sound", - "name": "Tom Kontor", - "original_name": "Tom Kontor", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6504486f63aad200ab165a7e", - "department": "Sound", - "job": "ADR Mixer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official UK Trailer", - "key": "Sxyzdo-RBKc", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-30T16:43:07.000Z", - "id": "64b002223e2ec800cbd11ace" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official UK Trailer", - "key": "93BklqWfv_I", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:16:49.000Z", - "id": "649cbc70c9dbf900acb9a7e0" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official International Trailer", - "key": "k-9gcV26_eE", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:00:37.000Z", - "id": "649c5979af58cb013969db34" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "jzQn0-WH4WM", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-06-28T15:00:18.000Z", - "id": "649c4b88c3926600c888faf6" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rqO1wOmgIxUnK0tkfWPpDD47RsD.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qVzLQUs4tVuh4mz0KcFL5ufwqRZ.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/q7mYzk6BnPOZKhiEJBKmeHjOwiz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/tUlUdP04nDWsy372myIHuA2qdNv.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/3JSDgOWEMlBGLLUpqOUtPFkuPjS.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6Ts85VcmNYJSHuGPA71AsLlD2G5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "pt", - "file_path": "/zDDJkX80evEkuj3qKg6rJHmLRYq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/le4gk0wXt7ufQsrel3gkT0cULrX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/a98qqec9FM5WkgqFbb2uYdh3FWH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/nholFQ2ljuX4ActryqML8zENAWX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/bsmIhGgTp3I0TQgkhb5T0uSU4Iq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p532XFlhNa4kA6DojszluzmHaHo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/2Zuqh9gPbgFnM2ZCQTQREOWtr8u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 10.004, - "height": 492, - "iso_639_1": "en", - "file_path": "/jF5NGickP6QQC40Nu2XJCxECs6C.png", - "vote_average": 0, - "vote_count": 0, - "width": 4922 - }, - { - "aspect_ratio": 10.004, - "height": 492, - "iso_639_1": "en", - "file_path": "/bWVgdbPohBWwi9WQqhzKvVGXBNX.png", - "vote_average": 0, - "vote_count": 0, - "width": 4922 - }, - { - "aspect_ratio": 4.004, - "height": 229, - "iso_639_1": "he", - "file_path": "/qDXq1y9RNuDYMMIbNIZlb4geLu2.png", - "vote_average": 0, - "vote_count": 0, - "width": 917 - }, - { - "aspect_ratio": 3.01, - "height": 1299, - "iso_639_1": "en", - "file_path": "/11bOo2UhQnmbLjTEScMZOpzUJU.png", - "vote_average": 0, - "vote_count": 0, - "width": 3910 - }, - { - "aspect_ratio": 8.454, - "height": 119, - "iso_639_1": "cs", - "file_path": "/8yg3zqI3gWnjgkrawmjDSytKPTS.png", - "vote_average": 0, - "vote_count": 0, - "width": 1006 - }, - { - "aspect_ratio": 13.878, - "height": 90, - "iso_639_1": "es", - "file_path": "/vWiD2q5vPtCbc30TqWmfrCcGlyX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1249 - }, - { - "aspect_ratio": 6.537, - "height": 147, - "iso_639_1": "pt", - "file_path": "/6XGazGSCcUrLQthzlGR6G1SKMwG.png", - "vote_average": 0, - "vote_count": 0, - "width": 961 - }, - { - "aspect_ratio": 9.88, - "height": 267, - "iso_639_1": "pl", - "file_path": "/5zfNJbxvqsnl1gk0oV3u3cDVauM.png", - "vote_average": 0, - "vote_count": 0, - "width": 2638 - }, - { - "aspect_ratio": 8.401, - "height": 279, - "iso_639_1": "lt", - "file_path": "/w1rQqMoLdbvykMt2jaI7hdQxxiW.png", - "vote_average": 0, - "vote_count": 0, - "width": 2344 - }, - { - "aspect_ratio": 11.729, - "height": 218, - "iso_639_1": "sk", - "file_path": "/1H1EyrhGbyWv2n5k0TuGjp7uDgZ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2557 - }, - { - "aspect_ratio": 6.205, - "height": 195, - "iso_639_1": "ja", - "file_path": "/t1BO24q2ZQu6qt9KeH0HyER6RD6.png", - "vote_average": 0, - "vote_count": 0, - "width": 1210 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/3K9UR3FMuvJjSKgFsGbOb61MZvc.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/ljl70pjLIX1hx3bPyCCbxGj6WPr.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gPpn5nNBHK6P6Hg6WuWNBQAdPoZ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 2245, - "iso_639_1": "pt", - "file_path": "/yd0iEtqAXseXQgKf9RjmMaPjUPG.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1587 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/2qr6Qvungbtmaj43T5lQ9NNfr2e.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.707, - "height": 1754, - "iso_639_1": "no", - "file_path": "/6rbhUd8g0vcLf9sAwbjLn6lVDl2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1240 - }, - { - "aspect_ratio": 0.667, - "height": 1527, - "iso_639_1": "sk", - "file_path": "/7aLJPDqp3ssk4cL0K1EMvPRzphz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1018 - }, - { - "aspect_ratio": 0.696, - "height": 2792, - "iso_639_1": "he", - "file_path": "/iCrw3w9OJuDb6dvn400rlFB5IBr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1942 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/3aJvYn7PBMBOYkZdD2Rc0gn1Lxd.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/jrQySypolHkBXhMJf9AZpmLaY4B.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hAZO3hvLQVjIDW32lxSKmOOl987.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/exDamYewvWdaV1UwY190mDzwnYL.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.668, - "height": 1903, - "iso_639_1": "he", - "file_path": "/6jaN2qGzo72WKzcuye8KWeaWERf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1272 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/eDnVUyITDPYtfFeviYsVoizviLh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/e0HpnKxi6vS0k5qVcwZtkoDBYri.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1241, - "iso_639_1": "en", - "file_path": "/zhpSG1eyAypRDOZj5VUaG0YLqRE.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 828 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/qWIcqaeIXpToOPf0tS7CDM68eE4.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "en", - "file_path": "/8otwupYz9ZNzLvhu0xoXSAltPzk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1999 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/hvTOLFVxkV1vymuqYhzOpIjmiqh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/uUcyhxstrwBUT8GkJRtD5qOnvc5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/fKlE4sf3OZOYWdrVgeJxPQiRCgb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2npBqRxxqRGM5UF6qjjR6Qk6upt.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/5L7x0RsXXYh9j9iRNT22Xo3DPYS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "hu", - "file_path": "/cPnzcS4k31iS7dwZhjtE7AdwszA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 1360, - "iso_639_1": "sk", - "file_path": "/3cM8fWcpjlGDEia9Fe0tCICBgjF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 907 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/5I6HZQZNovkrf7fxoCDT1FHx1e5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "vi", - "file_path": "/yExuLr9BTOmW6zSC5awsPs4vpSk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/z0NPyjdx0OLqxc2Do9fxicQVkc3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 889, - "iso_639_1": "ro", - "file_path": "/vN4LGEEZuHitgRIiDgDOnaN4G8y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 2227, - "iso_639_1": "en", - "file_path": "/znW20OCpk19pyxmans84qAfhP9N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1485 - }, - { - "aspect_ratio": 0.675, - "height": 2100, - "iso_639_1": "ru", - "file_path": "/eicNwP6U1BLjlyA89qC7X9XQxSi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1418 - }, - { - "aspect_ratio": 0.7, - "height": 1969, - "iso_639_1": "el", - "file_path": "/kn02iPt8ou78YQ6qoHtRswUsGXC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1378 - }, - { - "aspect_ratio": 0.7, - "height": 1969, - "iso_639_1": "el", - "file_path": "/f0aWuUpIT4XIFd2wpM2ESQ6QPii.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1378 - }, - { - "aspect_ratio": 0.7, - "height": 1920, - "iso_639_1": "es", - "file_path": "/vBl0qexSJrQiUTvcXgQpGFUmP7a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1344 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fa", - "file_path": "/2pXX4fandv4Bl8EcIeJHeiMyK6b.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "nl", - "file_path": "/5ET7goLjbXpH7zrnZbnMJKatwCR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1890 - }, - { - "aspect_ratio": 0.7, - "height": 1280, - "iso_639_1": "th", - "file_path": "/aRsxFJMXtcsD6rj6c1caztZ0xTH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 896 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/z6SKM8IuP5GIrc2fBLBeCU8zTpg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/mO54jLkgK6XI2U2ZY65EJwHFtna.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7GCyXXW4ChbmWfft1yZ60sGqcKD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/omB11SvnMGuYjw7zHfFlToA6DMQ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/vpVMMdy8ATscVpu5x71Sy3vZve.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/1QSN6NoEeo0gAZ7Or4wTP8BbILF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/phABA8WgEatcs6qqLZMs9iY6RdD.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/aQVi3XnOZzQ5shiP9OR2ilfjb6j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/cvWrqNrCeoaqBm2ST5hAP2igngA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.717, - "height": 1350, - "iso_639_1": "pt", - "file_path": "/2WgGG0wCxXzYg5orvge6vfpyYZw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 968 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/sf8bmlofyWyRaaaWC9gR79It8qO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/zfB050VdnRjoHDXK8o6sZXotpTq.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/fmEFVnU7HTDSDqoEpf6Z0yQRz8L.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.695, - "height": 800, - "iso_639_1": "hr", - "file_path": "/7LEp2CwC7GPua7lKaHknKPqhrNJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 556 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/sX1yv40ksEi2LvAOAbgp7iSBtjL.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/ArbKw3DPMicUztCU478CagcbaZ5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8LB4Aa7aEMiaQ42GGhr7SYQNfyY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6AuktQBFp1nLGMtQCr3BGazmEJE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "fr", - "file_path": "/7zp6fGyfSMrcUFkMookBVvrY8hY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/w3CEN9I7eNfs0fcaL6fxzbFLtdI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/820525.json b/examples/view-transitions/src/content/movies/820525.json deleted file mode 100644 index 1d779e980020..000000000000 --- a/examples/view-transitions/src/content/movies/820525.json +++ /dev/null @@ -1,856 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "belongs_to_collection": { - "id": 702624, - "name": "After Collection", - "poster_path": "/250ewaLutOJXqBBqMKxCHD1KpCL.jpg", - "backdrop_path": "/zZTy8G3sEVZNv0yGssgc7DvPUQJ.jpg" - }, - "budget": 14000000, - "genres": [ - { "id": 10749, "name": "Romance" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 820525, - "imdb_id": "tt15334488", - "original_language": "en", - "original_title": "After Everything", - "overview": "Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.", - "popularity": 650.272, - "poster_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "production_companies": [ - { - "id": 6626, - "logo_path": "/A1BnMoWjzjOrjzpWimyBQkf84mS.png", - "name": "Voltage Pictures", - "origin_country": "US" - }, - { - "id": 107108, - "logo_path": "/5mxc7uNtFOZm2ly0BxixxGPvPlb.png", - "name": "Wattpad", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-09-13", - "revenue": 962741, - "runtime": 93, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "Portuguese", "iso_639_1": "pt", "name": "Português" } - ], - "status": "Released", - "tagline": "", - "title": "After Everything", - "video": false, - "vote_average": 6.407, - "vote_count": 27, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1114487, - "known_for_department": "Acting", - "name": "Hero Fiennes Tiffin", - "original_name": "Hero Fiennes Tiffin", - "popularity": 15.891, - "profile_path": "/6zMrrZvOMH6uGwEFoK0Uo8sZvxL.jpg", - "cast_id": 5, - "character": "Hardin Scott", - "credit_id": "60d374f40e64af0046370008", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 1694711, - "known_for_department": "Acting", - "name": "Mimi Keene", - "original_name": "Mimi Keene", - "popularity": 7.403, - "profile_path": "/7bUgfaycm0f6PgEn3eLo8oANByO.jpg", - "cast_id": 24, - "character": "Nathalie", - "credit_id": "6441b4e7651fcf02fb9c2851", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 2849483, - "known_for_department": "Acting", - "name": "Benjamin Mascolo", - "original_name": "Benjamin Mascolo", - "popularity": 4.235, - "profile_path": "/zkKiB05KRFCIQdMVnseQlatMLRq.jpg", - "cast_id": 23, - "character": "Sebastian", - "credit_id": "6441b4cab3f6f5055a9d8f4a", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 20805, - "known_for_department": "Acting", - "name": "Louise Lombard", - "original_name": "Louise Lombard", - "popularity": 17.846, - "profile_path": "/6znYbOI2Z8PfzZ6p9jHG5QdAeb2.jpg", - "cast_id": 22, - "character": "Trish Daniels", - "credit_id": "63a8788e0f21c6007871434e", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 32203, - "known_for_department": "Acting", - "name": "Stephen Moyer", - "original_name": "Stephen Moyer", - "popularity": 12.55, - "profile_path": "/xprwOCXa2cNkjhrGtcJp0VfJMlZ.jpg", - "cast_id": 7, - "character": "Christian Vance", - "credit_id": "63a638291f748b008a0a1614", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 20373, - "known_for_department": "Acting", - "name": "Arielle Kebbel", - "original_name": "Arielle Kebbel", - "popularity": 23.827, - "profile_path": "/dmYiAeWoeVsRdT4UBBGuW9gBfjQ.jpg", - "cast_id": 6, - "character": "Kim Vance", - "credit_id": "63a638191f748b007cc00f2f", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 3009693, - "known_for_department": "Acting", - "name": "Jessica Webber", - "original_name": "Jessica Webber", - "popularity": 1.15, - "profile_path": null, - "cast_id": 20, - "character": "Maddy", - "credit_id": "63a64fa98a84d200b4ce9858", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 3069742, - "known_for_department": "Acting", - "name": "Cora Kirk", - "original_name": "Cora Kirk", - "popularity": 1.404, - "profile_path": "/4av80vVFZSBuKJyzXqEXLE8Vftc.jpg", - "cast_id": 21, - "character": "Freya", - "credit_id": "63a64fb1eb093200a0c1594c", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 2173697, - "known_for_department": "Acting", - "name": "Rosa Escoda", - "original_name": "Rosa Escoda", - "popularity": 4.382, - "profile_path": "/bnGlICypCtpuiKe5mHCnijESI3W.jpg", - "cast_id": 27, - "character": "Kat", - "credit_id": "6503cbc1efea7a00e036e0f1", - "order": 8 - }, - { - "adult": false, - "gender": 1, - "id": 2677100, - "known_for_department": "Acting", - "name": "Ella Martine", - "original_name": "Ella Martine", - "popularity": 0.6, - "profile_path": "/d9uZ2tqibHTno0ZKPUc9FZNXhTn.jpg", - "cast_id": 28, - "character": "Naomi", - "credit_id": "6503cbd7e0ca7f010deb819c", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 2026999, - "known_for_department": "Acting", - "name": "Laura Dutra", - "original_name": "Laura Dutra", - "popularity": 1.8, - "profile_path": "/ipSilYFln0N3UdiL3eboTv8XWS1.jpg", - "cast_id": 29, - "character": "Paloma", - "credit_id": "6503cbedefea7a00aad915a0", - "order": 10 - }, - { - "adult": false, - "gender": 2, - "id": 2035329, - "known_for_department": "Acting", - "name": "Chance Perdomo", - "original_name": "Chance Perdomo", - "popularity": 9.723, - "profile_path": "/xRRDtdHhTewrKMj5cpcmEkPNmuP.jpg", - "cast_id": 30, - "character": "Landon Scott", - "credit_id": "6503cbfed7dcd20139cc9553", - "order": 11 - }, - { - "adult": false, - "gender": 1, - "id": 142115, - "known_for_department": "Acting", - "name": "Kiana Madeira", - "original_name": "Kiana Madeira", - "popularity": 19.805, - "profile_path": "/HgCI95xnSZJaE18d15n7PykOU7.jpg", - "cast_id": 31, - "character": "Nora", - "credit_id": "6503cc206a2227011a7c6353", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 20960, - "known_for_department": "Acting", - "name": "Rob Estes", - "original_name": "Rob Estes", - "popularity": 9.434, - "profile_path": "/b24y5Tv4A8DUjkfYpJ1l1qpkhyv.jpg", - "cast_id": 32, - "character": "Ken Scott", - "credit_id": "6503cc31efea7a0137d3de3b", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 20373, - "known_for_department": "Acting", - "name": "Arielle Kebbel", - "original_name": "Arielle Kebbel", - "popularity": 23.827, - "profile_path": "/dmYiAeWoeVsRdT4UBBGuW9gBfjQ.jpg", - "cast_id": 33, - "character": "Kimberley", - "credit_id": "6503cc596a222700abaa07d9", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 86653, - "known_for_department": "Acting", - "name": "Carter Jenkins", - "original_name": "Carter Jenkins", - "popularity": 5.084, - "profile_path": "/fGVndWC3hgwK1uVrhiyzTUyIaxW.jpg", - "cast_id": 34, - "character": "Robert Freeman", - "credit_id": "6503cc65ffc9de0edf625db1", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 1910292, - "known_for_department": "Acting", - "name": "Ana Ivanova", - "original_name": "Ana Ivanova", - "popularity": 1.307, - "profile_path": "/kT9AL9N1zwi4gksDPdLXGAThbpx.jpg", - "cast_id": 35, - "character": "Emery", - "credit_id": "6503cc95efea7a00c3986356", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 2916706, - "known_for_department": "Acting", - "name": "Anton Kottas", - "original_name": "Anton Kottas", - "popularity": 3.44, - "profile_path": "/trj5wj5Y6Tvj649tbn1a4IG6YfG.jpg", - "cast_id": 36, - "character": "Smith", - "credit_id": "6503cca5ffc9de0ee20aaf80", - "order": 17 - }, - { - "adult": false, - "gender": 1, - "id": 1753914, - "known_for_department": "Acting", - "name": "Josephine Langford", - "original_name": "Josephine Langford", - "popularity": 27.865, - "profile_path": "/8Fj1UIFRJA0B5Zo22KwML5d3Mr3.jpg", - "cast_id": 39, - "character": "Tessa Young", - "credit_id": "650a7334cadb6b00e11f6961", - "order": 18 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 20739, - "known_for_department": "Directing", - "name": "Adam Shankman", - "original_name": "Adam Shankman", - "popularity": 8.011, - "profile_path": "/zZmZgVp5OTU2eSMCDuOXGlQ4fBR.jpg", - "credit_id": "65072f3b42d8a5011bd6f839", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 1, - "id": 20742, - "known_for_department": "Production", - "name": "Jennifer Gibgot", - "original_name": "Jennifer Gibgot", - "popularity": 1.159, - "profile_path": null, - "credit_id": "63a64f171108a800bab73fcd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 46088, - "known_for_department": "Production", - "name": "Mark Canton", - "original_name": "Mark Canton", - "popularity": 2.299, - "profile_path": "/7OiY4eak3DztX0lSj4cbmKLQuaj.jpg", - "credit_id": "63a64f03907f2600aa7262a1", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 61921, - "known_for_department": "Production", - "name": "Courtney Solomon", - "original_name": "Courtney Solomon", - "popularity": 2.006, - "profile_path": "/xujLAPgpM1JXLqE0X4mWVrPTmqd.jpg", - "credit_id": "63a64f35907f2600da9a63bf", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1031200, - "known_for_department": "Production", - "name": "Nicolas Chartier", - "original_name": "Nicolas Chartier", - "popularity": 1.901, - "profile_path": "/59ptYCph60CtAtLmWuC9dASHhsp.jpg", - "credit_id": "63a64f0d1f748b007cc01cfd", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1179667, - "known_for_department": "Lighting", - "name": "Diego Moyano", - "original_name": "Diego Moyano", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f908a84d200d9c3b03a", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 1, - "id": 1193192, - "known_for_department": "Production", - "name": "Carolyn McLeod", - "original_name": "Carolyn McLeod", - "popularity": 0.612, - "profile_path": null, - "credit_id": "63a64f7404b596007d427d31", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1448492, - "known_for_department": "Directing", - "name": "Castille Landon", - "original_name": "Castille Landon", - "popularity": 5.18, - "profile_path": "/s1oXtmqyG9X0uDfiU5HidPB6BJx.jpg", - "credit_id": "645009ff52dc7f02dddb5ed5", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1540619, - "known_for_department": "Camera", - "name": "Joshua Reis", - "original_name": "Joshua Reis", - "popularity": 0.984, - "profile_path": null, - "credit_id": "63a64f681108a800c60a4d19", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 1551998, - "known_for_department": "Production", - "name": "Brian Pitt", - "original_name": "Brian Pitt", - "popularity": 2.997, - "profile_path": null, - "credit_id": "63a64f2a04b59600918423ea", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1552003, - "known_for_department": "Production", - "name": "David Shojai", - "original_name": "David Shojai", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f592b8a43007dddfc26", - "department": "Production", - "job": "Co-Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1664826, - "known_for_department": "Writing", - "name": "Anna Todd", - "original_name": "Anna Todd", - "popularity": 2.633, - "profile_path": "/b0L0Hicos8ZeEXt96Jf9wDed8FS.jpg", - "credit_id": "6450089f2fccee02e4cebc26", - "department": "Writing", - "job": "Novel" - }, - { - "adult": false, - "gender": 0, - "id": 3032242, - "known_for_department": "Art", - "name": "Alexandra Tibbe", - "original_name": "Alexandra Tibbe", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f812b8a4300b60617fd", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 3055946, - "known_for_department": "Production", - "name": "Aron Levitz", - "original_name": "Aron Levitz", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f211f748b00826608cc", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3216486, - "known_for_department": "Acting", - "name": "Taylor Conrod", - "original_name": "Taylor Conrod", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63a64f4c04b596007d427cfc", - "department": "Production", - "job": "Co-Producer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "NsmopvKNSE4", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-05-01T12:00:05.000Z", - "id": "64bd958d0ed2ab00c5e3af6a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Hessa (Official Clip)", - "key": "iVg7CDtG3MQ", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-02-14T13:00:28.000Z", - "id": "63ebc244813cb60096aa356a" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Teaser", - "key": "zmgbPv7lGrk", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2022-12-23T17:34:00.000Z", - "id": "63c169ee23be4600d960ae6d" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/x6y6AHY3UoCeOP6kwZain7WNLPN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/ol32sTlLzayf7y3KbJrfuQkLmT8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jL9pvfEep0houuNFMSEjinBm6Jh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/xZuhDaKDpWDG0sE3Dx6CIR8DeaN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/zg5rp4R3RkGApxWM03jUWJQzXGg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 1.81, - "height": 749, - "iso_639_1": "en", - "file_path": "/r7eYlJVm3OSVBA78Wg3kSUmCKQ7.png", - "vote_average": 0, - "vote_count": 0, - "width": 1356 - }, - { - "aspect_ratio": 1.81, - "height": 749, - "iso_639_1": "en", - "file_path": "/t3wmFD8ghWeP1EEjahgD0MtcPM9.png", - "vote_average": 0, - "vote_count": 0, - "width": 1356 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/qMPcBNHcgclpl4IUiriSVcyt2Xr.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/jO3VGQi5sHIj2BGS963g1F74yCq.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1020, - "iso_639_1": "sk", - "file_path": "/7q9Q3OFu4E2UwTUnwGTZx79fqgj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 680 - }, - { - "aspect_ratio": 0.671, - "height": 1176, - "iso_639_1": "ar", - "file_path": "/d0qw9hiNwhRmfw4yAc44pep6vhz.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 789 - }, - { - "aspect_ratio": 0.667, - "height": 2466, - "iso_639_1": "en", - "file_path": "/aJbrGWjOMwguiCSAGBcpoWGgpXf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1644 - }, - { - "aspect_ratio": 0.667, - "height": 2466, - "iso_639_1": "en", - "file_path": "/uQxjZGU6rxSPSMeAJPJQlmfV3ys.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1644 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8oibiRBkwSHFDamazdrEB5fWvXN.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3PqW0elNnj5tk4XD9o82djTknGd.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/zXDnVeyWwvhLYbaQjnei0A6vohx.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6bPnDIGG8RBncFPIUNxM6GAW0Ox.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/v9qWcfkC3nJOASotuFdJ5huqg6l.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1714, - "iso_639_1": "es", - "file_path": "/nm7rgAYCdATbHgm6CjtoSNvON9k.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1143 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "fr", - "file_path": "/brIDXQSf02a09i13xvMDTkRlO7z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1333 - }, - { - "aspect_ratio": 0.665, - "height": 1351, - "iso_639_1": "pt", - "file_path": "/tRjzdNiFHda6lrXySOQPyY3OtCA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 899 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mhjf22NsRXY4HKRbaUlfZAt7Swb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/gh7JdLfrjewoA00xeMr0ju0PMwd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/moIOvJIdvvwriBiaKTehcmIeOf9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/ao0uyI21djx9uLv6voAjoaetX9O.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/z7Yq7vkVts9yeHCTFqIOEJkhJbi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "hr", - "file_path": "/fZog1nBWjNPQtPtoR1AFrmdbuG5.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/naMHX4mvqEAM4UbMox0MYYoFaPd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/afPrxdEVh9uoSSIc0RVKMXPRHWm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/stF5ysfzd1X5xMuvOiv5k8rRiX3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/968051.json b/examples/view-transitions/src/content/movies/968051.json deleted file mode 100644 index ec902a7a3307..000000000000 --- a/examples/view-transitions/src/content/movies/968051.json +++ /dev/null @@ -1,3200 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "belongs_to_collection": { - "id": 968052, - "name": "The Nun Collection", - "poster_path": "/2RLAPEbafIFG7J8FV9h1lKWNYBU.jpg", - "backdrop_path": "/bKpqH9y3SjovMM3VqzezBbJtuf7.jpg" - }, - "budget": 38500000, - "genres": [ - { "id": 27, "name": "Horror" }, - { "id": 9648, "name": "Mystery" }, - { "id": 53, "name": "Thriller" } - ], - "homepage": "https://www.warnerbros.com/movies/nun2", - "id": 968051, - "imdb_id": "tt10160976", - "original_language": "en", - "original_title": "The Nun II", - "overview": "In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.", - "popularity": 1296.77, - "poster_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "production_companies": [ - { - "id": 12, - "logo_path": "/mevhneWSqbjU22D1MXNd4H9x0r0.png", - "name": "New Line Cinema", - "origin_country": "US" - }, - { - "id": 76907, - "logo_path": "/ygMQtjsKX7BZkCQhQZY82lgnCUO.png", - "name": "Atomic Monster", - "origin_country": "US" - }, - { "id": 11565, "logo_path": null, "name": "The Safran Company", "origin_country": "US" } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-09-06", - "revenue": 162241907, - "runtime": 110, - "spoken_languages": [ - { "english_name": "English", "iso_639_1": "en", "name": "English" }, - { "english_name": "French", "iso_639_1": "fr", "name": "Français" } - ], - "status": "Released", - "tagline": "The greatest evil in the Conjuring universe.", - "title": "The Nun II", - "video": false, - "vote_average": 6.6, - "vote_count": 235, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 527313, - "known_for_department": "Acting", - "name": "Taissa Farmiga", - "original_name": "Taissa Farmiga", - "popularity": 36.679, - "profile_path": "/kC2Movbs6uEF8DdDhvyHizQHuru.jpg", - "cast_id": 12, - "character": "Sister Irene", - "credit_id": "6332c252e329430092ab88b2", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 566080, - "known_for_department": "Acting", - "name": "Jonas Bloquet", - "original_name": "Jonas Bloquet", - "popularity": 20.566, - "profile_path": "/pzQAv6ghx5hc4gSpxHII0oUzqkL.jpg", - "cast_id": 18, - "character": "Maurice Theriault", - "credit_id": "634c350e68b1ea008232a95b", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1344344, - "known_for_department": "Acting", - "name": "Storm Reid", - "original_name": "Storm Reid", - "popularity": 27.853, - "profile_path": "/wA8cntFil1AuwusEZXLH9o898m1.jpg", - "cast_id": 7, - "character": "Debra", - "credit_id": "632e136b4c1bb0007f3278bb", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 5529, - "known_for_department": "Acting", - "name": "Anna Popplewell", - "original_name": "Anna Popplewell", - "popularity": 26.667, - "profile_path": "/ooYeKc28Ayqo9KW8gOacDXDghVL.jpg", - "cast_id": 19, - "character": "Kate", - "credit_id": "635832fc5ca704007c4b666a", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 87287, - "known_for_department": "Acting", - "name": "Bonnie Aarons", - "original_name": "Bonnie Aarons", - "popularity": 25.357, - "profile_path": "/iEtWuoXKx4ZKbIWwJp1V76Heavy.jpg", - "cast_id": 4, - "character": "The Nun / Valak", - "credit_id": "626952974ccc50004ff8ed87", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 3607815, - "known_for_department": "Acting", - "name": "Katelyn Rose Downey", - "original_name": "Katelyn Rose Downey", - "popularity": 2.697, - "profile_path": "/50mZMR1gxqFNahFA8nahFnvsWQy.jpg", - "cast_id": 20, - "character": "Sophie", - "credit_id": "63583305665408007e0b82ff", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 162413, - "known_for_department": "Acting", - "name": "Suzanne Bertish", - "original_name": "Suzanne Bertish", - "popularity": 5.699, - "profile_path": "/6UEvYDr97XooqCBSXafsRy1KEWw.jpg", - "cast_id": 142, - "character": "Madame Laurent", - "credit_id": "64fc6bc2f85958013a8db0be", - "order": 6 - }, - { - "adult": false, - "gender": 1, - "id": 2490509, - "known_for_department": "Acting", - "name": "Léontine d'Oncieu", - "original_name": "Léontine d'Oncieu", - "popularity": 1.055, - "profile_path": "/cuH7fCQtG2VaDOA7DLl3cVjB9G4.jpg", - "cast_id": 143, - "character": "Simone", - "credit_id": "64fc6bcfdc1cb4011fc47e72", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 4033927, - "known_for_department": "Acting", - "name": "Anouk Darwin Homewood", - "original_name": "Anouk Darwin Homewood", - "popularity": 0.767, - "profile_path": "/uaCycUZotvP8sNIRNLB2tyfJPRs.jpg", - "cast_id": 144, - "character": "Céleste", - "credit_id": "64fc6bdde0ca7f014f6ec838", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1277975, - "known_for_department": "Acting", - "name": "Peter Hudson", - "original_name": "Peter Hudson", - "popularity": 3.238, - "profile_path": "/gTiHdNw4siCuQlEhfnserILryOz.jpg", - "cast_id": 145, - "character": "Father Ridley", - "credit_id": "64fc6beaf8595800adc97960", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 1068693, - "known_for_department": "Acting", - "name": "Tamar Baruch", - "original_name": "Tamar Baruch", - "popularity": 2.039, - "profile_path": "/uuxxbrknK7LDw93pMRqMRs9Ie2Q.jpg", - "cast_id": 146, - "character": "Sister Amara", - "credit_id": "64fc6bf6dc1cb400b0bb386d", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 20755, - "known_for_department": "Acting", - "name": "Natalia Safran", - "original_name": "Natalia Safran", - "popularity": 5.566, - "profile_path": "/3luVtifpeQvF54jEf6NbK2Oz0dE.jpg", - "cast_id": 147, - "character": "Sister Chloe", - "credit_id": "64fc6c02efea7a0137d09104", - "order": 11 - }, - { - "adult": false, - "gender": 2, - "id": 3405036, - "known_for_department": "Acting", - "name": "Maxime Elias-Menet", - "original_name": "Maxime Elias-Menet", - "popularity": 3.887, - "profile_path": "/acd2QkdeFVQEWDHwgz7JRGE86CW.jpg", - "cast_id": 148, - "character": "Jacques", - "credit_id": "64fc6c0ef8595800adc97973", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 231254, - "known_for_department": "Acting", - "name": "Pascal Aubert", - "original_name": "Pascal Aubert", - "popularity": 1.198, - "profile_path": "/pcJJNgQafPr1rY12o8i9qbg4jVR.jpg", - "cast_id": 149, - "character": "Father Noiret", - "credit_id": "64fc6c19db4ed61032a58792", - "order": 13 - }, - { - "adult": false, - "gender": 1, - "id": 21657, - "known_for_department": "Acting", - "name": "Vera Farmiga", - "original_name": "Vera Farmiga", - "popularity": 25.741, - "profile_path": "/5Vs7huBmTKftwlsc2BPAntyaQYj.jpg", - "cast_id": 171, - "character": "Lorraine Warren", - "credit_id": "64fc6d5fdb4ed61033a049f4", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 17178, - "known_for_department": "Acting", - "name": "Patrick Wilson", - "original_name": "Patrick Wilson", - "popularity": 21.588, - "profile_path": "/tc1ezEfIY8BhCy85svOUDtpBFPt.jpg", - "cast_id": 170, - "character": "Ed Warren", - "credit_id": "64fc6d53e0ca7f014f6ec8c6", - "order": 15 - }, - { - "adult": false, - "gender": 1, - "id": 129167, - "known_for_department": "Acting", - "name": "Alexandra Gentil", - "original_name": "Alexandra Gentil", - "popularity": 0.706, - "profile_path": "/590rfUeccr0q8d5RaZkQebvFkE.jpg", - "cast_id": 150, - "character": "Sister Astrid", - "credit_id": "64fc6c26dc1cb4011fc47e92", - "order": 16 - }, - { - "adult": false, - "gender": 1, - "id": 2049947, - "known_for_department": "Acting", - "name": "Florence Mestais", - "original_name": "Florence Mestais", - "popularity": 0.6, - "profile_path": "/uXi1nfRTHAXbX54norvJc4eQWKq.jpg", - "cast_id": 151, - "character": "Double Demon Nun", - "credit_id": "64fc6c45ffc9de0ee2075f65", - "order": 17 - }, - { - "adult": false, - "gender": 0, - "id": 4262427, - "known_for_department": "Acting", - "name": "Margaux Borel", - "original_name": "Margaux Borel", - "popularity": 0.648, - "profile_path": null, - "cast_id": 152, - "character": "Double Demon Nun", - "credit_id": "64fc6c57ffc9de0edf5eeb18", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 2141215, - "known_for_department": "Acting", - "name": "Viviana Moin", - "original_name": "Viviana Moin", - "popularity": 0.6, - "profile_path": null, - "cast_id": 153, - "character": "Sister Maria", - "credit_id": "64fc6c63efea7a00c394bc71", - "order": 19 - }, - { - "adult": false, - "gender": 0, - "id": 3088850, - "known_for_department": "Acting", - "name": "Renata Palminiello", - "original_name": "Renata Palminiello", - "popularity": 0.6, - "profile_path": null, - "cast_id": 154, - "character": "Sister Pia", - "credit_id": "64fc6c6eefea7a00aad585a1", - "order": 20 - }, - { - "adult": false, - "gender": 0, - "id": 2465638, - "known_for_department": "Acting", - "name": "Fulvia Patrizia Olivieri", - "original_name": "Fulvia Patrizia Olivieri", - "popularity": 1.029, - "profile_path": null, - "cast_id": 155, - "character": "Abbess", - "credit_id": "64fc6c7be0ca7f014f6ec883", - "order": 21 - }, - { - "adult": false, - "gender": 0, - "id": 4262430, - "known_for_department": "Acting", - "name": "Camille Amiel", - "original_name": "Camille Amiel", - "popularity": 0.6, - "profile_path": null, - "cast_id": 156, - "character": "Julie", - "credit_id": "64fc6c87efea7a0137d09145", - "order": 22 - }, - { - "adult": false, - "gender": 0, - "id": 4262432, - "known_for_department": "Acting", - "name": "Margot Morris", - "original_name": "Margot Morris", - "popularity": 0.98, - "profile_path": null, - "cast_id": 157, - "character": "Aurélie", - "credit_id": "64fc6c97f85958013a8db121", - "order": 23 - }, - { - "adult": false, - "gender": 2, - "id": 2436021, - "known_for_department": "Acting", - "name": "Gaël Raës", - "original_name": "Gaël Raës", - "popularity": 0.6, - "profile_path": "/wVn7MmrfqIycdHwFxQlcBGN4Diq.jpg", - "cast_id": 158, - "character": "Cedric the Altar Boy", - "credit_id": "64fc6ca5f8595800adc979ae", - "order": 24 - }, - { - "adult": false, - "gender": 1, - "id": 3589497, - "known_for_department": "Acting", - "name": "Sarah Pachoud", - "original_name": "Sarah Pachoud", - "popularity": 1.4, - "profile_path": null, - "cast_id": 159, - "character": "Emily", - "credit_id": "64fc6caff8595800ff50f8c1", - "order": 25 - }, - { - "adult": false, - "gender": 1, - "id": 2661399, - "known_for_department": "Acting", - "name": "Lieve Carchon", - "original_name": "Lieve Carchon", - "popularity": 0.6, - "profile_path": null, - "cast_id": 160, - "character": "Sister Concetta", - "credit_id": "64fc6cbbdb4ed61038543798", - "order": 26 - }, - { - "adult": false, - "gender": 2, - "id": 133032, - "known_for_department": "Acting", - "name": "David Horovitch", - "original_name": "David Horovitch", - "popularity": 2.368, - "profile_path": "/fehBI7B9QaAq9QlwVmvQqCr9C50.jpg", - "cast_id": 161, - "character": "Cardinal Conroy", - "credit_id": "64fc6cc8f8595800e2b0318c", - "order": 27 - }, - { - "adult": false, - "gender": 2, - "id": 1157588, - "known_for_department": "Acting", - "name": "Paul Spera", - "original_name": "Paul Spera", - "popularity": 4.244, - "profile_path": "/4qlCzGHJ0b0Kh4bTFx9Ofuy8RbT.jpg", - "cast_id": 162, - "character": "Deacon Scott", - "credit_id": "64fc6cd5f8595800adc979ca", - "order": 28 - }, - { - "adult": false, - "gender": 0, - "id": 1912235, - "known_for_department": "Acting", - "name": "Kate Colebrook", - "original_name": "Kate Colebrook", - "popularity": 0.6, - "profile_path": "/pGdoKphw7w3OXX6ojxwK26vukC8.jpg", - "cast_id": 163, - "character": "Irene's Mother / St. Lucy", - "credit_id": "64fc6ce3dc1cb400c8bfd37c", - "order": 29 - }, - { - "adult": false, - "gender": 0, - "id": 4262438, - "known_for_department": "Acting", - "name": "Margot Bernazzi", - "original_name": "Margot Bernazzi", - "popularity": 0.6, - "profile_path": null, - "cast_id": 164, - "character": "Young Irene", - "credit_id": "64fc6cf1dc1cb401028d72a2", - "order": 30 - }, - { - "adult": false, - "gender": 2, - "id": 2312343, - "known_for_department": "Acting", - "name": "Grégory Di Meglio", - "original_name": "Grégory Di Meglio", - "popularity": 1.029, - "profile_path": "/w8lVto9BpK12wRbqyLkIiZduA5a.jpg", - "cast_id": 165, - "character": "Hotel Clerk", - "credit_id": "64fc6cfedb4ed61033a049db", - "order": 31 - }, - { - "adult": false, - "gender": 0, - "id": 3764338, - "known_for_department": "Acting", - "name": "Delcho Koprivshki", - "original_name": "Delcho Koprivshki", - "popularity": 0.6, - "profile_path": "/hCj6OmDOTScO2IAgnqqfK5Lcf3U.jpg", - "cast_id": 166, - "character": "Ethan Rome", - "credit_id": "64fc6d0bdc1cb401028d72b1", - "order": 32 - }, - { - "adult": false, - "gender": 0, - "id": 1768828, - "known_for_department": "Acting", - "name": "Philippe Josserand", - "original_name": "Philippe Josserand", - "popularity": 0.6, - "profile_path": null, - "cast_id": 167, - "character": "Doctor", - "credit_id": "64fc6d16efea7a00e0336274", - "order": 33 - }, - { - "adult": false, - "gender": 0, - "id": 4262442, - "known_for_department": "Acting", - "name": "Aaron-Jon North", - "original_name": "Aaron-Jon North", - "popularity": 0.6, - "profile_path": null, - "cast_id": 168, - "character": "Demon Goat", - "credit_id": "64fc6d24ffc9de0ee00b8c32", - "order": 34 - }, - { - "adult": false, - "gender": 2, - "id": 80823, - "known_for_department": "Sound", - "name": "Andrew Morgado", - "original_name": "Andrew Morgado", - "popularity": 9.997, - "profile_path": "/rDkWTPcsFtw5MQCi1qxSXXZlXG2.jpg", - "cast_id": 169, - "character": "Demonic Voice (voice)", - "credit_id": "64fc6d30ffc9de0ee1750dad", - "order": 35 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 2127, - "known_for_department": "Production", - "name": "James Wan", - "original_name": "James Wan", - "popularity": 16.527, - "profile_path": "/bNJccMIKzCtYnndcOKniSKCzo5Y.jpg", - "credit_id": "6269514912aabc00a6e686e9", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2127, - "known_for_department": "Production", - "name": "James Wan", - "original_name": "James Wan", - "popularity": 16.527, - "profile_path": "/bNJccMIKzCtYnndcOKniSKCzo5Y.jpg", - "credit_id": "64a6eb240398ab010c549a82", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 2, - "id": 7229, - "known_for_department": "Sound", - "name": "Marco Beltrami", - "original_name": "Marco Beltrami", - "popularity": 3.958, - "profile_path": "/fb3TfFITlOC0BN3kNpUXj1FL0LN.jpg", - "credit_id": "64a6ebe5cae63200af74d2c8", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 5626, - "known_for_department": "Production", - "name": "Michael Polaire", - "original_name": "Michael Polaire", - "popularity": 1.151, - "profile_path": "/dtx230O5IRXQV1F6BvcijTDlBcm.jpg", - "credit_id": "64a6eb852b531d014584a2ed", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 16370, - "known_for_department": "Crew", - "name": "Jean-Christophe Magnaud", - "original_name": "Jean-Christophe Magnaud", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8900d5d85007b695050", - "department": "Visual Effects", - "job": "Special Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 47790, - "known_for_department": "Art", - "name": "Laurent Usse", - "original_name": "Laurent Usse", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaf96a2227010c4cf637", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 52259, - "known_for_department": "Production", - "name": "Peter Safran", - "original_name": "Peter Safran", - "popularity": 4.858, - "profile_path": "/fi7kdDDUdNrn5K6vmLkLrLarQQs.jpg", - "credit_id": "626952cb4ccc5000651df410", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 57430, - "known_for_department": "Production", - "name": "Richard Brener", - "original_name": "Richard Brener", - "popularity": 1.959, - "profile_path": "/i1nFbAKpbtjxBr2vkY5WeYRs250.jpg", - "credit_id": "63462d179bcd0f007d31d9e8", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 967606, - "known_for_department": "Art", - "name": "Stéphane Cressend", - "original_name": "Stéphane Cressend", - "popularity": 1.796, - "profile_path": "/cU2fx2PlRqcQtAWnoFpdoQa1YfA.jpg", - "credit_id": "6419a683e741460086735319", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 2, - "id": 969283, - "known_for_department": "Production", - "name": "Dave Neustadter", - "original_name": "Dave Neustadter", - "popularity": 1.084, - "profile_path": null, - "credit_id": "63462d227a97ab007d571f5f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 995462, - "known_for_department": "Editing", - "name": "Gregory Plotkin", - "original_name": "Gregory Plotkin", - "popularity": 3.013, - "profile_path": "/sUGMMdWoLobZE4DuaXhLTOPVkby.jpg", - "credit_id": "64a6ebab724de10139c267a5", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 1016768, - "known_for_department": "Art", - "name": "Philip Thomas", - "original_name": "Philip Thomas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab78310325008efe3717", - "department": "Production", - "job": "Assistant Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1045531, - "known_for_department": "Costume & Make-Up", - "name": "Véronique Boslé", - "original_name": "Véronique Boslé", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6c7e74146007c8373d6", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 2, - "id": 1247264, - "known_for_department": "Writing", - "name": "Ian B. Goldberg", - "original_name": "Ian B. Goldberg", - "popularity": 3.896, - "profile_path": "/2NvX1Behd2C8qkhqaJrtAOou5XX.jpg", - "credit_id": "6419a5fe6a2227007d74545c", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 2, - "id": 1313064, - "known_for_department": "Art", - "name": "Alexis McKenzie Main", - "original_name": "Alexis McKenzie Main", - "popularity": 0.673, - "profile_path": null, - "credit_id": "6419a68c5690b5007a56090d", - "department": "Art", - "job": "Supervising Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 1324816, - "known_for_department": "Production", - "name": "Rose Wicksteed", - "original_name": "Rose Wicksteed", - "popularity": 0.6, - "profile_path": "/R5ZzAvFzgEtdJkRZLfApOlRvg5.jpg", - "credit_id": "6419a678e7414600b96c7bf7", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 1327476, - "known_for_department": "Writing", - "name": "Akela Cooper", - "original_name": "Akela Cooper", - "popularity": 5.275, - "profile_path": "/wmcLZ4DV6L1RZ5Jq67w9sbpZtt8.jpg", - "credit_id": "63462ccd9bcd0f008aaf7c51", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 1, - "id": 1327476, - "known_for_department": "Writing", - "name": "Akela Cooper", - "original_name": "Akela Cooper", - "popularity": 5.275, - "profile_path": "/wmcLZ4DV6L1RZ5Jq67w9sbpZtt8.jpg", - "credit_id": "64a6eb1807faa2013b414ee4", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1338249, - "known_for_department": "Writing", - "name": "Gary Dauberman", - "original_name": "Gary Dauberman", - "popularity": 3.169, - "profile_path": "/utWxbobxeJBRAaohiNIsIQBvuxe.jpg", - "credit_id": "6419a658e74146007c8373b2", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 1338249, - "known_for_department": "Writing", - "name": "Gary Dauberman", - "original_name": "Gary Dauberman", - "popularity": 3.169, - "profile_path": "/utWxbobxeJBRAaohiNIsIQBvuxe.jpg", - "credit_id": "64a6eb2b0398ab014edf6b67", - "department": "Writing", - "job": "Characters" - }, - { - "adult": false, - "gender": 0, - "id": 1345594, - "known_for_department": "Sound", - "name": "John Marquis", - "original_name": "John Marquis", - "popularity": 0.802, - "profile_path": null, - "credit_id": "64fb7b9bf85958013a8d44cb", - "department": "Sound", - "job": "Sound Re-Recording Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1367797, - "known_for_department": "Art", - "name": "Dominique Moisan", - "original_name": "Dominique Moisan", - "popularity": 0.616, - "profile_path": null, - "credit_id": "6419a6956a222700c6b54830", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 0, - "id": 1377300, - "known_for_department": "Production", - "name": "Arnaud Kaiser", - "original_name": "Arnaud Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7290d5d850083883293", - "department": "Production", - "job": "Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1377300, - "known_for_department": "Production", - "name": "Arnaud Kaiser", - "original_name": "Arnaud Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7395690b5007a560963", - "department": "Production", - "job": "Unit Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 1401569, - "known_for_department": "Visual Effects", - "name": "Sophie Leclerc", - "original_name": "Sophie Leclerc", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a6ebc00398ab014edf6ba6", - "department": "Visual Effects", - "job": "Visual Effects Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1406313, - "known_for_department": "Camera", - "name": "Tristan Nyby", - "original_name": "Tristan Nyby", - "popularity": 0.6, - "profile_path": null, - "credit_id": "634c34691089ba0082f00950", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 1408301, - "known_for_department": "Sound", - "name": "Jason W. Jennings", - "original_name": "Jason W. Jennings", - "popularity": 1.193, - "profile_path": null, - "credit_id": "64fb7bbcf8595800ff508a22", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 0, - "id": 1408301, - "known_for_department": "Sound", - "name": "Jason W. Jennings", - "original_name": "Jason W. Jennings", - "popularity": 1.193, - "profile_path": null, - "credit_id": "64fb7bb6f8595800c59aa8ac", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1577908, - "known_for_department": "Camera", - "name": "Sarah Boutin", - "original_name": "Sarah Boutin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9200d5d8500f2d82ff5", - "department": "Directing", - "job": "Second Unit First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 1586129, - "known_for_department": "Production", - "name": "Anne Fremiot", - "original_name": "Anne Fremiot", - "popularity": 1.314, - "profile_path": null, - "credit_id": "6419a66e3103250086f9ab7a", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 1607672, - "known_for_department": "Directing", - "name": "Michael Chaves", - "original_name": "Michael Chaves", - "popularity": 4.568, - "profile_path": "/uS8waIEPA4N2llVZO1su1cIo0sW.jpg", - "credit_id": "6269513cfea0d70a2dfc3e16", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 0, - "id": 1616041, - "known_for_department": "Camera", - "name": "Hugues Espinasse", - "original_name": "Hugues Espinasse", - "popularity": 1.007, - "profile_path": null, - "credit_id": "6419a9556a222700e976db48", - "department": "Camera", - "job": "Second Unit Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 1630948, - "known_for_department": "Art", - "name": "Emmanuel Delis", - "original_name": "Emmanuel Delis", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a6a9e7414600b96c7c08", - "department": "Art", - "job": "Set Decoration" - }, - { - "adult": false, - "gender": 2, - "id": 1661846, - "known_for_department": "Writing", - "name": "Richard Naing", - "original_name": "Richard Naing", - "popularity": 2.068, - "profile_path": null, - "credit_id": "6419a605e004a600a025af26", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1677130, - "known_for_department": "Production", - "name": "Xio Farias", - "original_name": "Xio Farias", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a72131032500c5ab2f78", - "department": "Production", - "job": "Production Secretary" - }, - { - "adult": false, - "gender": 2, - "id": 1738865, - "known_for_department": "Sound", - "name": "Erwan Kerzanet", - "original_name": "Erwan Kerzanet", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a8806a2227010c4cf574", - "department": "Sound", - "job": "Sound Mixer" - }, - { - "adult": false, - "gender": 2, - "id": 1752736, - "known_for_department": "Camera", - "name": "Rémi Quilichini", - "original_name": "Rémi Quilichini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa765690b500bb02dee0", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 1, - "id": 1765230, - "known_for_department": "Costume & Make-Up", - "name": "Agnès Beziers", - "original_name": "Agnès Beziers", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6b35690b500d4026c9d", - "department": "Costume & Make-Up", - "job": "Costume Design" - }, - { - "adult": false, - "gender": 2, - "id": 1800923, - "known_for_department": "Production", - "name": "Michael Clear", - "original_name": "Michael Clear", - "popularity": 1.314, - "profile_path": "/vQGYqmDLHscSp14BKNwUWu3x26l.jpg", - "credit_id": "632ea75add4716008e41999f", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1848723, - "known_for_department": "Production", - "name": "Eric Larsen", - "original_name": "Eric Larsen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9970d5d850083883364", - "department": "Camera", - "job": "Dolly Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1849150, - "known_for_department": "Camera", - "name": "Laurent Schepman", - "original_name": "Laurent Schepman", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aad55690b5007a560aa3", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 1904113, - "known_for_department": "Crew", - "name": "Sébastien Fouassier", - "original_name": "Sébastien Fouassier", - "popularity": 0.6, - "profile_path": "/eYvfuPIrPpJwGH18C4u5QUbcU9Y.jpg", - "credit_id": "6419a8cde004a6007be04871", - "department": "Crew", - "job": "Stunt Coordinator" - }, - { - "adult": false, - "gender": 1, - "id": 1940834, - "known_for_department": "Costume & Make-Up", - "name": "Suzel Jouguet", - "original_name": "Suzel Jouguet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6cf0d5d85007b694fc8", - "department": "Costume & Make-Up", - "job": "Key Makeup Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1959149, - "known_for_department": "Lighting", - "name": "Mathieu Poudevigne", - "original_name": "Mathieu Poudevigne", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa6c6a222700c6b54961", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 1993880, - "known_for_department": "Directing", - "name": "Guilhem Malgoire", - "original_name": "Guilhem Malgoire", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a79f310325007c0b4bcd", - "department": "Directing", - "job": "Second Unit Director" - }, - { - "adult": false, - "gender": 0, - "id": 2004529, - "known_for_department": "Lighting", - "name": "Nicolas Amedeo", - "original_name": "Nicolas Amedeo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8e3e004a600b8a66e39", - "department": "Lighting", - "job": "Rigging Gaffer" - }, - { - "adult": false, - "gender": 0, - "id": 2013658, - "known_for_department": "Camera", - "name": "Matthieu Lornat", - "original_name": "Matthieu Lornat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9a5e004a600e29fe513", - "department": "Camera", - "job": "Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2013658, - "known_for_department": "Camera", - "name": "Matthieu Lornat", - "original_name": "Matthieu Lornat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9ae31032500e8a352e8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2025863, - "known_for_department": "Camera", - "name": "Michel Strasser", - "original_name": "Michel Strasser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aae76a2227010c4cf62d", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2069364, - "known_for_department": "Crew", - "name": "Yannick Heuveline", - "original_name": "Yannick Heuveline", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8170d5d8500e0e7c347", - "department": "Crew", - "job": "Carpenter" - }, - { - "adult": false, - "gender": 2, - "id": 2069370, - "known_for_department": "Art", - "name": "Mathias Canard", - "original_name": "Mathias Canard", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a69f6a2227008de93cab", - "department": "Art", - "job": "Set Dresser" - }, - { - "adult": false, - "gender": 0, - "id": 2069376, - "known_for_department": "Lighting", - "name": "Pietro Rosso", - "original_name": "Pietro Rosso", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aabf31032500c5ab30c4", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 2069390, - "known_for_department": "Costume & Make-Up", - "name": "Kay Philips", - "original_name": "Kay Philips", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6d931032500c5ab2f5a", - "department": "Costume & Make-Up", - "job": "Key Hair Stylist" - }, - { - "adult": false, - "gender": 0, - "id": 2070804, - "known_for_department": "Art", - "name": "Thomas Laporte", - "original_name": "Thomas Laporte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a856310325010152288e", - "department": "Art", - "job": "Painter" - }, - { - "adult": false, - "gender": 0, - "id": 2083198, - "known_for_department": "Camera", - "name": "Sylvain Bardoux", - "original_name": "Sylvain Bardoux", - "popularity": 1.38, - "profile_path": null, - "credit_id": "6419a8fce7414600821837fd", - "department": "Camera", - "job": "Key Grip" - }, - { - "adult": false, - "gender": 0, - "id": 2128501, - "known_for_department": "Production", - "name": "Sophie Kingston-Smith", - "original_name": "Sophie Kingston-Smith", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab20e7414600821838c8", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 0, - "id": 2132016, - "known_for_department": "Creator", - "name": "Julien Rizzo", - "original_name": "Julien Rizzo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaabe004a6007be048db", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 2167752, - "known_for_department": "Art", - "name": "Alexis Imbert", - "original_name": "Alexis Imbert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8245690b5007a5609b4", - "department": "Art", - "job": "Standby Property Master" - }, - { - "adult": false, - "gender": 2, - "id": 2167758, - "known_for_department": "Lighting", - "name": "Michel Bouquerel", - "original_name": "Michel Bouquerel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a90e6a222700c6b548fb", - "department": "Lighting", - "job": "Gaffer" - }, - { - "adult": false, - "gender": 1, - "id": 2302447, - "known_for_department": "Production", - "name": "Victoria Palmeri", - "original_name": "Victoria Palmeri", - "popularity": 1.036, - "profile_path": null, - "credit_id": "6419a6610d5d85007b694fa3", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 2302448, - "known_for_department": "Production", - "name": "Judson Scott", - "original_name": "Judson Scott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64a6eb7207faa200e40bd0a0", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 2413967, - "known_for_department": "Directing", - "name": "Dylan Talleux", - "original_name": "Dylan Talleux", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7cb6a2227008de93d1d", - "department": "Directing", - "job": "First Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2416825, - "known_for_department": "Production", - "name": "Aurélie Avram", - "original_name": "Aurélie Avram", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab0c5690b5010163a4f3", - "department": "Production", - "job": "Casting Associate" - }, - { - "adult": false, - "gender": 2, - "id": 2501018, - "known_for_department": "Art", - "name": "Simon Witte", - "original_name": "Simon Witte", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a86fe004a600b8a66e12", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 2533647, - "known_for_department": "Acting", - "name": "Dimitri Besicovitch", - "original_name": "Dimitri Besicovitch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8b45690b5010163a46b", - "department": "Crew", - "job": "Stunt Double" - }, - { - "adult": false, - "gender": 0, - "id": 2624622, - "known_for_department": "Production", - "name": "Frederic Dagmey", - "original_name": "Frederic Dagmey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7426a222700e976da8a", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 2721718, - "known_for_department": "Camera", - "name": "Sepehr Azadi", - "original_name": "Sepehr Azadi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8f0e7414600821837f7", - "department": "Camera", - "job": "First Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 2, - "id": 2781650, - "known_for_department": "Directing", - "name": "Melvin Nkosi", - "original_name": "Melvin Nkosi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ba31032500c5ab2fbe", - "department": "Directing", - "job": "Second Assistant Director" - }, - { - "adult": false, - "gender": 1, - "id": 2797182, - "known_for_department": "Acting", - "name": "Lainey Lipson", - "original_name": "Lainey Lipson", - "popularity": 0.673, - "profile_path": "/kGghpPQp88b8VehiqCLTwam93ay.jpg", - "credit_id": "63462cedcf62cd007b4c4938", - "department": "Production", - "job": "Casting Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 2843772, - "known_for_department": "Sound", - "name": "Marco Peron", - "original_name": "Marco Peron", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8890d5d8500f2d82fc6", - "department": "Sound", - "job": "Boom Operator" - }, - { - "adult": false, - "gender": 0, - "id": 2909410, - "known_for_department": "Lighting", - "name": "Strasser Matteo", - "original_name": "Strasser Matteo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9c65690b50084e1612b", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 2935827, - "known_for_department": "Camera", - "name": "Antoine Charveriat", - "original_name": "Antoine Charveriat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a940e7414600b96c7d28", - "department": "Camera", - "job": "First Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 2986307, - "known_for_department": "Acting", - "name": "Félix Armand", - "original_name": "Félix Armand", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a710e004a600a025af8f", - "department": "Production", - "job": "Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3026422, - "known_for_department": "Directing", - "name": "Jérémy Debord", - "original_name": "Jérémy Debord", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a74d31032500c5ab2f8c", - "department": "Directing", - "job": "Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3026422, - "known_for_department": "Directing", - "name": "Jérémy Debord", - "original_name": "Jérémy Debord", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7565690b500a218c453", - "department": "Directing", - "job": "Second Second Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3032826, - "known_for_department": "Art", - "name": "Roberto DiCamillo", - "original_name": "Roberto DiCamillo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ece004a600a025afd5", - "department": "Art", - "job": "Construction Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3041142, - "known_for_department": "Camera", - "name": "Brayan Cadoret", - "original_name": "Brayan Cadoret", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9286a222700c6b54902", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 2, - "id": 3065806, - "known_for_department": "Production", - "name": "Etienne Beck", - "original_name": "Etienne Beck", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab160d5d8500838833db", - "department": "Production", - "job": "Casting Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3078338, - "known_for_department": "Camera", - "name": "Alexandre Monteau", - "original_name": "Alexandre Monteau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9df0d5d8500ba10d4d8", - "department": "Camera", - "job": "Steadicam Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3078338, - "known_for_department": "Camera", - "name": "Alexandre Monteau", - "original_name": "Alexandre Monteau", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9e7e004a600b8a66e7e", - "department": "Camera", - "job": "\"B\" Camera Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3202772, - "known_for_department": "Camera", - "name": "Quentin Roddier", - "original_name": "Quentin Roddier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aab55690b500bb02def2", - "department": "Production", - "job": "Data Management Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3206682, - "known_for_department": "Camera", - "name": "Margaux Escourolle", - "original_name": "Margaux Escourolle", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9490d5d850083883346", - "department": "Camera", - "job": "Second Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3272208, - "known_for_department": "Directing", - "name": "Frank Quatrone", - "original_name": "Frank Quatrone", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab6a0d5d8500838833fd", - "department": "Editing", - "job": "Dailies Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3327442, - "known_for_department": "Camera", - "name": "Andres Gomez Orellana", - "original_name": "Andres Gomez Orellana", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a970310325008efe3674", - "department": "Camera", - "job": "First Assistant \"B\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3409973, - "known_for_department": "Directing", - "name": "Tanya Larcinese", - "original_name": "Tanya Larcinese", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7680d5d8500ba10d413", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3441577, - "known_for_department": "Editing", - "name": "Darren Hallihan", - "original_name": "Darren Hallihan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab4be7414600f7efdee7", - "department": "Editing", - "job": "Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 3492841, - "known_for_department": "Lighting", - "name": "Jean-Charles Etien", - "original_name": "Jean-Charles Etien", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a95d5690b500bb02de99", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3492851, - "known_for_department": "Camera", - "name": "Matteo Nira Mancini", - "original_name": "Matteo Nira Mancini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9f00d5d85007b6950c5", - "department": "Camera", - "job": "Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3498414, - "known_for_department": "Art", - "name": "Clément Jolivet", - "original_name": "Clément Jolivet", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a82c5690b500a218c4b2", - "department": "Art", - "job": "Graphic Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3508346, - "known_for_department": "Lighting", - "name": "Yohann Ramsawmy", - "original_name": "Yohann Ramsawmy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa88e741460086735472", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3537644, - "known_for_department": "Art", - "name": "Mark Schons", - "original_name": "Mark Schons", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8660d5d8500e0e7c364", - "department": "Art", - "job": "Concept Artist" - }, - { - "adult": false, - "gender": 0, - "id": 3549147, - "known_for_department": "Production", - "name": "Axel Sorensen", - "original_name": "Axel Sorensen", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab8131032500e8a353a3", - "department": "Production", - "job": "Assistant Location Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3549152, - "known_for_department": "Art", - "name": "Chouchane Bakirel", - "original_name": "Chouchane Bakirel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7d66a22270085f15c97", - "department": "Art", - "job": "Assistant Art Director" - }, - { - "adult": false, - "gender": 0, - "id": 3549186, - "known_for_department": "Camera", - "name": "Guillaume Mondin", - "original_name": "Guillaume Mondin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9d0e741460082183832", - "department": "Camera", - "job": "Best Boy Grip" - }, - { - "adult": false, - "gender": 0, - "id": 3609727, - "known_for_department": "Lighting", - "name": "Clément Valette", - "original_name": "Clément Valette", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab02e004a60081abbb02", - "department": "Lighting", - "job": "Best Boy Electric" - }, - { - "adult": false, - "gender": 0, - "id": 3722074, - "known_for_department": "Directing", - "name": "Stephanie Le Jamtel", - "original_name": "Stephanie Le Jamtel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab9f6a2227008de93e5e", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3771950, - "known_for_department": "Camera", - "name": "Baptiste Marnière", - "original_name": "Baptiste Marnière", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9bde004a600e29fe51d", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3808993, - "known_for_department": "Sound", - "name": "Lou Jullien", - "original_name": "Lou Jullien", - "popularity": 1.4, - "profile_path": null, - "credit_id": "6419a8785690b5007a5609d2", - "department": "Sound", - "job": "Sound Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3818679, - "known_for_department": "Art", - "name": "Clémence Hamel", - "original_name": "Clémence Hamel", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a809e004a60081abba01", - "department": "Art", - "job": "Set Decoration Buyer" - }, - { - "adult": false, - "gender": 0, - "id": 3818687, - "known_for_department": "Crew", - "name": "Andy Deschamps", - "original_name": "Andy Deschamps", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8c4e004a600e29fe4e6", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3834411, - "known_for_department": "Camera", - "name": "Pauline Rey", - "original_name": "Pauline Rey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa950d5d8500e0e7c41c", - "department": "Camera", - "job": "Second Assistant \"A\" Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3932173, - "known_for_department": "Production", - "name": "Wesley Barker", - "original_name": "Wesley Barker", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8a3e004a60081abba46", - "department": "Visual Effects", - "job": "Visual Effects Production Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3944287, - "known_for_department": "Crew", - "name": "Josue Daniel Acuña", - "original_name": "Josue Daniel Acuña", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8da6a222700c6b548ec", - "department": "Crew", - "job": "Video Assist Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3971928, - "known_for_department": "Costume & Make-Up", - "name": "Tavares Audrey", - "original_name": "Tavares Audrey", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6be5690b500d4026cb0", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971929, - "known_for_department": "Costume & Make-Up", - "name": "Audrey Tavares", - "original_name": "Audrey Tavares", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6f3310325008efe35a8", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971930, - "known_for_department": "Costume & Make-Up", - "name": "Corinne Texier", - "original_name": "Corinne Texier", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a6fbe004a600e29fe443", - "department": "Costume & Make-Up", - "job": "Hairstylist" - }, - { - "adult": false, - "gender": 0, - "id": 3971932, - "known_for_department": "Production", - "name": "Nicolas Avrand", - "original_name": "Nicolas Avrand", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7195690b500d4026cdb", - "department": "Production", - "job": "Assistant Production Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3971934, - "known_for_department": "Directing", - "name": "Manon Grach", - "original_name": "Manon Grach", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7605690b500bb02de16", - "department": "Directing", - "job": "Third Assistant Director" - }, - { - "adult": false, - "gender": 0, - "id": 3971937, - "known_for_department": "Crew", - "name": "Frechon Marine", - "original_name": "Frechon Marine", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7b1e004a600e29fe485", - "department": "Crew", - "job": "Set Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971938, - "known_for_department": "Crew", - "name": "Jérémie Stachow", - "original_name": "Jérémie Stachow", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7c2e7414600f7efdd8c", - "department": "Crew", - "job": "Set Production Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971940, - "known_for_department": "Art", - "name": "Sue Elliott", - "original_name": "Sue Elliott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a7ff5690b500a218c4a6", - "department": "Art", - "job": "Art Department Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 3971942, - "known_for_department": "Crew", - "name": "Clément Langelin", - "original_name": "Clément Langelin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a834e7414600f7efddc4", - "department": "Crew", - "job": "Carpenter" - }, - { - "adult": false, - "gender": 0, - "id": 3971948, - "known_for_department": "Crew", - "name": "Benjamin Colussi", - "original_name": "Benjamin Colussi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a8bd0d5d85008388331e", - "department": "Crew", - "job": "Stunts" - }, - { - "adult": false, - "gender": 0, - "id": 3971950, - "known_for_department": "Crew", - "name": "Tau Barut", - "original_name": "Tau Barut", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9060d5d8500f2d82fe8", - "department": "Crew", - "job": "Video Assist Operator" - }, - { - "adult": false, - "gender": 0, - "id": 3971952, - "known_for_department": "Camera", - "name": "Florine Jacquemot", - "original_name": "Florine Jacquemot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a97b31032500c5ab303c", - "department": "Camera", - "job": "Additional Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3971953, - "known_for_department": "Camera", - "name": "Kevin Kaiser", - "original_name": "Kevin Kaiser", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419a9836a222700c6b5491d", - "department": "Camera", - "job": "Camera Trainee" - }, - { - "adult": false, - "gender": 0, - "id": 3971956, - "known_for_department": "Directing", - "name": "Sarah Okendo", - "original_name": "Sarah Okendo", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aa5d5690b5007a560a79", - "department": "Camera", - "job": "Second Assistant Camera" - }, - { - "adult": false, - "gender": 0, - "id": 3971962, - "known_for_department": "Lighting", - "name": "Benjamin Rigot", - "original_name": "Benjamin Rigot", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaa1e004a600e29fe55d", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971964, - "known_for_department": "Lighting", - "name": "Dweezil Rotily", - "original_name": "Dweezil Rotily", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aac8e74146008673548c", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971966, - "known_for_department": "Lighting", - "name": "Bastien Semeriva", - "original_name": "Bastien Semeriva", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aadee74146008673549b", - "department": "Lighting", - "job": "Electrician" - }, - { - "adult": false, - "gender": 0, - "id": 3971968, - "known_for_department": "Camera", - "name": "Jérôme Tanguy", - "original_name": "Jérôme Tanguy", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419aaf05690b5007a560abd", - "department": "Camera", - "job": "Digital Imaging Technician" - }, - { - "adult": false, - "gender": 0, - "id": 3971972, - "known_for_department": "Production", - "name": "Peggy Quetglas", - "original_name": "Peggy Quetglas", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab36e004a600e29fe58f", - "department": "Production", - "job": "Extras Casting Assistant" - }, - { - "adult": false, - "gender": 0, - "id": 3971973, - "known_for_department": "Costume & Make-Up", - "name": "Michèle Pezzin", - "original_name": "Michèle Pezzin", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab3fe7414600b96c7df2", - "department": "Costume & Make-Up", - "job": "Assistant Costume Designer" - }, - { - "adult": false, - "gender": 0, - "id": 3971975, - "known_for_department": "Editing", - "name": "Jackie Mata", - "original_name": "Jackie Mata", - "popularity": 0.616, - "profile_path": null, - "credit_id": "6419ab610d5d85007b69512c", - "department": "Editing", - "job": "Dailies Manager" - }, - { - "adult": false, - "gender": 0, - "id": 3971976, - "known_for_department": "Crew", - "name": "Serop Cheikhoyan", - "original_name": "Serop Cheikhoyan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419ab955690b5010163a535", - "department": "Crew", - "job": "Assistant Script" - }, - { - "adult": false, - "gender": 0, - "id": 3971977, - "known_for_department": "Crew", - "name": "Laura Gaubert", - "original_name": "Laura Gaubert", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6419abac0d5d8500ba10d559", - "department": "Crew", - "job": "Driver" - }, - { - "adult": false, - "gender": 0, - "id": 4261334, - "known_for_department": "Sound", - "name": "Zach Pino", - "original_name": "Zach Pino", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64fb7baadc1cb401028d03c6", - "department": "Sound", - "job": "Sound Effects Editor" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Film", - "key": "3h8p976zg4E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-09-05T16:33:00.000Z", - "id": "64f763a04ccc5000fe7da275" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Relic", - "key": "8H1sm8jiXPs", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-28T17:00:04.000Z", - "id": "64ed6319839018013cdbe6ab" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Origins", - "key": "A8qo7QXZr3E", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:26:35.000Z", - "id": "64e35737076ce843b74de235" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Discover", - "key": "PUHFbO3UMIM", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:23:03.000Z", - "id": "64e3572f65e0a200e2eff497" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Protect", - "key": "cs4dG8dnc1o", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-08-15T11:18:54.000Z", - "id": "64e357267ef381209daa3a8c" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "QF-oyCwaArU", - "site": "YouTube", - "size": 2160, - "type": "Trailer", - "official": true, - "published_at": "2023-07-06T16:00:29.000Z", - "id": "64a6e83707faa200aea637c1" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pLm9j7o5InoWaG2tlaQABYR2cAx.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8Ahp89AbwLu8rmWhR6yhpTt6uTj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/rr93BAp18QlukGy3FVt2bGRHPdB.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/f7VY9NsWGPCg7KihZzKvSLnf5y1.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "es", - "file_path": "/t8x4dQaljECoJg3mWC9pRq9yrCX.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/tzqegi5m05VEFGmUX4Uk9xsSE1P.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.777, - "height": 777, - "iso_639_1": null, - "file_path": "/2yjrmdQwYIVWlhCSWD5ZeI7F6zK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1381 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/gRTH1LAj0Uadq9SWaJyOzuvVDta.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1716, - "iso_639_1": null, - "file_path": "/aX3Od8NVLgM7pMYgRpTPkwSrbSC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3051 - }, - { - "aspect_ratio": 1.778, - "height": 1645, - "iso_639_1": null, - "file_path": "/nJBgoHYnxebQRzB5NfejPFDT0xH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2924 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/esZIA8xoHv4Qd6RisNCN2fqRqMT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 1.1, - "height": 1500, - "iso_639_1": "en", - "file_path": "/k8RauXaOjYiO7UNTFpAWgkTV4tD.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1650 - }, - { - "aspect_ratio": 1.099, - "height": 1891, - "iso_639_1": "en", - "file_path": "/ocIyH3eMVU1BBajc0YHENjYzqCL.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2079 - }, - { - "aspect_ratio": 2.664, - "height": 1284, - "iso_639_1": "en", - "file_path": "/flNxNS2Z7kFdjKnrBfQEbazKIJQ.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 3421 - }, - { - "aspect_ratio": 4.123, - "height": 415, - "iso_639_1": "ja", - "file_path": "/xCTgBAH6BPt85VsDU3PHyjiaDXW.png", - "vote_average": 0, - "vote_count": 0, - "width": 1711 - }, - { - "aspect_ratio": 1.789, - "height": 317, - "iso_639_1": "pt", - "file_path": "/vr5vB0xAFlZszGQfSwnDIWMB2hX.png", - "vote_average": 0, - "vote_count": 0, - "width": 567 - }, - { - "aspect_ratio": 1.097, - "height": 371, - "iso_639_1": "en", - "file_path": "/kAZq5gs6fu3gXgJY3kEQm2lEpKz.png", - "vote_average": 0, - "vote_count": 0, - "width": 407 - }, - { - "aspect_ratio": 2.132, - "height": 794, - "iso_639_1": "uk", - "file_path": "/1KB5BxzY8ZzSzZw18e050gzzuXq.png", - "vote_average": 0, - "vote_count": 0, - "width": 1693 - }, - { - "aspect_ratio": 2.132, - "height": 794, - "iso_639_1": "uk", - "file_path": "/gKEpj65Hxm5SlBa3lCPCoKXvxNX.png", - "vote_average": 0, - "vote_count": 0, - "width": 1693 - }, - { - "aspect_ratio": 0.806, - "height": 504, - "iso_639_1": "th", - "file_path": "/5aGYNiniRz3a0ZQChXFgIQ23Evb.png", - "vote_average": 0, - "vote_count": 0, - "width": 406 - }, - { - "aspect_ratio": 4.24, - "height": 416, - "iso_639_1": "fr", - "file_path": "/dYjUCqeTVfsBT9PGXbn3nZrmR9V.png", - "vote_average": 0, - "vote_count": 0, - "width": 1764 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "vote_average": 5.52, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/c9kVD7W8CT5xe4O3hQ7bFWwk68U.jpg", - "vote_average": 5.392, - "vote_count": 8, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/nt5U1MgFcyxCYA6cssNKtnn2FsF.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/mYD7rtnL2s8zkZ9Vuc2HvHrlFsQ.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/dVamZDGzxxItYSJY4W2vp8AwSIk.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/x0ryPlzZjpOojEAuGrre2lFuBv6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/jv7lyPfBC1heRWtQUd1gX7Q0wSo.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/kR4tDVZpm9kTJnk0kiVr3OJ47nD.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/rhB3QB2dOG11LyeFXV2WtVBJFPz.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/7I5ZXOY7PXF1jdcsuyY4YI1Zq6C.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2046, - "iso_639_1": "en", - "file_path": "/92iJKrkS6rtE07EmUdrISAURbkK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2dqmsR7nrEhS6ugIuoxjLoZVR2f.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/ryYhCFdh0gIRoavn0OnihmrMgEx.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/wfsG1HRTgEwJr0GuluPHpIAVzhv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2000, - "iso_639_1": "es", - "file_path": "/um6pKc6lFQ9uKxv3jTMSr3pa4rN.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1332 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/xmRtHg6hqMzYCZJPwbY1Kycgi9O.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/lCd2x0g4LgjRayo7XVjavKdeGD3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/cn6kjfbE8jhiBuhanIc2pwuzhG5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/m2CKUfX9oLX17xnPuastUEElCRf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uTgU9N455q4mhrQ8bqVvUS6Hgz.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/vAP6JAQPVW7uzLOLN6n39tzl9oy.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/kUaAqdmju7AtdOKwyhWNui0LDtp.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "en", - "file_path": "/4myk77iGGtSkJmMquc6PtPzFPvD.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/giQpLqhQgDyi48GgBaw9XMmzC7m.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1408, - "iso_639_1": "en", - "file_path": "/uUcfMUoN7SZZxOWhirGazlqu2a.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 939 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/7INzZlAonSpHbeW5ac0tVrObgPQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/6z1UR6IF5tGG38NhD71kFaSEyWZ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1829, - "iso_639_1": "pt", - "file_path": "/jy7vAOgCWKGteroUmq4XUoUdh78.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/eCoy4u0TiICTJna83n4AXPGdBVo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/s1yNJwUDK2M2G5mDIKWCkz2IJgO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wvRQzUPavqVMzkUMfuyI7vO8mve.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/jml5BzRIEfxK7BJxUgEJJvmppM9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/l3IMa87TprVqIcHJRwCli7Inolc.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/mhlhpyPVeJ4FCoJudrAM4ok0T3e.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/AaeS9cBrMYtlr8IcQHhaUOkP35n.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/5YzDQku9jM4Fd5wuRoVzx8Cmcor.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "hu", - "file_path": "/3WBajxKBrkNhq4FUMAT5f9Ku85W.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "th", - "file_path": "/75w9bfuMPGUum6ZwBZPJLu5jw1j.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ta", - "file_path": "/zlkCnON1ICXD5btmA3vSNELsh0a.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "te", - "file_path": "/lKpHNLYbUs8nvZgQq8MFJCZlVEZ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/5WJviL21tA7MBS1S1ugcQLfkyJl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hi", - "file_path": "/m4THNR3OBqLzRWYiJ9JG964CIEB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/uvO8bWeEldYVdzYMjfnqv4glO4t.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 2160, - "iso_639_1": "en", - "file_path": "/7dcJ1ekuByoy7w2SPVM2L98BwO1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1440 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cs", - "file_path": "/7TFcvVvgcJiGAilMmKrdv491pm2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/1HZsMnVOETbr5Di2NylcrlbsV1x.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/wUqeXf2TCeHhJcrZRwFlMThIOWH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/hx4R7GqhiUP2LHJZJNrzCIqadd3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ja", - "file_path": "/zITEUNN0p6AO9LlQbbSIaAEJ1nC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/hW2dfws0DbGH4tV4k1NM73zlVXY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "ko", - "file_path": "/uw0jRY53ofMThleFnPjs6jQtK0v.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1442, - "iso_639_1": "he", - "file_path": "/1m3c79EvXz0NBbDIf6sRRFDbiHi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1010 - }, - { - "aspect_ratio": 0.676, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/lM6X8CH7ToUcrECDQgeZAO4nOl7.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 974 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/lCmIM8NC5svkoeV88IMHs1tdBjE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 781, - "iso_639_1": "hr", - "file_path": "/jzmJiysK0G56DDXSyKRtKgBSMgv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 520 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/tPynKTxF9fJrY6cdLS243Cv6TxB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/2GjVxzSvnbiSJfa3ia5ZBaJpEea.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2048, - "iso_639_1": "th", - "file_path": "/cK4sUhHFPBEOgQIKHSBEiVlTfAP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1382 - }, - { - "aspect_ratio": 0.667, - "height": 1800, - "iso_639_1": null, - "file_path": "/wAEKo6qCBMpMNLaD0mEubrWCMO9.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1200 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/9n50S0LK2eYL5inv4QeIOazKVzN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.71, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/z7t3QbIVgYsDuAbjFxAeSHeTcYi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 767 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/4VlM5oZkXRGCjB02N5k6vPFVKiV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/5m5bNsISwivv0OeJKmrFc9TmPIR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "pl", - "file_path": "/qaexcKkyyZiYrNXOGPlIE8BuYkm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.666, - "height": 1727, - "iso_639_1": "en", - "file_path": "/adnVir650H1fvhUDY0MUDXG8Poa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1151 - }, - { - "aspect_ratio": 0.675, - "height": 891, - "iso_639_1": "en", - "file_path": "/3tm3vY5bVNCOa6CSFtsoypby4U0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 601 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/zyQnr5VJGeunI3kzfIryEAieEM3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "en", - "file_path": "/smAIH9YWk6R5oZU8yJZcmjdHoKv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 2360, - "iso_639_1": "en", - "file_path": "/wqbWgrZzCmbFFjQJr7r2iQTBDAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1573 - }, - { - "aspect_ratio": 0.666, - "height": 2360, - "iso_639_1": "en", - "file_path": "/cSW80G1ov98uwvFzON38vluuMJ1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1572 - }, - { - "aspect_ratio": 0.675, - "height": 2964, - "iso_639_1": "el", - "file_path": "/gSDhPT5wZVhYR2xJdf8kAac9ymj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 2857, - "iso_639_1": "el", - "file_path": "/1GW5pAfLEHgar7EpZ9ybEIY8Xr3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/eFQ5ParCSFfTPWOXmKMpSz9eDrd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/kuViaoEt8kc92zI0XfklGHBVFiS.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 2736, - "iso_639_1": "cn", - "file_path": "/u003Ln4EkGPxvXD75eX5gcycHWr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1944 - }, - { - "aspect_ratio": 0.67, - "height": 2048, - "iso_639_1": "th", - "file_path": "/1SjlohPIj68A5qIbGWaw6kkhfOc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1373 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/weHldBTt0faPhXmfQ0FOVaDoZA2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/zjLawAhdX8z1Yx3Qy8Qn0bHv956.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/976573.json b/examples/view-transitions/src/content/movies/976573.json deleted file mode 100644 index 5044dfc2eeb4..000000000000 --- a/examples/view-transitions/src/content/movies/976573.json +++ /dev/null @@ -1,5005 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "belongs_to_collection": null, - "budget": 200000000, - "genres": [ - { "id": 16, "name": "Animation" }, - { "id": 35, "name": "Comedy" }, - { "id": 10751, "name": "Family" }, - { "id": 14, "name": "Fantasy" }, - { "id": 10749, "name": "Romance" } - ], - "homepage": "https://movies.disney.com/elemental", - "id": 976573, - "imdb_id": "tt15789038", - "original_language": "en", - "original_title": "Elemental", - "overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.", - "popularity": 953.333, - "poster_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "production_companies": [ - { - "id": 2, - "logo_path": "/wdrCwmRnLFJhEoH8GSfymY85KHT.png", - "name": "Walt Disney Pictures", - "origin_country": "US" - }, - { - "id": 3, - "logo_path": "/1TjvGVDMYsj6JBxOAkUHpPEwLf7.png", - "name": "Pixar", - "origin_country": "US" - } - ], - "production_countries": [{ "iso_3166_1": "US", "name": "United States of America" }], - "release_date": "2023-06-14", - "revenue": 484822015, - "runtime": 102, - "spoken_languages": [{ "english_name": "English", "iso_639_1": "en", "name": "English" }], - "status": "Released", - "tagline": "Opposites react.", - "title": "Elemental", - "video": false, - "vote_average": 7.784, - "vote_count": 2195, - "credits": { - "cast": [ - { - "adult": false, - "gender": 1, - "id": 1087262, - "known_for_department": "Acting", - "name": "Leah Lewis", - "original_name": "Leah Lewis", - "popularity": 14.34, - "profile_path": "/liV9OXUeo7T19hhjFlqTELtETnW.jpg", - "cast_id": 5, - "character": "Ember Lumen (voice)", - "credit_id": "631bd27f65e0a200893de33e", - "order": 0 - }, - { - "adult": false, - "gender": 2, - "id": 1639848, - "known_for_department": "Acting", - "name": "Mamoudou Athie", - "original_name": "Mamoudou Athie", - "popularity": 12.726, - "profile_path": "/iPx1s7EuBEmty7MXdKSBpEBsGYT.jpg", - "cast_id": 4, - "character": "Wade Ripple (voice)", - "credit_id": "631bd276c4f55200917b06c8", - "order": 1 - }, - { - "adult": false, - "gender": 2, - "id": 1236458, - "known_for_department": "Art", - "name": "Ronnie del Carmen", - "original_name": "Ronnie del Carmen", - "popularity": 2.327, - "profile_path": "/lPCmkQK76DOgkmcRjg9394QPyAu.jpg", - "cast_id": 8, - "character": "Bernie Lumen (voice)", - "credit_id": "6422e2c208cf8700fd8803ad", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 2073564, - "known_for_department": "Acting", - "name": "Shila Ommi", - "original_name": "Shila Ommi", - "popularity": 3.791, - "profile_path": "/i9m2RGrANNxidj0bVKlSs0zHPNX.jpg", - "cast_id": 9, - "character": "Cinder Lumen (voice)", - "credit_id": "6422e2cc2dc9dc00fd1c88f9", - "order": 3 - }, - { - "adult": false, - "gender": 1, - "id": 63234, - "known_for_department": "Acting", - "name": "Wendi McLendon-Covey", - "original_name": "Wendi McLendon-Covey", - "popularity": 12.283, - "profile_path": "/bXDG1QhUwnWa9621rOf1dO3OKoC.jpg", - "cast_id": 10, - "character": "Gale (voice)", - "credit_id": "6422e2db8d22fc00a9df0a59", - "order": 4 - }, - { - "adult": false, - "gender": 1, - "id": 11514, - "known_for_department": "Acting", - "name": "Catherine O'Hara", - "original_name": "Catherine O'Hara", - "popularity": 15.077, - "profile_path": "/cMBxHeztNVc8YXKcj084Mdd3f3U.jpg", - "cast_id": 11, - "character": "Brook Ripple (voice)", - "credit_id": "6422e2e78d22fc007c009b88", - "order": 5 - }, - { - "adult": false, - "gender": 0, - "id": 3983226, - "known_for_department": "Acting", - "name": "Mason Wertheimer", - "original_name": "Mason Wertheimer", - "popularity": 3.306, - "profile_path": "/rhXmrh7dWkCAj23MhGfI79jcbjN.jpg", - "cast_id": 12, - "character": "Clod (voice)", - "credit_id": "6422e3062dc9dc007f0e3b33", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1217619, - "known_for_department": "Acting", - "name": "Ronobir Lahiri", - "original_name": "Ronobir Lahiri", - "popularity": 2.719, - "profile_path": "/uZQu5zBGxE62uGP7qaGhjQ79bn3.jpg", - "cast_id": 42, - "character": "Harold (voice)", - "credit_id": "646e200051e6ab011db530ee", - "order": 7 - }, - { - "adult": false, - "gender": 1, - "id": 1576334, - "known_for_department": "Acting", - "name": "Wilma Bonet", - "original_name": "Wilma Bonet", - "popularity": 1.4, - "profile_path": null, - "cast_id": 43, - "character": "Flarrietta (voice)", - "credit_id": "646e200b51e6ab013ab9f0ae", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1663974, - "known_for_department": "Acting", - "name": "Joe Pera", - "original_name": "Joe Pera", - "popularity": 2.467, - "profile_path": "/lzf1mnclmHo4y53ZpvtlkWgFunZ.jpg", - "cast_id": 13, - "character": "Fern (voice)", - "credit_id": "6422e31c6a3448007bb6b578", - "order": 9 - }, - { - "adult": false, - "gender": 2, - "id": 157067, - "known_for_department": "Acting", - "name": "Matthew Yang King", - "original_name": "Matthew Yang King", - "popularity": 4.618, - "profile_path": "/jcLJIw0s2uP4PSnH5E8oM3pUyiV.jpg", - "cast_id": 44, - "character": "Alan / Lutz / Earth Pruner (voice)", - "credit_id": "646e201ea5046e01894367ac", - "order": 10 - }, - { - "adult": false, - "gender": 0, - "id": 4078463, - "known_for_department": "Acting", - "name": "Clara Lin Ding", - "original_name": "Clara Lin Ding", - "popularity": 0.656, - "profile_path": null, - "cast_id": 45, - "character": "Little Kid Ember (voice)", - "credit_id": "646e2033d185720120831482", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 1937823, - "known_for_department": "Acting", - "name": "Reagan To", - "original_name": "Reagan To", - "popularity": 0.6, - "profile_path": null, - "cast_id": 46, - "character": "Big Kid Ember (voice)", - "credit_id": "646e20459661fc013a27f748", - "order": 12 - }, - { - "adult": false, - "gender": 0, - "id": 4078465, - "known_for_department": "Acting", - "name": "Jeff Lapensee", - "original_name": "Jeff Lapensee", - "popularity": 0.6, - "profile_path": null, - "cast_id": 47, - "character": "Sparkler Customer (voice)", - "credit_id": "646e205fa5046e01058d8c73", - "order": 13 - }, - { - "adult": false, - "gender": 0, - "id": 1997753, - "known_for_department": "Editing", - "name": "Ben Morris", - "original_name": "Ben Morris", - "popularity": 0.6, - "profile_path": null, - "cast_id": 48, - "character": "Wood Immigration Official (voice)", - "credit_id": "646e2079c3514c2b0a34790f", - "order": 14 - }, - { - "adult": false, - "gender": 1, - "id": 1211955, - "known_for_department": "Acting", - "name": "Alex Kapp", - "original_name": "Alex Kapp", - "popularity": 3.454, - "profile_path": "/qpVxC6GgYaTg6iyPWV93u0i4JKK.jpg", - "cast_id": 50, - "character": "Customer / Delivery Person / Earth Landlord (voice)", - "credit_id": "646e20ab54a0980138664c86", - "order": 15 - }, - { - "adult": false, - "gender": 2, - "id": 1906860, - "known_for_department": "Acting", - "name": "P.L. Brown", - "original_name": "P.L. Brown", - "popularity": 3.662, - "profile_path": "/6sH4laBWYn3rPg6BQSe5mDYJBSe.jpg", - "cast_id": 51, - "character": "Doorman (voice)", - "credit_id": "646e20bad1857200e5a64f16", - "order": 16 - }, - { - "adult": false, - "gender": 2, - "id": 13477, - "known_for_department": "Acting", - "name": "Jonathan Adams", - "original_name": "Jonathan Adams", - "popularity": 10.731, - "profile_path": "/mkgyl2MciZ14wsYi6zedyj6hnR8.jpg", - "cast_id": 111, - "character": "Flarry (voice)", - "credit_id": "64f4248677d23b00cb877cab", - "order": 17 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 153, - "known_for_department": "Sound", - "name": "Thomas Newman", - "original_name": "Thomas Newman", - "popularity": 2.063, - "profile_path": "/j8rIiOSdBjtDL5vji8m5BtChZou.jpg", - "credit_id": "63e2cbf6af85de0081c88304", - "department": "Sound", - "job": "Original Music Composer" - }, - { - "adult": false, - "gender": 2, - "id": 153, - "known_for_department": "Sound", - "name": "Thomas Newman", - "original_name": "Thomas Newman", - "popularity": 2.063, - "profile_path": "/j8rIiOSdBjtDL5vji8m5BtChZou.jpg", - "credit_id": "646e1f4a54a09800e4118be8", - "department": "Sound", - "job": "Conductor" - }, - { - "adult": false, - "gender": 2, - "id": 7763, - "known_for_department": "Sound", - "name": "Ren Klyce", - "original_name": "Ren Klyce", - "popularity": 3.325, - "profile_path": "/tMDHEVa05pe3od1NMpfplPVPnxD.jpg", - "credit_id": "646e1f8451e6ab0157da103d", - "department": "Sound", - "job": "Sound Designer" - }, - { - "adult": false, - "gender": 2, - "id": 7763, - "known_for_department": "Sound", - "name": "Ren Klyce", - "original_name": "Ren Klyce", - "popularity": 3.325, - "profile_path": "/tMDHEVa05pe3od1NMpfplPVPnxD.jpg", - "credit_id": "6497e84a62f33500e912a0df", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 2, - "id": 7883, - "known_for_department": "Art", - "name": "Ralph Eggleston", - "original_name": "Ralph Eggleston", - "popularity": 3.289, - "profile_path": "/28ZxW5tHMuWYK8T3I0xLfVAF9yw.jpg", - "credit_id": "64330bfd4539d000777db36e", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 7894, - "known_for_department": "Lighting", - "name": "Jean-Claude Kalache", - "original_name": "Jean-Claude Kalache", - "popularity": 1.163, - "profile_path": null, - "credit_id": "64528d4ad8f44e0dadf42523", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 8053, - "known_for_department": "Visual Effects", - "name": "Michael Venturini", - "original_name": "Michael Venturini", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6452a147d48cee0136d8c791", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 8056, - "known_for_department": "Visual Effects", - "name": "Kureha Yokoo", - "original_name": "Kureha Yokoo", - "popularity": 1.4, - "profile_path": "/iVAzdPsvxhMNM6ISWOBAcLqiHlE.jpg", - "credit_id": "6452a15287a27a01723c2c29", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 12890, - "known_for_department": "Writing", - "name": "Pete Docter", - "original_name": "Pete Docter", - "popularity": 9.002, - "profile_path": "/xz46mHzo8apkVMxmrkMQvqakOL0.jpg", - "credit_id": "628271dff5c82400a5677988", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "credit_id": "62825bad8d77c40066cc3365", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 21198, - "known_for_department": "Acting", - "name": "Peter Sohn", - "original_name": "Peter Sohn", - "popularity": 14.023, - "profile_path": "/8cQGViF2lXlcsAIvFUMWboXYXIu.jpg", - "credit_id": "6422e3b42dc9dc00bf5a2100", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 57673, - "known_for_department": "Production", - "name": "Kevin Reher", - "original_name": "Kevin Reher", - "popularity": 3.556, - "profile_path": null, - "credit_id": "6486164e028f140101622e9c", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 2, - "id": 59363, - "known_for_department": "Editing", - "name": "Stephen Schaffer", - "original_name": "Stephen Schaffer", - "popularity": 1.373, - "profile_path": "/mGfsTkl4JziyG8Qohv3l0ThzKkM.jpg", - "credit_id": "64528cebc0442900e2f0e14a", - "department": "Editing", - "job": "Editor" - }, - { - "adult": false, - "gender": 2, - "id": 60279, - "known_for_department": "Acting", - "name": "Fred Tatasciore", - "original_name": "Fred Tatasciore", - "popularity": 12.065, - "profile_path": "/busoEz4khUJ0hOoKHexjXwGrsit.jpg", - "credit_id": "648da9acc2ff3d00c599c222", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 113916, - "known_for_department": "Acting", - "name": "Scott Menville", - "original_name": "Scott Menville", - "popularity": 8.078, - "profile_path": "/eI5OhQUfeTgcrikz1cfFhVNhs5u.jpg", - "credit_id": "648da99bc3c891014ebd76ad", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 94820, - "known_for_department": "Acting", - "name": "Jessica DiCicco", - "original_name": "Jessica DiCicco", - "popularity": 5.301, - "profile_path": "/7I9Ma8iV7KyiH7enKWquu7tGgah.jpg", - "credit_id": "648da91726346200ca19ec9c", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 116315, - "known_for_department": "Acting", - "name": "Kari Wahlgren", - "original_name": "Kari Wahlgren", - "popularity": 6.414, - "profile_path": "/olk68V9rMrJPdXLQvvLRIGRS7tU.jpg", - "credit_id": "648da9ce42bf01013bbcb647", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 117824, - "known_for_department": "Acting", - "name": "Assaf Cohen", - "original_name": "Assaf Cohen", - "popularity": 3.932, - "profile_path": "/aoYndszi7wKCWNJr2R8j6Elw55A.jpg", - "credit_id": "648da90f42bf0100ae312335", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 186605, - "known_for_department": "Production", - "name": "Terri Douglas", - "original_name": "Terri Douglas", - "popularity": 3.775, - "profile_path": "/6yRCc5oKalchZuRvVJJbEDNmLEd.jpg", - "credit_id": "648da91d42bf01013bbcb61d", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 225985, - "known_for_department": "Writing", - "name": "Raymond Wong", - "original_name": "Raymond Wong", - "popularity": 0.727, - "profile_path": null, - "credit_id": "6497e6d4b3440900ad52ba21", - "department": "Visual Effects", - "job": "Modelling Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 958055, - "known_for_department": "Writing", - "name": "Jason Katz", - "original_name": "Jason Katz", - "popularity": 0.811, - "profile_path": null, - "credit_id": "64528d67c044290185712f6c", - "department": "Writing", - "job": "Story Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 963497, - "known_for_department": "Production", - "name": "Natalie Lyon", - "original_name": "Natalie Lyon", - "popularity": 3.175, - "profile_path": null, - "credit_id": "64914b33559d220139bf76a9", - "department": "Production", - "job": "Casting" - }, - { - "adult": false, - "gender": 1, - "id": 970529, - "known_for_department": "Visual Effects", - "name": "Denise Ream", - "original_name": "Denise Ream", - "popularity": 3.821, - "profile_path": null, - "credit_id": "62825bbb031a1d14ad4e18a3", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 1, - "id": 1103533, - "known_for_department": "Acting", - "name": "Alisha Mullally", - "original_name": "Alisha Mullally", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648da9a4559d2200ff109be4", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 1212954, - "known_for_department": "Writing", - "name": "Kat Likkel", - "original_name": "Kat Likkel", - "popularity": 1.097, - "profile_path": null, - "credit_id": "6422e3548d22fc00a9df0a86", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1212954, - "known_for_department": "Writing", - "name": "Kat Likkel", - "original_name": "Kat Likkel", - "popularity": 1.097, - "profile_path": null, - "credit_id": "6422e3696a34480086269425", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 2, - "id": 1217803, - "known_for_department": "Acting", - "name": "Arif S. Kinchen", - "original_name": "Arif S. Kinchen", - "popularity": 1.274, - "profile_path": "/rY16iqdy5lJIyEMoL941NdzUlEr.jpg", - "credit_id": "648da978559d2200ff109bd7", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 1218983, - "known_for_department": "Writing", - "name": "Don Shank", - "original_name": "Don Shank", - "popularity": 2.343, - "profile_path": null, - "credit_id": "642314106a3448008626aaa8", - "department": "Art", - "job": "Production Design" - }, - { - "adult": false, - "gender": 0, - "id": 1219225, - "known_for_department": "Writing", - "name": "John Hoberg", - "original_name": "John Hoberg", - "popularity": 1.046, - "profile_path": null, - "credit_id": "6422e3496a344800ef311f22", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1219225, - "known_for_department": "Writing", - "name": "John Hoberg", - "original_name": "John Hoberg", - "popularity": 1.046, - "profile_path": null, - "credit_id": "6422e3638d22fc007c009bac", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 0, - "id": 1222181, - "known_for_department": "Writing", - "name": "Brenda Hsueh", - "original_name": "Brenda Hsueh", - "popularity": 1.654, - "profile_path": null, - "credit_id": "6422e35b2dc9dc007c07857f", - "department": "Writing", - "job": "Screenplay" - }, - { - "adult": false, - "gender": 0, - "id": 1222181, - "known_for_department": "Writing", - "name": "Brenda Hsueh", - "original_name": "Brenda Hsueh", - "popularity": 1.654, - "profile_path": null, - "credit_id": "6422e37008cf8700a015e9b2", - "department": "Writing", - "job": "Story" - }, - { - "adult": false, - "gender": 1, - "id": 1451088, - "known_for_department": "Acting", - "name": "Karen Huie", - "original_name": "Karen Huie", - "popularity": 4.101, - "profile_path": "/aJfKOnA80bfgLEh9oacjdGIq6Or.jpg", - "credit_id": "648da96f2f8d09011d23c2aa", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 1512665, - "known_for_department": "Sound", - "name": "Heikki Kossi", - "original_name": "Heikki Kossi", - "popularity": 2.855, - "profile_path": "/6VipnMFz9whg3WKRGld7KJDGTlo.jpg", - "credit_id": "64a850a866a0d300c66d5b42", - "department": "Sound", - "job": "Foley Artist" - }, - { - "adult": false, - "gender": 2, - "id": 1645150, - "known_for_department": "Crew", - "name": "Matt Walker", - "original_name": "Matt Walker", - "popularity": 0.638, - "profile_path": null, - "credit_id": "6497e8c16f43ec00ac3b426c", - "department": "Crew", - "job": "Executive Music Producer" - }, - { - "adult": false, - "gender": 0, - "id": 1694608, - "known_for_department": "Lighting", - "name": "Luke Martorelli", - "original_name": "Luke Martorelli", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e76a62f33500e912a07e", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1742712, - "known_for_department": "Editing", - "name": "Thomas Gonzales", - "original_name": "Thomas Gonzales", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1efea5046e00e5b86c21", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1806625, - "known_for_department": "Visual Effects", - "name": "Austin Madison", - "original_name": "Austin Madison", - "popularity": 1.506, - "profile_path": null, - "credit_id": "648da9852f8d09011d23c2b0", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 1976191, - "known_for_department": "Sound", - "name": "Coya Elliott", - "original_name": "Coya Elliott", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e841bbd0b001066eda66", - "department": "Sound", - "job": "Supervising Sound Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1993267, - "known_for_department": "Visual Effects", - "name": "Stephen Marshall", - "original_name": "Stephen Marshall", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6423147d53466100aa0159c5", - "department": "Visual Effects", - "job": "Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1993271, - "known_for_department": "Visual Effects", - "name": "Jon Reisch", - "original_name": "Jon Reisch", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1fb933a3760175d4e6b4", - "department": "Visual Effects", - "job": "Effects Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 1993327, - "known_for_department": "Crew", - "name": "Sanjay Bakshi", - "original_name": "Sanjay Bakshi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6423145c2dc9dc00fd1c9d32", - "department": "Visual Effects", - "job": "Visual Effects Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1993343, - "known_for_department": "Visual Effects", - "name": "Jacob Brooks", - "original_name": "Jacob Brooks", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e8e9b3440900c54f4623", - "department": "Crew", - "job": "Thanks" - }, - { - "adult": false, - "gender": 0, - "id": 1993360, - "known_for_department": "Visual Effects", - "name": "Cathleen Carmean", - "original_name": "Cathleen Carmean", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e576955c6500ac8943e2", - "department": "Visual Effects", - "job": "Animation Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 1993614, - "known_for_department": "Visual Effects", - "name": "Amber Rudolph", - "original_name": "Amber Rudolph", - "popularity": 0.802, - "profile_path": null, - "credit_id": "646e1f0aa5046e012469e818", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 1993615, - "known_for_department": "Visual Effects", - "name": "Allison Rutland", - "original_name": "Allison Rutland", - "popularity": 0.652, - "profile_path": null, - "credit_id": "6423149323be4600c0f6f062", - "department": "Visual Effects", - "job": "Animation Director" - }, - { - "adult": false, - "gender": 0, - "id": 1995030, - "known_for_department": "Directing", - "name": "Jahkeeli Garnett", - "original_name": "Jahkeeli Garnett", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e62d6f43ec00ffa2a98a", - "department": "Visual Effects", - "job": "Layout Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 1997753, - "known_for_department": "Editing", - "name": "Ben Morris", - "original_name": "Ben Morris", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e61b62f3350127468483", - "department": "Editing", - "job": "First Assistant Editor" - }, - { - "adult": false, - "gender": 0, - "id": 1998989, - "known_for_department": "Visual Effects", - "name": "Dave Strick", - "original_name": "Dave Strick", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e682bbd0b000c8a327a9", - "department": "Visual Effects", - "job": "Character Modelling Supervisor" - }, - { - "adult": false, - "gender": 1, - "id": 2001859, - "known_for_department": "Lighting", - "name": "Amy Rae Jones", - "original_name": "Amy Rae Jones", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e7606f6a9900e5d2f31e", - "department": "Lighting", - "job": "Lighting Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 2008327, - "known_for_department": "Production", - "name": "David Juan Bianchi", - "original_name": "David Juan Bianchi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "64528d3a87a27a00e38efbee", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 0, - "id": 2134663, - "known_for_department": "Visual Effects", - "name": "Cari Reiche", - "original_name": "Cari Reiche", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e55562f335014628e1fc", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 2147612, - "known_for_department": "Sound", - "name": "Shinnosuke Miyazawa", - "original_name": "Shinnosuke Miyazawa", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e87a62f3350108188037", - "department": "Sound", - "job": "Music Editor" - }, - { - "adult": false, - "gender": 2, - "id": 2172384, - "known_for_department": "Acting", - "name": "Cole Massie", - "original_name": "Cole Massie", - "popularity": 0.674, - "profile_path": null, - "credit_id": "648da98f559d2200ff109bdc", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 2492290, - "known_for_department": "Acting", - "name": "Secunda Wood", - "original_name": "Secunda Wood", - "popularity": 2.063, - "profile_path": "/kQ8PehWzNbD6J6emTvl6gl8IXAB.jpg", - "credit_id": "648da9d4c2ff3d011cb92f05", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 2648999, - "known_for_department": "Directing", - "name": "Cara Brody", - "original_name": "Cara Brody", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e5646f6a990102fbb226", - "department": "Directing", - "job": "Script Supervisor" - }, - { - "adult": false, - "gender": 2, - "id": 2754590, - "known_for_department": "Acting", - "name": "Innocent Ekakitie", - "original_name": "Innocent Ekakitie", - "popularity": 2.193, - "profile_path": "/8jm0JECrAwXHHj7lpIs8kLGE5hQ.jpg", - "credit_id": "648da9462f8d0900c6658622", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 2, - "id": 2827641, - "known_for_department": "Writing", - "name": "Le Tang", - "original_name": "Le Tang", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e5f762f3350108187f16", - "department": "Writing", - "job": "Story Artist" - }, - { - "adult": false, - "gender": 1, - "id": 2998024, - "known_for_department": "Acting", - "name": "Maya Tuttle", - "original_name": "Maya Tuttle", - "popularity": 0.805, - "profile_path": "/5hoy9xjZftmC9Q3Jzl5QCglGs29.jpg", - "credit_id": "648da9c42f8d090100a9f20e", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 1, - "id": 3106557, - "known_for_department": "Visual Effects", - "name": "Rebecca Euphrat", - "original_name": "Rebecca Euphrat", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e7e7eb79c200c56dc96b", - "department": "Visual Effects", - "job": "Animation" - }, - { - "adult": false, - "gender": 0, - "id": 3222733, - "known_for_department": "Acting", - "name": "Heather Eisner", - "original_name": "Heather Eisner", - "popularity": 0.687, - "profile_path": null, - "credit_id": "6497e810b3440900e2721562", - "department": "Crew", - "job": "Post Production Supervisor" - }, - { - "adult": false, - "gender": 0, - "id": 3242711, - "known_for_department": "Directing", - "name": "McKenna Jean Harris", - "original_name": "McKenna Jean Harris", - "popularity": 0.605, - "profile_path": null, - "credit_id": "6497e5d6eb79c200ad71b58e", - "department": "Production", - "job": "Associate Producer" - }, - { - "adult": false, - "gender": 1, - "id": 3463962, - "known_for_department": "Production", - "name": "Lexi Diamond", - "original_name": "Lexi Diamond", - "popularity": 1.4, - "profile_path": null, - "credit_id": "648da9ecc2ff3d00e2e00072", - "department": "Sound", - "job": "ADR Coordinator" - }, - { - "adult": false, - "gender": 0, - "id": 4078461, - "known_for_department": "Crew", - "name": "J. Garett Sheldrew", - "original_name": "J. Garett Sheldrew", - "popularity": 0.6, - "profile_path": null, - "credit_id": "646e1f2133a37600e67cb11e", - "department": "Crew", - "job": "In Memory Of" - }, - { - "adult": false, - "gender": 0, - "id": 4107452, - "known_for_department": "Acting", - "name": "Dylan Buccieri", - "original_name": "Dylan Buccieri", - "popularity": 0.6, - "profile_path": null, - "credit_id": "648da90642bf01013bbcb613", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 3, - "id": 4107463, - "known_for_department": "Sound", - "name": "Kai Ava Hauser", - "original_name": "Kai Ava Hauser", - "popularity": 0.65, - "profile_path": null, - "credit_id": "648da9612f8d09013af9b2bb", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 4107470, - "known_for_department": "Acting", - "name": "Krysta Gonzales", - "original_name": "Krysta Gonzales", - "popularity": 0.98, - "profile_path": null, - "credit_id": "648da95342bf0100e49e4842", - "department": "Sound", - "job": "ADR & Dubbing" - }, - { - "adult": false, - "gender": 0, - "id": 4129966, - "known_for_department": "Visual Effects", - "name": "John Legrande", - "original_name": "John Legrande", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e65eeb79c200ad71b5cf", - "department": "Visual Effects", - "job": "Animation Technical Director" - }, - { - "adult": false, - "gender": 0, - "id": 4129973, - "known_for_department": "Visual Effects", - "name": "Arnold Moon", - "original_name": "Arnold Moon", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e73e6f43ec00e27de13d", - "department": "Visual Effects", - "job": "Animation Technical Director" - }, - { - "adult": false, - "gender": 0, - "id": 4129974, - "known_for_department": "Crew", - "name": "Kevin Chun", - "original_name": "Kevin Chun", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6497e92abbd0b000c8a328d2", - "department": "Crew", - "job": "Thanks" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Steal the Show” Lofi", - "key": "_JUxMulBL38", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-09-15T16:30:12.000Z", - "id": "65048719c92c5d00e1f35f9d" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Date Announce", - "key": "UQeTCD-VD2Y", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-09-06T13:00:20.000Z", - "id": "64f87a955f2b8d011b50229e" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "We Love You Lutz", - "key": "PeWnAFeqMUA", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-07-10T17:00:13.000Z", - "id": "64ac3c4fb686b9012f87f9a2" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "\"Can You Handle The Fire?\" Taste Testing with the Cast", - "key": "XYZ_IK0u3CA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-16T23:51:55.000Z", - "id": "648d1873263462012d499ee7" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Our Blue Flame", - "key": "Ei4wseRRJhc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-15T20:00:06.000Z", - "id": "648b6e69c2ff3d00ffb9c40b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Audiences Love Elemental", - "key": "oQXWstFunY8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-15T17:12:54.000Z", - "id": "648b4f9b559d2200ad80c8ac" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Booth To Screen", - "key": "fo0zlG-JTeA", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-14T16:17:48.000Z", - "id": "6489f1e8e375c00139c28ab6" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "You’re So Hot", - "key": "FScosIMfGsc", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-13T19:00:06.000Z", - "id": "6488c6acbf31f2505f404a9b" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "An Act Of Clod", - "key": "wK3sO7CXdbI", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-06-08T19:00:20.000Z", - "id": "64823602e375c000c5265497" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Welcome to Element City", - "key": "rOsIzCzquV8", - "site": "YouTube", - "size": 1080, - "type": "Featurette", - "official": true, - "published_at": "2023-06-01T16:00:37.000Z", - "id": "6478c907e323f300e52357d4" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Inspect This", - "key": "9ERyopFh-dw", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-31T17:00:09.000Z", - "id": "647793ea93828e013375f599" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Living The Dream", - "key": "1r6tLt_O03s", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-30T19:00:02.000Z", - "id": "64764fe289d97f00f8fd7d01" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Iconic Pixar Moments", - "key": "Xpi8S0T2Arc", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-30T16:00:31.000Z", - "id": "6476568c12c60400e1dc2428" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Check This Out", - "key": "dyVDYAm_j68", - "site": "YouTube", - "size": 1080, - "type": "Clip", - "official": true, - "published_at": "2023-05-26T22:51:37.000Z", - "id": "6471463d8813e401452c8b7f" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Tickets on Sale!", - "key": "hwugg2r7k08", - "site": "YouTube", - "size": 1080, - "type": "Teaser", - "official": true, - "published_at": "2023-05-16T16:00:24.000Z", - "id": "6463ad9cef8b3201388829bf" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official Trailer", - "key": "hXzcyx9V0xw", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-28T12:44:23.000Z", - "id": "6422e1562dc9dc00fd1c8872" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Teaser Trailer", - "key": "-cT495xKvvs", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2022-11-17T17:00:00.000Z", - "id": "63766cb511c066008e9a2fa6" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/kzU4HuQ1yKGYdZbpGHdpjwo10G5.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/hj4Xi0tFhbN54Npd1yOsXHyUoy4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8HZT9JXCprrXjf77Yjh6VTIiEor.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/pA4sNvcohTNPx3AhEEeIu8gSt7h.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/jZIYaISP3GBSrVOPfrp98AMa8Ng.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/5luaIi1lLzLfgl8oywifeUtPN6W.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/6YInbRTk39ckuLYFmUgBCKcKNjb.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uahy4sZXrrYNrQBU7FZEWJAXiZm.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/o5T8u07SuztDpWwpgU35VysAqlG.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/cSYLX73WskxCgvpN3MtRkYUSj1T.jpg", - "vote_average": 5.198, - "vote_count": 7, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/it7yPSgca2VEJyXAqgjfaccgvJm.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": "en", - "file_path": "/2celgjkPY0ycr7HxtheQTTwdLW0.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/f2ral8b5FoWsXyFbQ7928ZPjUm3.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1079, - "iso_639_1": null, - "file_path": "/7Yuf6j6N76SfqRWqT0I0ZUjICc2.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 1918 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/pLNUaEOQNstCfgxBNaN7fu4z04U.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/wVfnJX7FfUis4Yl6eIgTnYycrGb.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/yOgzoRxMqyUfxMThZ5NXDBH9Obb.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/mT34XU2nNf2gstoSmJFB7WI93iQ.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/4ItNuKoX11wcY67U3JRiIwX0u9W.jpg", - "vote_average": 5.044, - "vote_count": 3, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/95213P17xY5GOSpsnKJmFkv89Bh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/rKSqsDXrgXpi1S9XjMRvIOLiJxd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1620, - "iso_639_1": null, - "file_path": "/3ITCZ2ABMg1Q4P9mtVAf6TsWoT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2880 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/ng3uBX60zLPpllBNLHpDTqMPYb8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5kBlfIHfhOgsacNQI7RaB08RW1E.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/cXaMNKDkm7IrW7YArS8zcdQqcHc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/g4sqdrKghWRWjioW6XysNg6AG6C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/hRzt4DmGkJadpIS8rzqoZWR070Y.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/tO64XG1UfjkqmGlMojH2z4t8t6D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/vOAnS1i8TkADVhIIVnx6uarjcX4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/5IhdBpPx0e4baiLvBlHsx3uw8qn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/2zmV7pgmmfAwh9SMS1c4DzCBsdc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 720, - "iso_639_1": null, - "file_path": "/eftHAcvhovhhvNoApJGPwiLK0zT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1280 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/8WtPVt4q5q2k0O9lGS6LzKoLEEK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/kWwY3zdFCopkAE64bHasTq2OtU6.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "no", - "file_path": "/p0TdSWDUURD4GQQZZDoT4WNB3zC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fopU1jsb9ybkm7FGTED8j9Zox9d.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/5iXL4zpLXIF5V3nS1EZCoXQn6OV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/vnrsBGzc5CBdWRsdLz0dVMVgxL2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/d7zh6MbwQlDVL3IoxD3qln6hbcO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/yvZ0kQpnpu9XNuSGDWxEu7BvRXo.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/c8UvZzpp01cYo0AcMAtutVG9YsI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "cs", - "file_path": "/tFUljdm67wN0i3z8FbADQWjszg8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "fr", - "file_path": "/t8KNSD2xsAn2PfBW744mRKy6kKs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/9L4z42qd6WKVCBVNZ7Q1Q54be4o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/sY4HUzutXLnkwUoQ0z8Xq5o4bBG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/p6tWKKOvXoIF8A1NZHxmXi6yfTb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bFa4AxkPhLyXhmU3A7ZlXAxOWbj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/1QOlBdM1CkaRGSJuBTCBaxoC08f.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "uk", - "file_path": "/hXzi7zBoxoS7ZV9PCPZXxAKNJxC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/uvFYUfBpCDS505jYllR6kA9ju49.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/b6jydzjHwK29UUlSVuPrpgU7VMw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/fKWLcnVCHOKR4g52vYiJpbsV6In.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "en", - "file_path": "/6TTPe30gxh4nPW8RSVHnqLgw6qa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/a3XKvRQHGOojh6v4gQieRsNAhT1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "sv", - "file_path": "/9g5Tb3rX9pkn3GWRWKFpueABfJs.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "pt", - "file_path": "/67kvbJTMhqneAfRHbukdjAKuS76.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": "he", - "file_path": "/oucDPLfA0IxU6r0Lk1EwS1EExqP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1511, - "iso_639_1": null, - "file_path": "/zjuvu5WsGfSvHxMxb9yagDQV6zg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2686 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/qSwnjm4HGLbh7KCexCnCt6MsHu.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/h1uIbuF6BKQ0GDOwYNHxR19nxCW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 3.175, - "height": 604, - "iso_639_1": "cs", - "file_path": "/od69jdlhmXkLoi3SweiPJY5DV2J.png", - "vote_average": 5.384, - "vote_count": 2, - "width": 1918 - }, - { - "aspect_ratio": 3.396, - "height": 583, - "iso_639_1": "zh", - "file_path": "/h5t5PkUyhqDzQ7MLta6N5U8M2jr.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 1980 - }, - { - "aspect_ratio": 3.182, - "height": 1293, - "iso_639_1": "en", - "file_path": "/aYT1V9U0LjgCosicUA3oLnFF53x.png", - "vote_average": 5.318, - "vote_count": 3, - "width": 4114 - }, - { - "aspect_ratio": 2.035, - "height": 825, - "iso_639_1": "hu", - "file_path": "/zjZvAJVZYHr3sZCMKd8WhcGlCDP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1679 - }, - { - "aspect_ratio": 4.374, - "height": 438, - "iso_639_1": "sv", - "file_path": "/3vJD8PkVqmZ6IW64pl6CwKP2uB7.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1916 - }, - { - "aspect_ratio": 3.421, - "height": 363, - "iso_639_1": "fr", - "file_path": "/tVwqWGE16eqPkHEwCnJsOoeZRZR.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 2.527, - "height": 759, - "iso_639_1": "ko", - "file_path": "/6obzRPBy3N0ABigvyY38k0lmaI3.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1918 - }, - { - "aspect_ratio": 2.553, - "height": 751, - "iso_639_1": "he", - "file_path": "/npSZUI8kfCgi09GzOCCYiniGYQP.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 1917 - }, - { - "aspect_ratio": 3.193, - "height": 1299, - "iso_639_1": "ar", - "file_path": "/qrsSB3NsWi2dI7HeEAyxndXvl7e.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 4148 - }, - { - "aspect_ratio": 1.826, - "height": 1299, - "iso_639_1": "uk", - "file_path": "/dEIaLNmEo9pfx3Qfl0DW8YxjZvZ.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 2372 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/vDXknbhhOheny2clNUWxQm5vCmN.png", - "vote_average": 5.252, - "vote_count": 4, - "width": 1918 - }, - { - "aspect_ratio": 1.594, - "height": 1360, - "iso_639_1": "hu", - "file_path": "/AuwqAoDdzhyn3pR1TBSfaCf7Z1K.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 2168 - }, - { - "aspect_ratio": 3.19, - "height": 621, - "iso_639_1": "zh", - "file_path": "/cMBLxetK20Dl5k5i8Xivh3HTV7G.png", - "vote_average": 5.246, - "vote_count": 2, - "width": 1981 - }, - { - "aspect_ratio": 3.204, - "height": 2497, - "iso_639_1": "en", - "file_path": "/AbD1RP742UYVGG1qpEM5jjgcQ9F.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 8000 - }, - { - "aspect_ratio": 2.386, - "height": 70, - "iso_639_1": "uk", - "file_path": "/7X0dIVpPpOWBCJdn2aNCBAU3MTn.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 167 - }, - { - "aspect_ratio": 2.385, - "height": 838, - "iso_639_1": "uk", - "file_path": "/cBrS89dZrDW1zN9wc3iqYHi5ovc.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1999 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/nOPMxjReqenUU5S9taAZooCMvFN.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 2.804, - "height": 393, - "iso_639_1": "zh", - "file_path": "/hKrFFQtmCqBGPVkSBFnDZ9OW6JB.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1102 - }, - { - "aspect_ratio": 3.421, - "height": 363, - "iso_639_1": "fr", - "file_path": "/m8IKHb6faPT9SrT8D2KU7fXaWVL.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1242 - }, - { - "aspect_ratio": 3.182, - "height": 1293, - "iso_639_1": "en", - "file_path": "/60q7W37nnnUPTNBEnKdsMiLrvxA.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 4114 - }, - { - "aspect_ratio": 3.844, - "height": 473, - "iso_639_1": "ru", - "file_path": "/smXoa38j7ZHFNCLFkBDdJgMrf39.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1818 - }, - { - "aspect_ratio": 2.395, - "height": 527, - "iso_639_1": "uk", - "file_path": "/qsZvtTYUdIDOP46R8RCHDbxEooe.png", - "vote_average": 5.172, - "vote_count": 1, - "width": 1262 - }, - { - "aspect_ratio": 3.204, - "height": 2497, - "iso_639_1": "en", - "file_path": "/1fXpDJdWr6RG0nIccYJkoB1DIfL.png", - "vote_average": 0, - "vote_count": 0, - "width": 8000 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/bgTqhZVf5MW4wwOrHA82GUdN0JM.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/hG34FFXsaCgAL1zTuvOvSixjWDI.png", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 2.382, - "height": 280, - "iso_639_1": "uk", - "file_path": "/4NndJI7Sae5Gl4Koz7yrRxp3xvx.png", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 3.207, - "height": 598, - "iso_639_1": "en", - "file_path": "/bVXH9cfIcxTOnkaSyasA8BhYr8G.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.548, - "height": 157, - "iso_639_1": "he", - "file_path": "/x8PWRrt2U5SKNSMFYzhqGErjvBp.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.461, - "height": 180, - "iso_639_1": "he", - "file_path": "/2bc5xxxofGkywvaNCQTe7whw2Fj.png", - "vote_average": 0, - "vote_count": 0, - "width": 623 - }, - { - "aspect_ratio": 3.309, - "height": 907, - "iso_639_1": "es", - "file_path": "/glC1AWkQFUwCRQVIQY8hCAV9vkM.png", - "vote_average": 0, - "vote_count": 0, - "width": 3001 - }, - { - "aspect_ratio": 1.565, - "height": 170, - "iso_639_1": "hu", - "file_path": "/sn8813X6gebuhizR0dc4xXI3OgL.png", - "vote_average": 0, - "vote_count": 0, - "width": 266 - }, - { - "aspect_ratio": 2.68, - "height": 147, - "iso_639_1": "ja", - "file_path": "/cRW8hTnBzBZrz82qaNipbCFaEI5.png", - "vote_average": 0, - "vote_count": 0, - "width": 394 - }, - { - "aspect_ratio": 5.195, - "height": 77, - "iso_639_1": "el", - "file_path": "/3stCOkg2HvHF9ZnabCd3nPMVWwn.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.161, - "height": 316, - "iso_639_1": "en", - "file_path": "/uCc0mOBWVeSVOOWivfcyqaX2ypl.png", - "vote_average": 0, - "vote_count": 0, - "width": 999 - }, - { - "aspect_ratio": 3.133, - "height": 611, - "iso_639_1": "pt", - "file_path": "/lTlXNElq7YRtxhbE6IfkHRnC7TO.png", - "vote_average": 0, - "vote_count": 0, - "width": 1914 - }, - { - "aspect_ratio": 3.175, - "height": 126, - "iso_639_1": "cs", - "file_path": "/pDe09f0YIwLeuHTwchnq86nyuy.png", - "vote_average": 0, - "vote_count": 0, - "width": 400 - }, - { - "aspect_ratio": 3.622, - "height": 529, - "iso_639_1": "sv", - "file_path": "/cCpNdrvtJYhSrTHtty1UNDWsiZf.png", - "vote_average": 0, - "vote_count": 0, - "width": 1916 - }, - { - "aspect_ratio": 3.752, - "height": 580, - "iso_639_1": "da", - "file_path": "/4jHrbZ6dmGHeQMsVJNcpJzELN4k.png", - "vote_average": 0, - "vote_count": 0, - "width": 2176 - }, - { - "aspect_ratio": 4.279, - "height": 598, - "iso_639_1": "ru", - "file_path": "/a6RWYyq0dI4t7Y5j6dEIFe1NLCP.png", - "vote_average": 0, - "vote_count": 0, - "width": 2559 - }, - { - "aspect_ratio": 4.279, - "height": 598, - "iso_639_1": "ru", - "file_path": "/iOPLTdrCCskS4UtXbOCu9A5CMBQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 2559 - }, - { - "aspect_ratio": 4.229, - "height": 607, - "iso_639_1": "ru", - "file_path": "/89vYJstNL5ViW08530t3MqbRYib.png", - "vote_average": 0, - "vote_count": 0, - "width": 2567 - }, - { - "aspect_ratio": 4.035, - "height": 621, - "iso_639_1": "de", - "file_path": "/yfnE5lDb81TSsMu9Ahkf89bzI2n.png", - "vote_average": 0, - "vote_count": 0, - "width": 2506 - }, - { - "aspect_ratio": 2.527, - "height": 1300, - "iso_639_1": "ko", - "file_path": "/uX24kAXZU2yKtnZXlAcliEbthfI.png", - "vote_average": 0, - "vote_count": 0, - "width": 3285 - }, - { - "aspect_ratio": 3.13, - "height": 1296, - "iso_639_1": "pt", - "file_path": "/1kEWHmaCp2VrvModNEtrNOcQOdw.png", - "vote_average": 0, - "vote_count": 0, - "width": 4057 - }, - { - "aspect_ratio": 3.13, - "height": 1296, - "iso_639_1": "pt", - "file_path": "/7OcvI1gsZJUaxZ01RsbcJgjBquM.png", - "vote_average": 0, - "vote_count": 0, - "width": 4057 - }, - { - "aspect_ratio": 3.629, - "height": 1190, - "iso_639_1": "sv", - "file_path": "/qmtXc67371XdXixQ9fG6Q86kxk5.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 3.629, - "height": 1190, - "iso_639_1": "sv", - "file_path": "/u1KQSD1Dhx7b4SZNUVIjHaH6Fqq.png", - "vote_average": 0, - "vote_count": 0, - "width": 4319 - }, - { - "aspect_ratio": 2.096, - "height": 915, - "iso_639_1": "ko", - "file_path": "/gZehjz7CzDIxUljJRyYlW8HyzHF.png", - "vote_average": 0, - "vote_count": 0, - "width": 1918 - }, - { - "aspect_ratio": 2.076, - "height": 170, - "iso_639_1": "tr", - "file_path": "/smrwdfqFMvb3qj1iljIQUvBOqeQ.png", - "vote_average": 0, - "vote_count": 0, - "width": 353 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "vote_average": 5.766, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6oH378KUfCEitzJkm07r97L0RsZ.jpg", - "vote_average": 5.738, - "vote_count": 18, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/79gxsO7gjAgxS217mhXa1vh1hs5.jpg", - "vote_average": 5.648, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2250, - "iso_639_1": "es", - "file_path": "/d79DeKDCgFOM23O8Dr6MELZVooY.jpg", - "vote_average": 5.522, - "vote_count": 4, - "width": 1500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/mCAHMuoTuPaedcX3oBkLbZMoeVl.jpg", - "vote_average": 5.458, - "vote_count": 13, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/6BA5IbAH3O86wMmHHidoyEWtNYi.jpg", - "vote_average": 5.456, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/7GaeF6xeUbfXFZCtOCWs503CJUl.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gzuZ1ZOJHZuCOfbn5yv7StX0cjs.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/rzY5kUJJ1zGfingV2oHyyxtlGNa.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/haKaoR9bfFJLoZSYyk2lLApNbcp.jpg", - "vote_average": 5.454, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/rvSzdzwfRjAeESh1BPIxjf4eklN.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/cQMrVhtVmRBwl3YWCUoOCBBwlQu.jpg", - "vote_average": 5.39, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/ge7qII4oOlrLOmDj6f9gdkY7NC7.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/guIXg8sZGwCdpTrHPPRVbI4VRdL.jpg", - "vote_average": 5.388, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/2tYo2F53t2kRYgmsNhkC2TVpL3i.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/fmBIpKoJMEPSrQnOCvGMTo0L3ev.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.706, - "height": 2832, - "iso_639_1": "cs", - "file_path": "/6Stw0zKFN8jXSj2b9ITFJvAcXep.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/bt0vgv9mkxVIg75x3zuYswrb1v6.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/qzqqeHLl4NxpXKXxJjg9MnuVlR9.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/4E8I9spuq2XDe1Lo6jOtW0LzL66.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/88xo5uF03kEgFWXRQJerXRdONBE.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/7QsY7Jo3ZgL3pa1kdo28TA7Z6qo.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/4Xl7aPQb1bICo5RatcthkRljl2m.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 3000, - "iso_639_1": "en", - "file_path": "/hIf8BUYEozn8Ox7iFm7AjUgfNgK.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 1998 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/lV7SIaIdV1ezj92fFsZe4nMMJxc.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/qvHIwjaRVC4sMSboV618uh7Hoyf.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/rddEQ0MogoidcmrSCWs65wvcQoW.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/wFsmwZd38VNnljeqXFWTINBnNPy.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/cfXO8gMTz484ItS0AANhGS4v4b5.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/dEunKGnqyXlTGb7QpLvmld2RSvt.jpg", - "vote_average": 5.322, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2157, - "iso_639_1": "ko", - "file_path": "/1YYL1OcgjPLjAGi6n0iZe1gdl9i.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1514 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/nMb9vqh57xWafxuzrUPiHLphpBR.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/o3h0rhCiej6aTVfxOKr6kWf3og6.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1155, - "iso_639_1": "zh", - "file_path": "/tZiXmdJGOAYN27C0JnGgfPHZHy.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/kiIQYhnFopO6crVfKKY5VmzcFJS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/t4gSQcg4gspnGAE4O0VjMk3YrRK.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/cnEYjbWGGYWeeEfsFF7xGMwiql.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/5RljCwwVySmrjwOcD0QFyf2QBIv.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.682, - "height": 1760, - "iso_639_1": "sk", - "file_path": "/wOy8PzFe0UynyzxQ7x9U74LhWaR.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1200 - }, - { - "aspect_ratio": 0.724, - "height": 1080, - "iso_639_1": "sk", - "file_path": "/j9YT6lO62umTD0Q3zF4lo1ipaCf.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 782 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/8ota9zB9Ss9DG5zibIRb7nzXvIy.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/qynf5k1VBgT3aow3Pah2S3u7ys6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/qShmhP4K9eXbhLFSIBpsV7Bl9iw.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/8Dn2yaCg6EXccaPXZ2YSGKsK3RJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/qV2EHZsqoeCxI8h2vb0Uua7Eqy3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 648 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/n9JzjRfuTSVQ2WosD9aeOPAsJbp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/8rb4cP6PDJZopCH65eStfnrJ3wa.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ro", - "file_path": "/zEIdfI4TWMILyMclKvlkntNNjdP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/5Aw2CXIBVQHaim807wOXAxz3TkJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/qV6pt8Dft1KW1F5BvMVabREigRj.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/b1JeCS69nUh7wmN14HZPMlqbYDc.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/4Cm2tvtj8tU5J3yGT1JNbUYgCr2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/wteZMgtHF2jwKWxfRfljVv4dLhS.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/w7eApyAshbepBnDyYRjSeGyRHi2.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.718, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/AlOSAIpTcfc5fjXfxwZ0DbAZTD4.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 718 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/3AEUQRuZKMlkNivC5VGYHEM4Kz6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/wUBOTu0deEQmLoPXDgEvW2tIaY6.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 2818, - "iso_639_1": null, - "file_path": "/tTcrCaJznjF45HjQvUn5BfOnEIE.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1878 - }, - { - "aspect_ratio": 0.666, - "height": 2818, - "iso_639_1": "pt", - "file_path": "/chQrVPr6Q0jksITWay1u3bPnwA8.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1878 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ko", - "file_path": "/5DeIFIGdDVWkb4TVGFJDRCeqXp.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/gaDdUce6KXPT2qwrV3ekWgdicbJ.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/8riWcADI1ekEiBguVB9vkilhiQm.jpg", - "vote_average": 5.296, - "vote_count": 20, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qM5W4Q78hxuPwpD4FtbsbLilSF9.jpg", - "vote_average": 5.276, - "vote_count": 12, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/kFxbEXDrvdbdv5g1a1hWlHEUonw.jpg", - "vote_average": 5.27, - "vote_count": 10, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/a2nDPXaCHd1pDW5qfQ8VPkOM7v9.jpg", - "vote_average": 5.264, - "vote_count": 8, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 2963, - "iso_639_1": "zh", - "file_path": "/xkcV2lq00uomOHfNQYDKO6lBUIC.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/opRQF8oT5xxN7Qm2fGqZenJ3Vwu.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/d2W9sA2l18bmpE7w74mlxQ6kMp.jpg", - "vote_average": 5.258, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": null, - "file_path": "/agb6LeqB8XpZQloNGWueGdTS2S3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 800 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/C7na5XgAxQarjnbuN30l0vzDXt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 733 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/3RuphN7wadSCoIhD7u1gkLkx634.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/va2nMPqHvEFuVTYz3ch3JgkWn78.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/oC6pJoUChtmK0FeyWDZgvK13iRt.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "pt", - "file_path": "/88OGFOcFI04CL4uucb6I7ZzUqD6.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2694, - "iso_639_1": "en", - "file_path": "/nVXAXwx71NVWDIuqOSHvYzRmKP3.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 1796 - }, - { - "aspect_ratio": 0.667, - "height": 1155, - "iso_639_1": "zh", - "file_path": "/mH3JHQ1UshLwTexnURtXlvFcWER.jpg", - "vote_average": 5.252, - "vote_count": 4, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/uEWaHrc2ML9iU5K9D6Mc3A9InUQ.jpg", - "vote_average": 5.25, - "vote_count": 23, - "width": 734 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "it", - "file_path": "/v9dZ3MnuSOU5C0ma21HP30zVGI.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "vi", - "file_path": "/dbtd7QlhUlTQA2Krtl3qYqXhvVW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sk", - "file_path": "/hG8V147aFmzO0eTm0z2jXat2ki3.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/IPgNjYQhe4cfRaXEwv5z0EsuPF.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/f3NRV5TmslXhy998ONvdQg3bNjX.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/oEgPohjBSTgHCh0HLjkGqyPQTfU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 667 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/zeSKkMSNXgBHy9UupdMrF6AEIx8.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "no", - "file_path": "/oCfWslbOrTcOblrT9GSaF98SHR5.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/eJHCK1ipv006MuWrgloTEJfHcfW.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1366 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/8jUDgV4tgsSpowaBDGQ9hoyxzqP.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/zfIScorhoHLhFmxGuJ8FMeHv0jf.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/i9WcYdAwquMFvejJKfVcE18uMpq.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/9KpHaM0gUkYMiWVsE3L3hueSZM6.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "es", - "file_path": "/6VaAioDXVAUxebiBIBvn5KH9KT1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/3PvKGySWWL79iDLmGfWPJVPRoM4.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "it", - "file_path": "/3kx1seVMr5Tu4bKEpU7V4gUxbw1.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/AcYHzqRuyo9HqOvmYFzhQiFVpHc.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/ryyOmCa0G8gUHsRP26wFq4jUtN7.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "zh", - "file_path": "/5dYQaxEjvcPDYAj8D90hJGx5A3f.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": null, - "file_path": "/4Apj2R7s1GnIgoTkG2QlFezIXod.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/psedcGkS7Oa8oT7DHD26JdHMOEC.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "da", - "file_path": "/wXfsZBkbm3X4kRchIv3vyNybooc.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/sesTdQyr45yeyFeiqc0YbMm4VyU.jpg", - "vote_average": 5.206, - "vote_count": 9, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/zvgsu4D1JNZVuGDeMDt49b64AkJ.jpg", - "vote_average": 5.19, - "vote_count": 5, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/gm0cEim7L2rSQoZTU4PKdKsYadD.jpg", - "vote_average": 5.18, - "vote_count": 18, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 999, - "iso_639_1": "pt", - "file_path": "/cveXFCRCrxdARM3Gel0pRCKsssJ.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 666 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/iOsT1b85TG6SFzZmfNV1L34w0Ka.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "es", - "file_path": "/5BdO9mogSS2VLL2Gl9Zkz78jgMR.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/mNcyMK7KQEYkcBJAXRP0WYFkm60.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/9Zs7Y1irtPuFE4H80IdVgNCcsgm.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "it", - "file_path": "/z681xu8CoIEf7ncUCA89HJzlbfT.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 667 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "fr", - "file_path": "/yalkPOQQ5IFm5KxzkPX0IujfiJz.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1754, - "iso_639_1": "de", - "file_path": "/fM6AFC1oSqBBk3oIDAKNlS84P8Q.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1169 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/g36eJ7ggOTosgk64GUEDCjjg7p8.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/qMcmZ4bsobOCv210dMUUFnSOD3m.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/zRaDfw3e4YOQIqHWN4qXsXyLi1P.jpg", - "vote_average": 5.18, - "vote_count": 3, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "fr", - "file_path": "/ckg5P3Fxuapu6V6RduW9AQd9apO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/2LMVcIElqqUkjJVzcGu379x7zvW.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/gaTHXS8R8Nd9d8xU5TliB2WjQ66.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": null, - "file_path": "/ddo9O1LpDfbrcoAjio3tA3gLoNO.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/tH0IUiX0BrDQUKIkiJWiEDKlWzt.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/txWaxJJY5h00YnKkzzdqyX1upHR.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "es", - "file_path": "/7w8hxQqSQ1O9PlLIiTFFiOx4zaz.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 667 - }, - { - "aspect_ratio": 0.762, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/bmvhVtpVXpX8xX7GeD0DA4ZGSaQ.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 762 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/xLSTaiVWAZvLRq9vMPGAAdDkfnF.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/uzfSGB7RKxI4gVPLBmlQdLnsWcN.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1349, - "iso_639_1": "it", - "file_path": "/jpb0XQZL8Pl2Pb39FA4YvcWDFiT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/3JbaXwlTm6sGEORavmoso2B3pAT.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/uo4QZNsnEmo5ov8gtNHAfrYm3Nb.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/59lUTyCyJ2vbEQlNcWZ1zNLBw3T.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/zdh6FhF3vlyGUzLS8XPJex3FeEo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/dyzDg63on7Xon0vY67htnV9lHix.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 893, - "iso_639_1": "es", - "file_path": "/c7Lzl2Nt8Ej1LIAnAq1VEk80Gbw.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 595 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "nl", - "file_path": "/sKNZ7vPHvHfLEvjM9qJMqgLslTh.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.676, - "height": 1035, - "iso_639_1": "en", - "file_path": "/it8mhwz8iuxpoW9o8TTzMTRxzRn.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 700 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "da", - "file_path": "/3lOYBhqp1Z9nVp9FjfFoqUqcLHC.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 540 - }, - { - "aspect_ratio": 0.667, - "height": 2818, - "iso_639_1": "sv", - "file_path": "/8RI96HzqvvNw3pYWPHzX4UhmBZ9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1879 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/aI4OjSzf91Efa3bXEGhERGlZ6Bo.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/2C7q7mjdj2pGvKZ8DXw97A97Duy.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2048, - "iso_639_1": "ko", - "file_path": "/u5rXXbopbwOAQaZLvd6yH8yMUa9.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1536 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/e4Tdz311j53OhyMcnr4r0gDVX15.jpg", - "vote_average": 5.146, - "vote_count": 10, - "width": 734 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/z8PjyU21lFCNMnavOqPQRDUslPf.jpg", - "vote_average": 5.138, - "vote_count": 8, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "en", - "file_path": "/7eYTaY65oqJlK08e52eZ2VufPRB.jpg", - "vote_average": 5.128, - "vote_count": 6, - "width": 900 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "es", - "file_path": "/2j8ahN0ociOuUtduErwh0XY4Lkt.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/3G5FRPWalbKKrgMfapMejY481MT.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "uk", - "file_path": "/dnUeW3a4A4qpYuPQCDW0HunAPfT.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 810, - "iso_639_1": "pt", - "file_path": "/tYaiixeY48HD4ODumyEGotB9Oax.jpg", - "vote_average": 5.118, - "vote_count": 4, - "width": 540 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "fr", - "file_path": "/wMHBuxpzx2J19qNoZh7hAH5ANMm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.708, - "height": 848, - "iso_639_1": "no", - "file_path": "/An7UL2tIhiTvyXCf2EL9oPJKssy.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 600 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "es", - "file_path": "/9rmnJEgGrTBWDqlbYEab12XVlzF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/wMk70SIgeuvDosF1kqCyLplf5CE.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/3rs4kcg9kl9FdNU6IZTYHCaX1tO.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/csCb75tHzTM3nlAWz4NWmgBcVmH.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/wDQS3migdTYZY1w0JTxgwSLKMhg.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/xMpNgmaClUz4AyAXh0VqO8iscbl.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "vi", - "file_path": "/AlkKoXubU2uqkvseT1QMRwEpUoh.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "pt", - "file_path": "/iB54Rv1P3yvoVApASUqJeHZyNwm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 2835, - "iso_639_1": "zh", - "file_path": "/cMNgwyb7GYcTSIQqa7N9uYiTDQp.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1890 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/qrbsXKLYWe1ljLfHWPKjiSwkwzq.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1307, - "iso_639_1": "pt", - "file_path": "/Px14XcqrtE1h0EirImIi2t0ZRF.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 870 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "sv", - "file_path": "/b0aTqG3XfUWPipqBJCdTOeRugBW.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "ru", - "file_path": "/1Vm7oeEaxDWB84kwAIzbSDx9dKm.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 800 - }, - { - "aspect_ratio": 0.707, - "height": 1280, - "iso_639_1": "zh", - "file_path": "/aKY1cCDKvdsI9kwFEqB2A9TILJr.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 905 - }, - { - "aspect_ratio": 0.675, - "height": 2962, - "iso_639_1": "zh", - "file_path": "/a55uHjO7KyOlahjPHb999KMaS7Q.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.673, - "height": 1390, - "iso_639_1": "zh", - "file_path": "/rz9e6SC9qOTw9Ujxp8dsLRBtfA8.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 936 - }, - { - "aspect_ratio": 0.673, - "height": 1388, - "iso_639_1": "zh", - "file_path": "/1wE5DxmkYkxo5X86iJ3PBFYx60L.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 934 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sv", - "file_path": "/31MRbTvZ8xPRcwAFlfJH9OkLpTi.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/hlJfCS8wyTLuDLNe1Su2NSX5fwb.jpg", - "vote_average": 5.068, - "vote_count": 7, - "width": 733 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/bWUtuCetP6cbcNLemsef12a9sbE.jpg", - "vote_average": 5.056, - "vote_count": 5, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wzAQ0XRa8WRrGgJbPZxlUU3yf0j.jpg", - "vote_average": 4.996, - "vote_count": 6, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/b2Gj6NhXMNxS2yn6Jnm3FMN7kI1.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/pJIo1rfw9ZnYqq8UcRZawWtSUcA.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tiM0OZfL7Seq3oo5Qc2c3Aun1CZ.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/9YHFcoZ5ZDHP0UPmIABF0NR7WBe.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/wybjTNlAx05ILYda1denVUbp3Hs.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/1TfPzyvUHhfPVqf0XCksPP4SWCQ.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/2gRK6vszeATwhEOpdP1rF9UK9Jo.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/lXsfem8cF4VebywlvMkmpn60HhO.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/8HOnw4EfEWcUY3aBbHsjXPSCqJg.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.675, - "height": 1609, - "iso_639_1": "en", - "file_path": "/9UCwwVy4wDboeAOd64IXgCJDjZP.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1086 - }, - { - "aspect_ratio": 0.667, - "height": 1609, - "iso_639_1": "en", - "file_path": "/4aMsGxs3GnYvfys7qDrnXLdgIND.jpg", - "vote_average": 4.982, - "vote_count": 4, - "width": 1073 - }, - { - "aspect_ratio": 0.672, - "height": 1606, - "iso_639_1": "en", - "file_path": "/qyinBemwwXqSoCMQ6uoy9WBCDUe.jpg", - "vote_average": 4.882, - "vote_count": 8, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/6xnkCIxRDF3ZhjmjQAYH1kjBjVc.jpg", - "vote_average": 4.846, - "vote_count": 11, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1100, - "iso_639_1": "uk", - "file_path": "/qCHZRCy2etZ3REfLz36WflPLvc4.jpg", - "vote_average": 4.844, - "vote_count": 18, - "width": 734 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/trtRutJvcyIfZz26Bs33UIFW2fS.jpg", - "vote_average": 4.81, - "vote_count": 7, - "width": 2000 - }, - { - "aspect_ratio": 0.702, - "height": 2157, - "iso_639_1": "ko", - "file_path": "/78krZIgB2bVznCPaZhqSfk9mryN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1514 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sk", - "file_path": "/9IbWQPFHgI1PeNgt6NPxyi1Bblb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1620, - "iso_639_1": "el", - "file_path": "/5mUc9uaTaEUrSEmgyfoIvA2VJrr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "bg", - "file_path": "/aBNnDnWJaiH4fBvXoANGPxY6eut.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/8ZA0M4OXPWfL3PV3EHAPGGSRzJ2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "th", - "file_path": "/whWZkvUmAx0uD8ZB8bJXmqDAsZ3.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "he", - "file_path": "/xiehsJRUF57ocw5KrgGJl0CH3Dl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.675, - "height": 1440, - "iso_639_1": "lo", - "file_path": "/rxPgqSZhtpdQRVjotHI4nisOKOh.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 972 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/8dMUYDTQWzEYaUfDeH4HtzhS0jG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "cs", - "file_path": "/A8JAGlBy7hj0Fxv2zQqRhmrxvdB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/5zF8oiK3DOp60lnJ1GLO0Im5BwI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/5nyyXc9bsCGQDlZ0PUmSv8gjX5V.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/mrP6PJia0XhqFhDU8BVcXQ3k42T.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/kZxDXSe1CHdu2pHUC4SPKSaWV2N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.761, - "height": 1000, - "iso_639_1": "sk", - "file_path": "/bKfz3SQWGnkv0nCWk7nBXE2jFJU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 761 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": null, - "file_path": "/aHhKTDM7S98K5DIk18fGVgSYmoB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1919 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "he", - "file_path": "/syUsKGRIc1Py7j6ds8TEYNrmDfB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.711, - "height": 1369, - "iso_639_1": "cn", - "file_path": "/bi6daY7kv9A7Al9r6KW709fCwlA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 973 - }, - { - "aspect_ratio": 0.667, - "height": 2850, - "iso_639_1": "ko", - "file_path": "/2iYsmasI7G5LDJbBC2qrXI37o9C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/fjeIPlkQLAC6FFP7IMxwKZMIz2l.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/gMviEmpyolVyX18FS3MKvbZ8XeE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/ofVOR0Wec81fy2hs6y9DtxWMjzl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/sR21WmbAOyAp1xxQJb85NyfNQWR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/ePTLxDEk1JanQJWFPBfkeM7ufDb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/4Ge1iRrPMtzOZprVqJEf5Ls3KAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "ko", - "file_path": "/3SiD8SRX0QHRkLTK7DH1xf3a2gv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ko", - "file_path": "/6cqkV2dE29StIkczDWtNfDz0zIF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.666, - "height": 1100, - "iso_639_1": "de", - "file_path": "/aZDUSXPCs6EVWiFL5Qfe85YBYxa.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 733 - }, - { - "aspect_ratio": 0.667, - "height": 800, - "iso_639_1": "hr", - "file_path": "/6TVsnvLkRZ90aK01Qj9jUNKlCDY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 534 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/19Sd0T4H83Vf5G42MeStNi6nGoC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/9fzyh2AriSgARxqdBUcFhbZ3nOP.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/pbiisEqMx6YU733ZvZzSmSvlCaV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/kAX3FxBHw1Ppn4fwGTSN63aEgL4.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.753, - "height": 750, - "iso_639_1": "sk", - "file_path": "/sdDp0GVIFQ0nBVOjQHYniLj6OWI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 565 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "en", - "file_path": "/pRFNErGv6PcnwWGECOpPlyBcdJr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/tYS6hzPFrqhLDYXQTXphAP27Vaf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "et", - "file_path": "/1QDZeWTMoDqu69pPoUzLHshomAc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.707, - "height": 1500, - "iso_639_1": "ja", - "file_path": "/5sZqAg7Yluwv4pFuIVHfMXYWAgG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1061 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/zME66UdXTZ9e5Dq17VbmpA1AGdH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.707, - "height": 1132, - "iso_639_1": "ja", - "file_path": "/a6rLVR663RZoiAupGAUe35LFRKE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "el", - "file_path": "/YjyIztikKrGDnYxIJrrNAr2gkG.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "el", - "file_path": "/blk5btXcsbsVnO7ylUVSiHhgrJ0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ca", - "file_path": "/fAht6mr7yFoHKcBJTXa5J2rGrkl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1191, - "iso_639_1": "ro", - "file_path": "/kpOWi1Bu9KLcETKhRhwKT54rUyd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 794 - }, - { - "aspect_ratio": 0.709, - "height": 1080, - "iso_639_1": "cn", - "file_path": "/3PyJwB06Jgwjj6SdZh9PzHFXU6G.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 766 - }, - { - "aspect_ratio": 0.7, - "height": 1143, - "iso_639_1": "el", - "file_path": "/bHJVxz06MqeRFI1fsyOBUYTT7gb.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/6yVAEo70fWX4lHAIslwdQdUtibI.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/u4l1p05uIrY0OT6N7O2cLpKqMfm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7I8ntZNLaoRHlM8KjTG7f8NWbpU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.696, - "height": 1437, - "iso_639_1": "pl", - "file_path": "/fv3idA7yYUP1jt6TYy6l6AlUdQR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/s13nPIPhMEB46gjSN4xhLbk08HU.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/e5Tsx1BqnaTpAcjRNbTZPeWjnXd.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/mF1hyMYMz6l2NC0aijcGd2ThXY1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.675, - "height": 960, - "iso_639_1": "lo", - "file_path": "/x42wYSeqkG0LrgS1Eaijvm450aW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 648 - }, - { - "aspect_ratio": 0.699, - "height": 960, - "iso_639_1": "lo", - "file_path": "/dyUYLWXjwHCeaxCT4LA5TEzHKHC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 671 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "en", - "file_path": "/4ZDWfJRVARCqtHpdqs7v87U8EB8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/dPYh4CPhF6HtrcvmG1p9T5ZbFBr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "bg", - "file_path": "/6xvAv2WhYbO1PwVUBW495MgTt5B.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/fKd7ybFLZ3DtuXtAva84XfE7cpj.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "en", - "file_path": "/bcBI3H67f34aU7w8IdIMKmFIENB.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/3JiRn3gEwkC8SmfgC1IuqA4DG2r.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/6F8fvqc83TMwf28zctamFrWDPSw.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/xgNvW3ncVoe3vdbrkQ885d99Wa2.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/7BbV2YWBUl1TsPLy0x7GOxVJOmO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.679, - "height": 1236, - "iso_639_1": "en", - "file_path": "/acyPtiV1KBLsiXZO18JYv9MvRWN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 839 - }, - { - "aspect_ratio": 0.667, - "height": 1350, - "iso_639_1": "es", - "file_path": "/zU9JxCcIKy3UWBVfHqLR7mBpd7D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 900 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/1TN3RGHQQKWctvxwmnEIiqxRlRf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/htvw3mVdQVIXcWmLtEaqVCFGAvO.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/isfyDvf0PF41OppD9pNZH52EmZy.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "ru", - "file_path": "/xyxOqiWfCFZyKuX6D3QUFWkv5GK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "hu", - "file_path": "/q8iRUec3c7gk5Wq1UIvGu1vrkyC.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2500, - "iso_639_1": "ru", - "file_path": "/bML32j4v3xEkm6VQeX3riM7GcXg.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1667 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "ru", - "file_path": "/xpVP0oajb0NQpzCA1EmP8cKXx3I.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "kk", - "file_path": "/xVgrtsvxowy2PCnKV1KSucAe8vW.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 2048, - "iso_639_1": "kk", - "file_path": "/mG0o3ekFlbxUCRWb6YtBmFSnLJk.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1365 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "kk", - "file_path": "/hDaUbozZtAqfu6uCYVDtPPvC7ns.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/kUB1Ypd0Fzw8zJJQzgJuiMidaa8.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sl", - "file_path": "/zt6R4mOrBaVpMHnIavtjg6Wjm3u.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.7, - "height": 1100, - "iso_639_1": "sl", - "file_path": "/7NBvBWmyjywmU3MRh7JKHtdD8Ip.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 770 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sl", - "file_path": "/vdSQXPsgcWPE8UTO8nkuljYtOg0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "en", - "file_path": "/vwFIqNGfpvzbyI16ZSfpOiQDjZN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 750, - "iso_639_1": "pl", - "file_path": "/7mzABR3uefBwd9jBuqDFVAiuOrY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 500 - }, - { - "aspect_ratio": 0.696, - "height": 1000, - "iso_639_1": "sl", - "file_path": "/o6uOKSVlKuhHaREocvLaUI3DTOY.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 696 - }, - { - "aspect_ratio": 0.71, - "height": 2818, - "iso_639_1": "cs", - "file_path": "/jF2rPtRKV9Pu5T3EPuk8xZApY9Z.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/bWW46RTVm0tZfrqdJvsv4jUzjLl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/tpnzUki92R9Y8WQgXhpWlhMGLHm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/6QPHT1WGH9aAF6vJ87ESZnVpDyN.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.7, - "height": 1080, - "iso_639_1": "cs", - "file_path": "/1eIPtElGppB0VBwJctJhFDi5mqc.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 756 - }, - { - "aspect_ratio": 0.666, - "height": 1454, - "iso_639_1": "en", - "file_path": "/29FnUWvsmFiRVcjfuLB2JjOCJKJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 969 - }, - { - "aspect_ratio": 0.666, - "height": 1609, - "iso_639_1": "sk", - "file_path": "/4Q4am4CatAWEqd5hdzncKir0gko.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1072 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/d0s8yxw0NbVSzDfYWrj4hKwhkE1.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.75, - "height": 2560, - "iso_639_1": "sk", - "file_path": "/tuBF7pWnNoH3PYW6SzhMYEBURzM.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1919 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/4t4M8vbUM52XqnaVsr9FIMHp3Ey.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "sk", - "file_path": "/g8VbE8rXOx7nNLD76QeioERha5X.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1200, - "iso_639_1": "sk", - "file_path": "/x9B9zCYKhgVj2p6U1TG4ho9xwif.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 800 - }, - { - "aspect_ratio": 0.76, - "height": 1000, - "iso_639_1": "cs", - "file_path": "/2kzoSoTJ7RpnBjS4oVVAU5HjPdJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 760 - }, - { - "aspect_ratio": 0.75, - "height": 800, - "iso_639_1": "ab", - "file_path": "/nq8HN4VUNYMvOhsNC6rpBOBoj4D.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 600 - }, - { - "aspect_ratio": 0.667, - "height": 1000, - "iso_639_1": "ar", - "file_path": "/11zqtySC5uPAfl35vv5iz7hYKdl.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 667 - }, - { - "aspect_ratio": 0.666, - "height": 1000, - "iso_639_1": "he", - "file_path": "/r5eG7cagdtTCkNjoSKaLnHQly1o.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 666 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "uk", - "file_path": "/iSHW6IVoII6jwv3rZYPvsO6SCFJ.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/62jCS6MVvjftoARviXW0TTtpTFE.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/osV8FDF2ie5IBYZLbsc8xtpLm9C.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/9Ugw4mXvA3iHCrKVFHasn1W05zX.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1080, - "iso_639_1": "sv", - "file_path": "/sCw3hZOlZdkfho3CfpieRw5Ng2H.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 720 - }, - { - "aspect_ratio": 0.667, - "height": 2817, - "iso_639_1": "en", - "file_path": "/oVDXb2ZxpyKtwPshb8zK01iHubm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1878 - } - ] - } - } -} diff --git a/examples/view-transitions/src/content/movies/990140.json b/examples/view-transitions/src/content/movies/990140.json deleted file mode 100644 index 6422656899ff..000000000000 --- a/examples/view-transitions/src/content/movies/990140.json +++ /dev/null @@ -1,927 +0,0 @@ -{ - "data": { - "adult": false, - "backdrop_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "belongs_to_collection": null, - "budget": 0, - "genres": [ - { "id": 28, "name": "Action" }, - { "id": 18, "name": "Drama" } - ], - "homepage": "", - "id": 990140, - "imdb_id": "tt22488024", - "original_language": "cn", - "original_title": "天龍八部之喬峰傳", - "overview": "Qiao Feng is the respected leader of a roving band of martial artists. After he is wrongfully accused of murder and subsequently exiled, Qiao Feng goes on the run in search of answers about his own mysterious origin story—and the unknown enemies working to destroy him from the shadows.", - "popularity": 522.83, - "poster_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "production_companies": [ - { "id": 155372, "logo_path": null, "name": "Wishart Media Co., Ltd.", "origin_country": "" }, - { "id": 160005, "logo_path": null, "name": "Super Bullet Pictures", "origin_country": "HK" } - ], - "production_countries": [ - { "iso_3166_1": "CN", "name": "China" }, - { "iso_3166_1": "HK", "name": "Hong Kong" } - ], - "release_date": "2023-01-16", - "revenue": 159959, - "runtime": 130, - "spoken_languages": [ - { "english_name": "Cantonese", "iso_639_1": "cn", "name": "广州话 / 廣州話" }, - { "english_name": "Mandarin", "iso_639_1": "zh", "name": "普通话" } - ], - "status": "Released", - "tagline": "When a warrior belongs nowhere, the enemy is everywhere.", - "title": "Sakra", - "video": false, - "vote_average": 6.552, - "vote_count": 87, - "credits": { - "cast": [ - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "cast_id": 1, - "character": "Qiao Feng / Xiao Feng", - "credit_id": "62b0cf55ecc7e800f0fe0311", - "order": 0 - }, - { - "adult": false, - "gender": 1, - "id": 2085448, - "known_for_department": "Acting", - "name": "Yukee Chen", - "original_name": "Yukee Chen", - "popularity": 7.917, - "profile_path": "/3E8eXz1CJsE34LZsmQt1V3jH2Y5.jpg", - "cast_id": 4, - "character": "A Zhu", - "credit_id": "639572ec2cefc2007c1eb3c0", - "order": 1 - }, - { - "adult": false, - "gender": 1, - "id": 1397017, - "known_for_department": "Acting", - "name": "Liu Yase", - "original_name": "Liu Yase", - "popularity": 3.823, - "profile_path": "/2UBsASN6G37pjZtjl0Zse6S74y9.jpg", - "cast_id": 8, - "character": "A Zi", - "credit_id": "63980c59f5c8240083a9e015", - "order": 2 - }, - { - "adult": false, - "gender": 1, - "id": 84205, - "known_for_department": "Acting", - "name": "Kara Hui Ying-Hung", - "original_name": "Kara Hui Ying-Hung", - "popularity": 17.533, - "profile_path": "/6OV9kM62Y7M7EswtkpCThs0QAxg.jpg", - "cast_id": 9, - "character": "Ruan Xingzhu", - "credit_id": "63980c70f5c824007b890cd2", - "order": 3 - }, - { - "adult": false, - "gender": 2, - "id": 1800792, - "known_for_department": "Acting", - "name": "Wu Yue", - "original_name": "Wu Yue", - "popularity": 8.983, - "profile_path": "/hRePA3mh9mfAqX7SJ4rGxrNrxT7.jpg", - "cast_id": 7, - "character": "Murong Fu", - "credit_id": "63957308a0f1a200c880a34b", - "order": 4 - }, - { - "adult": false, - "gender": 2, - "id": 72732, - "known_for_department": "Acting", - "name": "Eddie Cheung", - "original_name": "Eddie Cheung", - "popularity": 5.704, - "profile_path": "/jTrBt3y43LsO8XYsQnWg8bdwsP2.jpg", - "cast_id": 14, - "character": "Duan Zhengchun", - "credit_id": "63980e36d05a0300cf2afd10", - "order": 5 - }, - { - "adult": false, - "gender": 1, - "id": 1255467, - "known_for_department": "Acting", - "name": "Grace Wong", - "original_name": "Grace Wong", - "popularity": 2.312, - "profile_path": "/Ab9GO6Awb183qaSP9VxlVNWZpFg.jpg", - "cast_id": 12, - "character": "Mrs. Ma", - "credit_id": "63980cd8d05a030094f1d7d3", - "order": 6 - }, - { - "adult": false, - "gender": 2, - "id": 1571926, - "known_for_department": "Acting", - "name": "Do Yuming", - "original_name": "Do Yuming", - "popularity": 3.349, - "profile_path": "/aqxa9aRrGOIiIcia0Vb3ErvXz4e.jpg", - "cast_id": 17, - "character": "Bai Shijing", - "credit_id": "63980fd28a88b20091ab7208", - "order": 7 - }, - { - "adult": false, - "gender": 2, - "id": 78877, - "known_for_department": "Acting", - "name": "Ray Lui", - "original_name": "Ray Lui", - "popularity": 5.367, - "profile_path": "/v6KV1Ib7ck9noPdwL6L2lAozeak.jpg", - "cast_id": 16, - "character": "Murong Bo", - "credit_id": "63980e6df5c824008bc95f42", - "order": 8 - }, - { - "adult": false, - "gender": 2, - "id": 1145614, - "known_for_department": "Directing", - "name": "Tsui Siu-Ming", - "original_name": "Tsui Siu-Ming", - "popularity": 1.31, - "profile_path": "/aY9b2ucIGylE3d7a1GNALk8qwH.jpg", - "cast_id": 15, - "character": "Jiu Mozhi", - "credit_id": "63980e5da1a9ba00a0003400", - "order": 9 - }, - { - "adult": false, - "gender": 1, - "id": 2961684, - "known_for_department": "Acting", - "name": "Cai Xiangyu", - "original_name": "Cai Xiangyu", - "popularity": 1.631, - "profile_path": "/9P9916rJ9SkiYBqrAckRsuO48FA.jpg", - "cast_id": 21, - "character": "A Bi", - "credit_id": "63cb7e60ea394900c827848a", - "order": 10 - }, - { - "adult": false, - "gender": 1, - "id": 1209782, - "known_for_department": "Acting", - "name": "Michelle Hu", - "original_name": "Michelle Hu", - "popularity": 8.5, - "profile_path": "/oNwNoLJg707G0HSIDnNU4mpaoIu.jpg", - "cast_id": 22, - "character": "Mrs. Xiao", - "credit_id": "63cb7e739a6435008def2fc7", - "order": 11 - }, - { - "adult": false, - "gender": 0, - "id": 3260046, - "known_for_department": "Acting", - "name": "Zhao Huawei", - "original_name": "Zhao Huawei", - "popularity": 0.6, - "profile_path": null, - "cast_id": 23, - "character": "Duan Yu", - "credit_id": "63cb7ea46d97e6007c9d47f2", - "order": 12 - }, - { - "adult": false, - "gender": 2, - "id": 1089434, - "known_for_department": "Acting", - "name": "Yu Kang", - "original_name": "Yu Kang", - "popularity": 4.673, - "profile_path": "/aga0SZgIsntO4ZNsOF28HBLMx3i.jpg", - "cast_id": 24, - "character": "You Ju", - "credit_id": "63cb7eba9a643500872aa4a4", - "order": 13 - }, - { - "adult": false, - "gender": 2, - "id": 1174692, - "known_for_department": "Acting", - "name": "Xu Xiangdong", - "original_name": "Xu Xiangdong", - "popularity": 2.684, - "profile_path": null, - "cast_id": 25, - "character": "Xuannan", - "credit_id": "63cb7ed0d363e500ba783604", - "order": 14 - }, - { - "adult": false, - "gender": 2, - "id": 65975, - "known_for_department": "Acting", - "name": "Yuen Cheung-Yan", - "original_name": "Yuen Cheung-Yan", - "popularity": 3.233, - "profile_path": "/oI1Q07u74Yod4t8K06aSvfEJIbH.jpg", - "cast_id": 26, - "character": "Xue Muhua", - "credit_id": "63cf408c0d2f5301d1ef7d31", - "order": 15 - }, - { - "adult": false, - "gender": 0, - "id": 3998591, - "known_for_department": "Acting", - "name": "Cheung Siu Fai", - "original_name": "Cheung Siu Fai", - "popularity": 0.6, - "profile_path": null, - "cast_id": 34, - "character": "", - "credit_id": "642fe90e9a643506f1afb11f", - "order": 16 - }, - { - "adult": false, - "gender": 0, - "id": 3998593, - "known_for_department": "Acting", - "name": "Cya Liu", - "original_name": "Cya Liu", - "popularity": 0.6, - "profile_path": null, - "cast_id": 35, - "character": "", - "credit_id": "642fe92531032500bd55bed7", - "order": 17 - }, - { - "adult": false, - "gender": 2, - "id": 1113443, - "known_for_department": "Acting", - "name": "Kenji Tanigaki", - "original_name": "Kenji Tanigaki", - "popularity": 3.134, - "profile_path": "/4WKEFXTK233yvrRvjA6TLIQiCn0.jpg", - "cast_id": 37, - "character": "", - "credit_id": "642fe970e92d83011306e9c7", - "order": 18 - }, - { - "adult": false, - "gender": 0, - "id": 3183831, - "known_for_department": "Acting", - "name": "Hua Yan", - "original_name": "Hua Yan", - "popularity": 0.6, - "profile_path": null, - "cast_id": 38, - "character": "Bandit", - "credit_id": "642fe9bae92d8300b6e41abd", - "order": 19 - } - ], - "crew": [ - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "credit_id": "639572d2a1a9ba00a0fef209", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 1341, - "known_for_department": "Acting", - "name": "Donnie Yen", - "original_name": "Donnie Yen", - "popularity": 32.998, - "profile_path": "/hTlhrrZMj8hZVvD17j4KyAFWBHc.jpg", - "credit_id": "63980c9679b3d400a0bc13f1", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 2, - "id": 64430, - "known_for_department": "Camera", - "name": "Chi Ying Chan", - "original_name": "Chi Ying Chan", - "popularity": 1.204, - "profile_path": "/yDChYg2NSVBYAmGdoyTDznaIfSv.jpg", - "credit_id": "63981028f5c82400b783039a", - "department": "Camera", - "job": "Director of Photography" - }, - { - "adult": false, - "gender": 2, - "id": 548474, - "known_for_department": "Writing", - "name": "Wong Jing", - "original_name": "Wong Jing", - "popularity": 4.649, - "profile_path": "/gMmaDRst3OwnY1wClKt541AmslD.jpg", - "credit_id": "63980c892cefc20084b6093a", - "department": "Production", - "job": "Producer" - }, - { - "adult": false, - "gender": 0, - "id": 551565, - "known_for_department": "Art", - "name": "Lau Sai-Wan", - "original_name": "Lau Sai-Wan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "639810a5a1a9ba009430b5f2", - "department": "Art", - "job": "Art Direction" - }, - { - "adult": false, - "gender": 1, - "id": 1006504, - "known_for_department": "Writing", - "name": "Chen Li", - "original_name": "Chen Li", - "popularity": 1.183, - "profile_path": "/uIkAFpDNsAL5sYmlartPNoV2BWn.jpg", - "credit_id": "64288650c5840d00d58e3c34", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 2, - "id": 1113443, - "known_for_department": "Acting", - "name": "Kenji Tanigaki", - "original_name": "Kenji Tanigaki", - "popularity": 3.134, - "profile_path": "/4WKEFXTK233yvrRvjA6TLIQiCn0.jpg", - "credit_id": "62b0cfb19c24fc0061b28020", - "department": "Directing", - "job": "Action Director" - }, - { - "adult": false, - "gender": 2, - "id": 1415282, - "known_for_department": "Directing", - "name": "Kam Ka-Wai", - "original_name": "Kam Ka-Wai", - "popularity": 1.821, - "profile_path": "/gsPOd7NYzugZJwnEI5DokM6plQC.jpg", - "credit_id": "64288624c0442901f0024683", - "department": "Directing", - "job": "Director" - }, - { - "adult": false, - "gender": 2, - "id": 2095747, - "known_for_department": "Acting", - "name": "Andrew Yan Hua", - "original_name": "Andrew Yan Hua", - "popularity": 1.052, - "profile_path": null, - "credit_id": "6398107bd05a0300ae5105b3", - "department": "Directing", - "job": "Action Director" - }, - { - "adult": false, - "gender": 2, - "id": 2195223, - "known_for_department": "Directing", - "name": "Leping Shen", - "original_name": "Leping Shen", - "popularity": 0.6, - "profile_path": "/ocdkTboTAdk6BkJKO2Wrq4yLoto.jpg", - "credit_id": "6428866a960cde0103a4b5be", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 2552279, - "known_for_department": "Directing", - "name": "Wei Zhu", - "original_name": "Wei Zhu", - "popularity": 0.98, - "profile_path": "/1hcEJ4rXam8i74RjTjfn6JKcSIo.jpg", - "credit_id": "642886880f3655011078cc3e", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3113929, - "known_for_department": "Production", - "name": "Zhu Weijie", - "original_name": "Zhu Weijie", - "popularity": 0.6, - "profile_path": null, - "credit_id": "63980d8ed05a0300ae5103a0", - "department": "Production", - "job": "Executive Producer" - }, - { - "adult": false, - "gender": 0, - "id": 3391253, - "known_for_department": "Directing", - "name": "Sheng Lingzhi", - "original_name": "Sheng Lingzhi", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6428865e01b1ca0097fd97c6", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3989726, - "known_for_department": "Writing", - "name": "He Ben", - "original_name": "He Ben", - "popularity": 0.668, - "profile_path": null, - "credit_id": "64288644c04429026b13431a", - "department": "Writing", - "job": "Writer" - }, - { - "adult": false, - "gender": 0, - "id": 3989729, - "known_for_department": "Writing", - "name": "Xu Yifan", - "original_name": "Xu Yifan", - "popularity": 0.6, - "profile_path": null, - "credit_id": "6428867a960cde00e0bcdb7d", - "department": "Writing", - "job": "Writer" - } - ] - }, - "videos": { - "results": [ - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Official US Trailer", - "key": "aHP_pyGtFIk", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-03-23T17:09:04.000Z", - "id": "641e49dcc613ce01031f8b85" - }, - { - "iso_639_1": "en", - "iso_3166_1": "US", - "name": "Main Trailer", - "key": "es5NAYPdcdI", - "site": "YouTube", - "size": 1080, - "type": "Trailer", - "official": true, - "published_at": "2023-01-12T10:00:30.000Z", - "id": "640a298154f6eb00993d3ebf" - } - ] - }, - "images": { - "backdrops": [ - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/skY1yDFcLF4h6CYDxndr5jHJNof.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/zS3ngMx0IJGzSUlAJ5u40utdCFK.jpg", - "vote_average": 5.172, - "vote_count": 1, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 1080, - "iso_639_1": null, - "file_path": "/oREkJ5uPIryJz0zWMASkGVLzeIc.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1920 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "en", - "file_path": "/qAL0fwjZCQ41TwybgERAAUp4kWA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": null, - "file_path": "/bBERGgCqgUPzriFxsVrXccINprn.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - }, - { - "aspect_ratio": 1.778, - "height": 2160, - "iso_639_1": "fr", - "file_path": "/v4E3Gb7QikastXcvKzvn519bM1m.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 3840 - } - ], - "logos": [ - { - "aspect_ratio": 4.046, - "height": 194, - "iso_639_1": "en", - "file_path": "/pqu3S5zlYRt9oPXmC4OI1r4dml5.png", - "vote_average": 5.312, - "vote_count": 1, - "width": 785 - }, - { - "aspect_ratio": 1.733, - "height": 288, - "iso_639_1": "en", - "file_path": "/jWexdriLJE0kFXG4Nct7C0tSnfJ.png", - "vote_average": 5.106, - "vote_count": 2, - "width": 499 - }, - { - "aspect_ratio": 1.691, - "height": 615, - "iso_639_1": "zh", - "file_path": "/slL3b5hNslfrjdM4qlXn3XhJcak.png", - "vote_average": 0, - "vote_count": 0, - "width": 1040 - }, - { - "aspect_ratio": 1.878, - "height": 147, - "iso_639_1": "zh", - "file_path": "/cd24lYjAb7dQRS7l4UrIs9D81go.png", - "vote_average": 0, - "vote_count": 0, - "width": 276 - }, - { - "aspect_ratio": 2.555, - "height": 1286, - "iso_639_1": "fr", - "file_path": "/4heIx9YFADRbnfkSzlFS6LVGTfT.png", - "vote_average": 0, - "vote_count": 0, - "width": 3286 - }, - { - "aspect_ratio": 2.497, - "height": 1273, - "iso_639_1": "fr", - "file_path": "/fn2o38gQPPqqmlH2qLyk4wP9GJT.png", - "vote_average": 0, - "vote_count": 0, - "width": 3179 - } - ], - "posters": [ - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/vvWyOCmBAND2p9UwaXZdALIDd2W.jpg", - "vote_average": 5.384, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.672, - "height": 2048, - "iso_639_1": "en", - "file_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "vote_average": 5.318, - "vote_count": 3, - "width": 1376 - }, - { - "aspect_ratio": 0.71, - "height": 1600, - "iso_639_1": "cn", - "file_path": "/vksLBSmHahKD9F30vIrm0S7JsSO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1136 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "zh", - "file_path": "/zr28ZaTpZeB7ACFVIoa4YuxFHgh.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2340, - "iso_639_1": "zh", - "file_path": "/k20PICIsiYMkD425UASSXs12M3.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1560 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "cn", - "file_path": "/rafCyitNRMQUHDIVh3abWZRWofO.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "de", - "file_path": "/b4A9L61eJfLL2eWPjsfwhDuzDsP.jpg", - "vote_average": 5.312, - "vote_count": 1, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "de", - "file_path": "/lEWeNdbPuJIUON6qUwwvRcYNgSU.jpg", - "vote_average": 5.246, - "vote_count": 2, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/qGhdGdocth1csUlEnPEmYDfEmwY.jpg", - "vote_average": 5.238, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "de", - "file_path": "/zFRCKPsJxuQqdtysUD7UaySnxKC.jpg", - "vote_average": 5.106, - "vote_count": 2, - "width": 1067 - }, - { - "aspect_ratio": 0.705, - "height": 1064, - "iso_639_1": "cn", - "file_path": "/vPRZUtW2tQZ0JzwqUcS739qDfOv.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 750 - }, - { - "aspect_ratio": 0.667, - "height": 2815, - "iso_639_1": "ko", - "file_path": "/rl6lMKv6XRPPOgMTcTmZWSsEsLH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1877 - }, - { - "aspect_ratio": 0.666, - "height": 2067, - "iso_639_1": "zh", - "file_path": "/dvlaQWBoZYmgHrG9r4V5DWn7e4N.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1377 - }, - { - "aspect_ratio": 0.705, - "height": 1532, - "iso_639_1": "zh", - "file_path": "/vNpAREC0oLWUx1F7NWSdGO89Qaf.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1080 - }, - { - "aspect_ratio": 0.667, - "height": 1711, - "iso_639_1": "ko", - "file_path": "/fmcRd957yQnlyEFltODkScqldKr.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1141 - }, - { - "aspect_ratio": 0.672, - "height": 2048, - "iso_639_1": "fr", - "file_path": "/1d4Iru6pLYESE1DsE8BVxK5OwRm.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1376 - }, - { - "aspect_ratio": 0.667, - "height": 2400, - "iso_639_1": "zh", - "file_path": "/lI3gD04BXUnB9ZhPmceeAVmnwHp.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1600 - }, - { - "aspect_ratio": 0.667, - "height": 1600, - "iso_639_1": "en", - "file_path": "/2vA3CqwZ01LUsEaYRz2ZY6Om9xi.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1067 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/uSmqyGyrjP1FF5UpxryUsSdQ4w0.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7JzNqNnisJnKH69mYuXNedznAAH.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/o6229QNb9FHwWBCemZxM8mCBDgV.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "en", - "file_path": "/7UyeEpMQXp5zlzSVHif8ZWDE2tA.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.666, - "height": 1367, - "iso_639_1": "en", - "file_path": "/xoznyg9SNXjHPwT9kMMrPr6vW34.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 911 - }, - { - "aspect_ratio": 0.667, - "height": 2100, - "iso_639_1": "en", - "file_path": "/aS3mnTkt6cnPcndb0l3F0J7GTDK.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1400 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "tr", - "file_path": "/zP9mNbn55fNGdbHOAqzMt07aN4s.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/tObrbSUlTGurumll1SaIeVf14TT.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 1500, - "iso_639_1": "fr", - "file_path": "/rvy5WHZMY8YEaCmJjNvD9DW73AR.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 1000 - }, - { - "aspect_ratio": 0.667, - "height": 3000, - "iso_639_1": "fr", - "file_path": "/hCsXU4l8NdhmQTaLknzg9em73tF.jpg", - "vote_average": 0, - "vote_count": 0, - "width": 2000 - } - ] - } - } -} diff --git a/examples/view-transitions/src/layouts/Layout.astro b/examples/view-transitions/src/layouts/Layout.astro deleted file mode 100644 index 39a73bca0981..000000000000 --- a/examples/view-transitions/src/layouts/Layout.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -import '../styles/styles.css'; -import { ViewTransitions } from 'astro:transitions'; -import Footer from '../components/Footer.astro'; -import Nav from '../components/Nav.astro'; - -export interface Props { - title: string; -} - -const { title } = Astro.props as Props; ---- - - - - - - - - - - {title} - - - -
-
- - diff --git a/examples/view-transitions/src/pages/index.astro b/examples/view-transitions/src/pages/index.astro deleted file mode 100644 index 3d2485948530..000000000000 --- a/examples/view-transitions/src/pages/index.astro +++ /dev/null @@ -1,8 +0,0 @@ ---- -import Layout from '../layouts/Layout.astro'; -import MovieList from '../components/MovieList.astro'; ---- - - - - diff --git a/examples/view-transitions/src/pages/movies/[id].astro b/examples/view-transitions/src/pages/movies/[id].astro deleted file mode 100644 index 9b7326f4e2bf..000000000000 --- a/examples/view-transitions/src/pages/movies/[id].astro +++ /dev/null @@ -1,12 +0,0 @@ ---- -import Layout from '../../layouts/Layout.astro'; -import MovieDetails from '../../components/MovieDetails.astro'; -import { getDataEntryById } from 'astro:content'; - -const result = await getDataEntryById('movies', Astro.params.id as any); -const data = result.data.data; ---- - - - - diff --git a/examples/view-transitions/src/popular-movies.json b/examples/view-transitions/src/popular-movies.json deleted file mode 100644 index 32378a17f3a3..000000000000 --- a/examples/view-transitions/src/popular-movies.json +++ /dev/null @@ -1,327 +0,0 @@ -{ - "page": 1, - "results": [ - { - "adult": false, - "backdrop_path": "/iIvQnZyzgx9TkbrOgcXx0p7aLiq.jpg", - "genre_ids": [27, 53], - "id": 1008042, - "original_language": "en", - "original_title": "Talk to Me", - "overview": "When a group of friends discover how to conjure spirits using an embalmed hand, they become hooked on the new thrill, until one of them goes too far and unleashes terrifying supernatural forces.", - "popularity": 2292.177, - "poster_path": "/kdPMUMJzyYAc4roD52qavX0nLIC.jpg", - "release_date": "2023-07-26", - "title": "Talk to Me", - "video": false, - "vote_average": 7.3, - "vote_count": 686 - }, - { - "adult": false, - "backdrop_path": "/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg", - "genre_ids": [35, 12, 14], - "id": 346698, - "original_language": "en", - "original_title": "Barbie", - "overview": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.", - "popularity": 1899.184, - "poster_path": "/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", - "release_date": "2023-07-19", - "title": "Barbie", - "video": false, - "vote_average": 7.3, - "vote_count": 4757 - }, - { - "adult": false, - "backdrop_path": "/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg", - "genre_ids": [28, 80, 53], - "id": 385687, - "original_language": "en", - "original_title": "Fast X", - "overview": "Over many missions and against impossible odds, Dom Toretto and his family have outsmarted, out-nerved and outdriven every foe in their path. Now, they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge, and who is determined to shatter this family and destroy everything—and everyone—that Dom loves, forever.", - "popularity": 1973.052, - "poster_path": "/fiVW06jE7z9YnO4trhaMEdclSiC.jpg", - "release_date": "2023-05-17", - "title": "Fast X", - "video": false, - "vote_average": 7.3, - "vote_count": 3749 - }, - { - "adult": false, - "backdrop_path": "/8pjWz2lt29KyVGoq1mXYu6Br7dE.jpg", - "genre_ids": [28, 878, 27], - "id": 615656, - "original_language": "en", - "original_title": "Meg 2: The Trench", - "overview": "An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.", - "popularity": 1804.581, - "poster_path": "/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg", - "release_date": "2023-08-02", - "title": "Meg 2: The Trench", - "video": false, - "vote_average": 7, - "vote_count": 1823 - }, - { - "adult": false, - "backdrop_path": "/c6Splshb8lb2Q9OvUfhpqXl7uP0.jpg", - "genre_ids": [28, 53], - "id": 717930, - "original_language": "en", - "original_title": "Kandahar", - "overview": "After his mission is exposed, an undercover CIA operative stuck deep in hostile territory in Afghanistan must fight his way out, alongside his Afghan translator, to an extraction point in Kandahar, all whilst avoiding elite enemy forces and foreign spies tasked with hunting them down.", - "popularity": 1206.966, - "poster_path": "/lCanGgsqF4xD2WA5NF8PWeT3IXd.jpg", - "release_date": "2023-05-25", - "title": "Kandahar", - "video": false, - "vote_average": 6.8, - "vote_count": 507 - }, - { - "adult": false, - "backdrop_path": "/53z2fXEKfnNg2uSOPss2unPBGX1.jpg", - "genre_ids": [27, 9648, 53], - "id": 968051, - "original_language": "en", - "original_title": "The Nun II", - "overview": "In 1956 France, a priest is violently murdered, and Sister Irene begins to investigate. She once again comes face-to-face with a powerful evil.", - "popularity": 1296.77, - "poster_path": "/5gzzkR7y3hnY8AD1wXjCnVlHba5.jpg", - "release_date": "2023-09-06", - "title": "The Nun II", - "video": false, - "vote_average": 6.7, - "vote_count": 229 - }, - { - "adult": false, - "backdrop_path": "/4fLZUr1e65hKPPVw0R3PmKFKxj1.jpg", - "genre_ids": [16, 35, 10751, 14, 10749], - "id": 976573, - "original_language": "en", - "original_title": "Elemental", - "overview": "In a city where fire, water, land and air residents live together, a fiery young woman and a go-with-the-flow guy will discover something elemental: how much they have in common.", - "popularity": 953.333, - "poster_path": "/4Y1WNkd88JXmGfhtWR7dmDAo1T2.jpg", - "release_date": "2023-06-14", - "title": "Elemental", - "video": false, - "vote_average": 7.8, - "vote_count": 2182 - }, - { - "adult": false, - "backdrop_path": "/H6j5smdpRqP9a8UnhWp6zfl0SC.jpg", - "genre_ids": [28, 878, 12], - "id": 565770, - "original_language": "en", - "original_title": "Blue Beetle", - "overview": "Recent college grad Jaime Reyes returns home full of aspirations for his future, only to find that home is not quite as he left it. As he searches to find his purpose in the world, fate intervenes when Jaime unexpectedly finds himself in possession of an ancient relic of alien biotechnology: the Scarab.", - "popularity": 1007.105, - "poster_path": "/vNfL4DYnonltukBrrgMmw94zMYL.jpg", - "release_date": "2023-08-16", - "title": "Blue Beetle", - "video": false, - "vote_average": 7.2, - "vote_count": 541 - }, - { - "adult": false, - "backdrop_path": "/9m161GawbY3cWxe6txd1NOHTjd0.jpg", - "genre_ids": [878, 12, 28, 14], - "id": 335977, - "original_language": "en", - "original_title": "Indiana Jones and the Dial of Destiny", - "overview": "Finding himself in a new era, and approaching retirement, Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival, Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.", - "popularity": 804.982, - "poster_path": "/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg", - "release_date": "2023-06-28", - "title": "Indiana Jones and the Dial of Destiny", - "video": false, - "vote_average": 6.7, - "vote_count": 1650 - }, - { - "adult": false, - "backdrop_path": "/jkKVLzLWjSvTnc84VzeljhSy6j8.jpg", - "genre_ids": [10749, 18], - "id": 820525, - "original_language": "en", - "original_title": "After Everything", - "overview": "Besieged by writer’s block and the crushing breakup with Tessa, Hardin travels to Portugal in search of a woman he wronged in the past – and to find himself. Hoping to win back Tessa, he realizes he needs to change his ways before he can make the ultimate commitment.", - "popularity": 650.272, - "poster_path": "/gZLGCibvFY4zmt8sWUZcbBTHRtk.jpg", - "release_date": "2023-09-13", - "title": "After Everything", - "video": false, - "vote_average": 6.4, - "vote_count": 27 - }, - { - "adult": false, - "backdrop_path": "/waBWlJlMpyFb7STkFHfFvJKgwww.jpg", - "genre_ids": [28, 18], - "id": 678512, - "original_language": "en", - "original_title": "Sound of Freedom", - "overview": "The story of Tim Ballard, a former US government agent, who quits his job in order to devote his life to rescuing children from global sex traffickers.", - "popularity": 668.456, - "poster_path": "/kSf9svfL2WrKeuK8W08xeR5lTn8.jpg", - "release_date": "2023-07-03", - "title": "Sound of Freedom", - "video": false, - "vote_average": 8, - "vote_count": 458 - }, - { - "adult": false, - "backdrop_path": "/iiXliCeykkzmJ0Eg9RYJ7F2CWSz.jpg", - "genre_ids": [28, 9648, 53, 80], - "id": 762430, - "original_language": "en", - "original_title": "Retribution", - "overview": "When a mysterious caller puts a bomb under his car seat, Matt Turner begins a high-speed chase across the city to complete a specific series of tasks. With his kids trapped in the back seat and a bomb that will explode if they get out of the car, a normal commute becomes a twisted game of life or death as Matt follows the stranger's increasingly dangerous instructions in a race against time to save his family.", - "popularity": 702.724, - "poster_path": "/oUmmY7QWWn7OhKlcPOnirHJpP1F.jpg", - "release_date": "2023-08-23", - "title": "Retribution", - "video": false, - "vote_average": 6.6, - "vote_count": 130 - }, - { - "adult": false, - "backdrop_path": "/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg", - "genre_ids": [28, 12, 878], - "id": 667538, - "original_language": "en", - "original_title": "Transformers: Rise of the Beasts", - "overview": "When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.", - "popularity": 650.789, - "poster_path": "/gPbM0MK8CP8A174rmUwGsADNYKD.jpg", - "release_date": "2023-06-06", - "title": "Transformers: Rise of the Beasts", - "video": false, - "vote_average": 7.5, - "vote_count": 3189 - }, - { - "adult": false, - "backdrop_path": "/w2nFc2Rsm93PDkvjY4LTn17ePO0.jpg", - "genre_ids": [16, 35, 28], - "id": 614930, - "original_language": "en", - "original_title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "overview": "After years of being sheltered from the human world, the Turtle brothers set out to win the hearts of New Yorkers and be accepted as normal teenagers through heroic acts. Their new friend April O'Neil helps them take on a mysterious crime syndicate, but they soon get in over their heads when an army of mutants is unleashed upon them.", - "popularity": 644.874, - "poster_path": "/oupWWrVuCgNEa5GcjdkpjCYbx2X.jpg", - "release_date": "2023-07-31", - "title": "Teenage Mutant Ninja Turtles: Mutant Mayhem", - "video": false, - "vote_average": 7.3, - "vote_count": 541 - }, - { - "adult": false, - "backdrop_path": "/yF1eOkaYvwiORauRCPWznV9xVvi.jpg", - "genre_ids": [28, 12, 878], - "id": 298618, - "original_language": "en", - "original_title": "The Flash", - "overview": "When his attempt to save his family inadvertently alters the future, Barry Allen becomes trapped in a reality in which General Zod has returned and there are no Super Heroes to turn to. In order to save the world that he is in and return to the future that he knows, Barry's only hope is to race for his life. But will making the ultimate sacrifice be enough to reset the universe?", - "popularity": 561.181, - "poster_path": "/rktDFPbfHfUbArZ6OOOKsXcv0Bm.jpg", - "release_date": "2023-06-13", - "title": "The Flash", - "video": false, - "vote_average": 6.9, - "vote_count": 2873 - }, - { - "adult": false, - "backdrop_path": "/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg", - "genre_ids": [16, 28, 12], - "id": 569094, - "original_language": "en", - "original_title": "Spider-Man: Across the Spider-Verse", - "overview": "After reuniting with Gwen Stacy, Brooklyn’s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse’s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.", - "popularity": 842.076, - "poster_path": "/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg", - "release_date": "2023-05-31", - "title": "Spider-Man: Across the Spider-Verse", - "video": false, - "vote_average": 8.5, - "vote_count": 4261 - }, - { - "adult": false, - "backdrop_path": "/9fOfsVHZHig6MHPHczv0zMY6cKc.jpg", - "genre_ids": [28, 53, 10752, 18], - "id": 1880, - "original_language": "en", - "original_title": "Red Dawn", - "overview": "It is the dawn of World War III. In mid-western America, a group of teenagers band together to defend their town—and their country—from invading Soviet forces.", - "popularity": 579.024, - "poster_path": "/a2GkHcioc2QEFJbQk1NTB85u3vD.jpg", - "release_date": "1984-08-10", - "title": "Red Dawn", - "video": false, - "vote_average": 6.3, - "vote_count": 670 - }, - { - "adult": false, - "backdrop_path": "/3mYCjwll5RG342Dz1f8HcnT8tV.jpg", - "genre_ids": [28, 80], - "id": 606403, - "original_language": "ko", - "original_title": "특송", - "overview": "Eun-ha, who is a normal junkyard employee, secretly works as a delivery clerk that deals with unusual delivery requests. One day, Eun-ha heads to Seoul to pick up a client who is involved in a gambling crime that wants to flee overseas. However, Eun-ha meets the client's young son at the pick-up point, instead of the client himself. Kyeong-pil, a current police officer who is actually masterminding the whole gambling crime, chases after the missing child who has the security key to the bank account that holds 30 million dollars.", - "popularity": 525.582, - "poster_path": "/fYT7JB4sU1XXeawEXOdQ3TtkFB2.jpg", - "release_date": "2022-01-12", - "title": "Special Delivery", - "video": false, - "vote_average": 6.9, - "vote_count": 105 - }, - { - "adult": false, - "backdrop_path": "/rV56FkcHkzHJcBOOqoCeSDnoBff.jpg", - "genre_ids": [28, 18], - "id": 990140, - "original_language": "cn", - "original_title": "天龍八部之喬峰傳", - "overview": "Qiao Feng is the respected leader of a roving band of martial artists. After he is wrongfully accused of murder and subsequently exiled, Qiao Feng goes on the run in search of answers about his own mysterious origin story—and the unknown enemies working to destroy him from the shadows.", - "popularity": 522.83, - "poster_path": "/jGKCpt3zzbGZbgoza6HCvecqElM.jpg", - "release_date": "2023-01-16", - "title": "Sakra", - "video": false, - "vote_average": 6.6, - "vote_count": 86 - }, - { - "adult": false, - "backdrop_path": "/4wVFtesa5YEWuAUHRcxoCN1Y1uN.jpg", - "genre_ids": [28, 53], - "id": 1085218, - "original_language": "da", - "original_title": "Underverden 2", - "overview": "Seven years ago, Zaid went to war against the Copenhagen underworld to avenge his dead brother. His identity as a respected doctor of cardiology and life as a family man is but a fading dream, and in prison Zaid suffers the loss of his son Noah, whom he barely knows. When a police agent approaches Zaid and offers him a deal to be released in exchange for infiltrating the Copenhagen underworld, he sees his chance to reclaim the remnants of the family life he left behind. But everything has a price, and Zaid realizes that he has now seriously endangered his son's life. After all, once you become part of the underworld, is there any way out?", - "popularity": 524.476, - "poster_path": "/c8B4DsVcFVDLVmbpHMHU3RjLNAV.jpg", - "release_date": "2023-04-13", - "title": "Darkland: The Return", - "video": false, - "vote_average": 6.2, - "vote_count": 59 - } - ], - "total_pages": 40154, - "total_results": 803062 -} diff --git a/examples/view-transitions/src/scripts/spa-navigation.js b/examples/view-transitions/src/scripts/spa-navigation.js deleted file mode 100644 index bb96bce7b0c9..000000000000 --- a/examples/view-transitions/src/scripts/spa-navigation.js +++ /dev/null @@ -1,254 +0,0 @@ -import { - getNavigationType, - getPathId, - isBackNavigation, - shouldNotIntercept, - updateTheDOMSomehow, - useTvFragment, -} from './utils'; - -// View Transitions support cross-document navigations. -// Should compare performance. -// https://github.com/WICG/view-transitions/blob/main/explainer.md#cross-document-same-origin-transitions -// https://github.com/WICG/view-transitions/blob/main/explainer.md#script-events -function shouldDisableSpa() { - return false; -} - -navigation.addEventListener('navigate', (navigateEvent) => { - if (shouldDisableSpa()) return; - if (shouldNotIntercept(navigateEvent)) return; - - const toUrl = new URL(navigateEvent.destination.url); - const toPath = toUrl.pathname; - const fromPath = location.pathname; - const navigationType = getNavigationType(fromPath, toPath); - - if (location.origin !== toUrl.origin) return; - - switch (navigationType) { - case 'home-to-movie': - case 'tv-to-show': - handleHomeToMovieTransition(navigateEvent, getPathId(toPath)); - break; - case 'movie-to-home': - case 'show-to-tv': - handleMovieToHomeTransition(navigateEvent, getPathId(fromPath)); - break; - case 'movie-to-person': - handleMovieToPersonTransition(navigateEvent, getPathId(fromPath), getPathId(toPath)); - break; - case 'person-to-movie': - case 'person-to-show': - handlePersonToMovieTransition(navigateEvent, getPathId(fromPath), getPathId(toPath)); - break; - default: - return; - } -}); - -// TODO: https://developer.chrome.com/docs/web-platform/view-transitions/#transitions-as-an-enhancement -function handleHomeToMovieTransition(navigateEvent, movieId) { - navigateEvent.intercept({ - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvDetails' - : '/fragments/MovieDetails'; - const response = await fetch(`${fragmentUrl}/${movieId}`); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - const thumbnail = document.getElementById(`movie-poster-${movieId}`); - if (thumbnail) { - thumbnail.style.viewTransitionName = 'movie-poster'; - } - - const transition = document.startViewTransition(() => { - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - document.getElementById('container').scrollTop = 0; - updateTheDOMSomehow(data); - }); - - await transition.finished; - }, - }); -} - -function handleMovieToHomeTransition(navigateEvent, movieId) { - navigateEvent.intercept({ - scroll: 'manual', - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvList' - : '/fragments/MovieList'; - const response = await fetch(fragmentUrl); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - const tempHomePage = document.createElement('div'); - const moviePoster = document.getElementById(`movie-poster`); - let thumbnail; - - // If the movie poster is not in the home page, removes the transition style so that - // the poster doesn't stay on the page while transitioning - tempHomePage.innerHTML = data; - if (!tempHomePage.querySelector(`#movie-poster-${movieId}`)) { - moviePoster?.classList.remove('movie-poster'); - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - thumbnail = document.getElementById(`movie-poster-${movieId}`); - if (thumbnail) { - thumbnail.scrollIntoViewIfNeeded(); - thumbnail.style.viewTransitionName = 'movie-poster'; - } - }); - - await transition.finished; - - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - }, - }); -} - -function handleMovieToPersonTransition(navigateEvent, movieId, personId) { - // TODO: https://developer.chrome.com/docs/web-platform/view-transitions/#not-a-polyfill - // ...has example of `back-transition` class applied to document - const isBack = isBackNavigation(navigateEvent); - - navigateEvent.intercept({ - async handler() { - const response = await fetch('/fragments/PersonDetails/' + personId); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - let personThumbnail; - let moviePoster; - let movieThumbnail; - - if (!isBack) { - // We're transitioning the person photo; we need to remove the transition of the poster - // so that it doesn't stay on the page while transitioning - moviePoster = document.getElementById(`movie-poster`); - if (moviePoster) { - moviePoster.classList.remove('movie-poster'); - } - - personThumbnail = document.getElementById(`person-photo-${personId}`); - if (personThumbnail) { - personThumbnail.style.viewTransitionName = 'person-photo'; - } - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - if (personThumbnail) { - personThumbnail.style.viewTransitionName = ''; - } - - if (isBack) { - // If we're coming back to the person page, we're transitioning - // into the movie poster thumbnail, so we need to add the tag to it - movieThumbnail = document.getElementById(`movie-poster-${movieId}`); - if (movieThumbnail) { - movieThumbnail.scrollIntoViewIfNeeded(); - movieThumbnail.style.viewTransitionName = 'movie-poster'; - } - } - - document.getElementById('container').scrollTop = 0; - }); - - await transition.finished; - - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = ''; - } - }, - }); -} - -function handlePersonToMovieTransition(navigateEvent, personId, movieId) { - const isBack = isBackNavigation(navigateEvent); - - navigateEvent.intercept({ - scroll: 'manual', - async handler() { - const fragmentUrl = useTvFragment(navigateEvent) - ? '/fragments/TvDetails' - : '/fragments/MovieDetails'; - const response = await fetch(`${fragmentUrl}/${movieId}`); - const data = await response.text(); - - if (!document.startViewTransition) { - updateTheDOMSomehow(data); - return; - } - - let thumbnail; - let moviePoster; - let movieThumbnail; - - if (!isBack) { - movieThumbnail = document.getElementById(`movie-poster-${movieId}`); - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = 'movie-poster'; - } - } - - const transition = document.startViewTransition(() => { - updateTheDOMSomehow(data); - - if (isBack) { - moviePoster = document.getElementById(`movie-poster`); - if (moviePoster) { - moviePoster.classList.remove('movie-poster'); - } - - if (personId) { - thumbnail = document.getElementById(`person-photo-${personId}`); - if (thumbnail) { - thumbnail.scrollIntoViewIfNeeded(); - thumbnail.style.viewTransitionName = 'person-photo'; - } - } - } else { - document.getElementById('container').scrollTop = 0; - - if (movieThumbnail) { - movieThumbnail.style.viewTransitionName = ''; - } - } - }); - - await transition.finished; - - if (thumbnail) { - thumbnail.style.viewTransitionName = ''; - } - - if (moviePoster) { - moviePoster.classList.add('movie-poster'); - } - }, - }); -} diff --git a/examples/view-transitions/src/scripts/utils.js b/examples/view-transitions/src/scripts/utils.js deleted file mode 100644 index 5b7f78535477..000000000000 --- a/examples/view-transitions/src/scripts/utils.js +++ /dev/null @@ -1,76 +0,0 @@ -export function getNavigationType(fromPath, toPath) { - if (fromPath.startsWith('/movies') && toPath === '/') { - return 'movie-to-home'; - } - - if (fromPath === '/tv' && toPath.startsWith('/tv/')) { - return 'tv-to-show'; - } - - if (fromPath === '/' && toPath.startsWith('/movies')) { - return 'home-to-movie'; - } - - if (fromPath.startsWith('/tv/') && toPath === '/tv') { - return 'show-to-tv'; - } - - if ( - (fromPath.startsWith('/movies') || fromPath.startsWith('/tv')) && - toPath.startsWith('/people') - ) { - return 'movie-to-person'; - } - - if ( - fromPath.startsWith('/people') && - (toPath.startsWith('/movies') || toPath.startsWith('/tv/')) - ) { - return 'person-to-movie'; - } - - return 'other'; -} - -export function isBackNavigation(navigateEvent) { - if (navigateEvent.navigationType === 'push' || navigateEvent.navigationType === 'replace') { - return false; - } - if ( - navigateEvent.destination.index !== -1 && - navigateEvent.destination.index < navigation.currentEntry.index - ) { - return true; - } - return false; -} - -export function shouldNotIntercept(navigationEvent) { - return ( - navigationEvent.canIntercept === false || - // If this is just a hashChange, - // just let the browser handle scrolling to the content. - navigationEvent.hashChange || - // If this is a download, - // let the browser perform the download. - navigationEvent.downloadRequest || - // If this is a form submission, - // let that go to the server. - navigationEvent.formData - ); -} - -export function useTvFragment(navigateEvent) { - const toUrl = new URL(navigateEvent.destination.url); - const toPath = toUrl.pathname; - - return toPath.startsWith('/tv'); -} - -export function getPathId(path) { - return path.split('/')[2]; -} - -export function updateTheDOMSomehow(data) { - document.getElementById('content').innerHTML = data; -} diff --git a/examples/view-transitions/src/styles/styles.css b/examples/view-transitions/src/styles/styles.css deleted file mode 100644 index aab69ac147ef..000000000000 --- a/examples/view-transitions/src/styles/styles.css +++ /dev/null @@ -1,63 +0,0 @@ -@keyframes fade-in { - from { - opacity: 0; - } -} - -@keyframes fade-out { - to { - opacity: 0; - } -} - -@keyframes slide-from-right { - from { - transform: translateX(30px); - } -} - -@keyframes slide-to-left { - to { - transform: translateX(-30px); - } -} - -::view-transition-old(root) { - animation: - 90ms cubic-bezier(0.4, 0, 1, 1) both fade-out, - 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-to-left; -} - -::view-transition-new(root) { - animation: - 210ms cubic-bezier(0, 0, 0.2, 1) 90ms both fade-in, - 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-from-right; -} - -::view-transition-old(movie-poster), -::view-transition-new(movie-poster) { - animation: none; - mix-blend-mode: normal; -} - -::view-transition-image-pair(movie-poster) { - isolation: none; -} - -.nav { - view-transition-name: main-header; - contain: paint; -} - -.movie-poster { - contain: paint; -} - -.person-photo { - view-transition-name: person-photo; - contain: paint; -} - -.thumbnail { - contain: paint; -} diff --git a/examples/view-transitions/tailwind.config.cjs b/examples/view-transitions/tailwind.config.cjs deleted file mode 100644 index 13e340af88f3..000000000000 --- a/examples/view-transitions/tailwind.config.cjs +++ /dev/null @@ -1,12 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - extend: { - width: { - 96: '24rem', - }, - }, - }, - plugins: [], -}; diff --git a/examples/view-transitions/tsconfig.json b/examples/view-transitions/tsconfig.json deleted file mode 100644 index d9bbfacf871a..000000000000 --- a/examples/view-transitions/tsconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "astro/tsconfigs/base", - "compilerOptions": { - "resolveJsonModule": true - } -} diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 885642eef5f4..74ab8917e869 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.11.3", - "astro": "^4.14.5" + "@astrojs/markdoc": "^0.11.5", + "astro": "^4.16.2" } } diff --git a/examples/with-markdown-plugins/.codesandbox/Dockerfile b/examples/with-markdown-plugins/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a121d..000000000000 --- a/examples/with-markdown-plugins/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/with-markdown-plugins/README.md b/examples/with-markdown-plugins/README.md deleted file mode 100644 index 91811541a7e8..000000000000 --- a/examples/with-markdown-plugins/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Astro Example: Markdown with Plugins - -```sh -npm create astro@latest -- --template with-markdown-plugins -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/with-markdown-plugins) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/with-markdown-plugins) -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/with-markdown-plugins/devcontainer.json) - -This example showcases Astro's [built-in Markdown support](https://docs.astro.build/en/guides/markdown-content/) with additional, user-provided plugins. diff --git a/examples/with-markdown-plugins/add-classes.mjs b/examples/with-markdown-plugins/add-classes.mjs deleted file mode 100644 index 39acabd52670..000000000000 --- a/examples/with-markdown-plugins/add-classes.mjs +++ /dev/null @@ -1,18 +0,0 @@ -import { selectAll } from 'hast-util-select'; - -export default (additions) => { - const adders = Object.entries(additions).map(adder); - return (node) => adders.forEach((a) => a(node)); -}; - -const adder = ([selector, className]) => { - const writer = write(className); - return (node) => selectAll(selector, node).forEach(writer); -}; - -const write = - (className) => - ({ properties }) => { - if (!properties.className) properties.className = className; - else properties.className += ` ${className}`; - }; diff --git a/examples/with-markdown-plugins/astro.config.mjs b/examples/with-markdown-plugins/astro.config.mjs deleted file mode 100644 index af2d96e75c89..000000000000 --- a/examples/with-markdown-plugins/astro.config.mjs +++ /dev/null @@ -1,16 +0,0 @@ -import { defineConfig } from 'astro/config'; -import addClasses from './add-classes.mjs'; - -// https://astro.build/config -export default defineConfig({ - // Enable Custom Markdown options, plugins, etc. - markdown: { - remarkPlugins: ['remark-code-titles'], - rehypePlugins: [ - 'rehype-slug', - ['rehype-autolink-headings', { behavior: 'prepend' }], - ['rehype-toc', { headings: ['h2', 'h3'] }], - [addClasses, { 'h1,h2,h3': 'title' }], - ], - }, -}); diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json deleted file mode 100644 index 8caac32494dd..000000000000 --- a/examples/with-markdown-plugins/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@example/with-markdown-plugins", - "type": "module", - "version": "0.0.2", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/markdown-remark": "^5.2.0", - "astro": "^4.14.5", - "hast-util-select": "^6.0.2", - "rehype-autolink-headings": "^7.1.0", - "rehype-slug": "^6.0.0", - "rehype-toc": "^3.0.2", - "remark-code-titles": "^0.1.2" - } -} diff --git a/examples/with-markdown-plugins/public/favicon.svg b/examples/with-markdown-plugins/public/favicon.svg deleted file mode 100644 index f157bd1c5e28..000000000000 --- a/examples/with-markdown-plugins/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/examples/with-markdown-plugins/src/env.d.ts b/examples/with-markdown-plugins/src/env.d.ts deleted file mode 100644 index e16c13c6952a..000000000000 --- a/examples/with-markdown-plugins/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/examples/with-markdown-plugins/src/layouts/main.astro b/examples/with-markdown-plugins/src/layouts/main.astro deleted file mode 100644 index 80e81fb42a27..000000000000 --- a/examples/with-markdown-plugins/src/layouts/main.astro +++ /dev/null @@ -1,34 +0,0 @@ ---- -import '../styles/global.css'; - -const { content } = Astro.props; ---- - - - - - - - {content.title} - - - -
-
- -
- -
- - diff --git a/examples/with-markdown-plugins/src/pages/index.md b/examples/with-markdown-plugins/src/pages/index.md deleted file mode 100644 index 75e184153cb9..000000000000 --- a/examples/with-markdown-plugins/src/pages/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: ../layouts/main.astro -title: Astro with Remark Plugins ---- - -# Heading 1 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -## Heading 2 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -### Heading 3 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -### Heading 3 - -Sint ullamco sint ut irure laborum occaecat anim minim tempor enim dolore reprehenderit Lorem. Sit qui nisi in quis ut consequat minim. Ad commodo officia nisi culpa proident duis culpa eu reprehenderit incididunt do fugiat proident tempor. Et velit dolor aliqua dolor ipsum. Sunt eiusmod amet enim ut. - -```jsx:file.jsx -import Router from 'next/router' - -function MyComponent() { - const [show, setShow] = useState(false) - - useEffect(() => { - console.log(2) - }, []) - - return <>... -} -``` diff --git a/examples/with-markdown-plugins/src/styles/global.css b/examples/with-markdown-plugins/src/styles/global.css deleted file mode 100644 index ced30f0a2488..000000000000 --- a/examples/with-markdown-plugins/src/styles/global.css +++ /dev/null @@ -1,53 +0,0 @@ -body { - font-family: system-ui; -} - -.content { - max-width: 640px; - margin: 40px auto; - padding: 0 20px; -} - -.title { - position: relative; -} -.title a { - position: absolute; - display: block; - height: 100%; - width: 100%; - color: inherit; -} - -.title a:before { - position: absolute; - right: 100%; - display: block; - content: '#'; - margin-right: 0.2em; - visibility: hidden; - opacity: 0.5; -} - -.title:hover a:before { - visibility: visible; -} - -.remark-code-title, -pre[class^='language-'] { - padding: 10px; - margin: 0; -} - -.remark-code-title { - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-radius: 4px 4px 0 0; - background: rgba(0, 0, 0, 0.08); - font-family: monospace; - font-weight: bold; -} - -pre[class^='language-'] { - background: rgba(0, 0, 0, 0.05); - border-radius: 0 0 4px 4px; -} diff --git a/examples/with-markdown-plugins/tsconfig.json b/examples/with-markdown-plugins/tsconfig.json deleted file mode 100644 index d78f81ec4e8e..000000000000 --- a/examples/with-markdown-plugins/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/with-markdown-shiki/.codesandbox/Dockerfile b/examples/with-markdown-shiki/.codesandbox/Dockerfile deleted file mode 100644 index c3b5c81a121d..000000000000 --- a/examples/with-markdown-shiki/.codesandbox/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM node:18-bullseye diff --git a/examples/with-markdown-shiki/README.md b/examples/with-markdown-shiki/README.md deleted file mode 100644 index 72251f6ba4bc..000000000000 --- a/examples/with-markdown-shiki/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# Astro Example: Markdown with Shiki - -```sh -npm create astro@latest -- --template with-markdown-shiki -``` - -[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/with-markdown-shiki) -[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/with-markdown-shiki) -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/with-markdown-shiki/devcontainer.json) - -This example showcases Astro's [built-in Markdown support](https://docs.astro.build/en/guides/markdown-content/). - -- `src/pages/index.md` is a treated as a page entrypoint and uses a `layout`. diff --git a/examples/with-markdown-shiki/astro.config.mjs b/examples/with-markdown-shiki/astro.config.mjs deleted file mode 100644 index a091e103c589..000000000000 --- a/examples/with-markdown-shiki/astro.config.mjs +++ /dev/null @@ -1,14 +0,0 @@ -import { defineConfig } from 'astro/config'; - -// https://astro.build/config -export default defineConfig({ - // Enable Custom Markdown options, plugins, etc. - markdown: { - syntaxHighlight: 'shiki', - shikiConfig: { - theme: 'dracula', - // Learn more about this configuration here: - // https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting - }, - }, -}); diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json deleted file mode 100644 index bfc90a35820e..000000000000 --- a/examples/with-markdown-shiki/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "@example/with-markdown-shiki", - "type": "module", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "^4.14.5" - } -} diff --git a/examples/with-markdown-shiki/public/favicon.svg b/examples/with-markdown-shiki/public/favicon.svg deleted file mode 100644 index f157bd1c5e28..000000000000 --- a/examples/with-markdown-shiki/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/examples/with-markdown-shiki/src/env.d.ts b/examples/with-markdown-shiki/src/env.d.ts deleted file mode 100644 index e16c13c6952a..000000000000 --- a/examples/with-markdown-shiki/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/examples/with-markdown-shiki/src/layouts/main.astro b/examples/with-markdown-shiki/src/layouts/main.astro deleted file mode 100644 index 7f5bc2ac21a7..000000000000 --- a/examples/with-markdown-shiki/src/layouts/main.astro +++ /dev/null @@ -1,17 +0,0 @@ ---- -import '../styles/global.css'; - -const { content } = Astro.props; ---- - - - - - - - {content.title} - - - - - diff --git a/examples/with-markdown-shiki/src/pages/index.md b/examples/with-markdown-shiki/src/pages/index.md deleted file mode 100644 index 89e58184f42b..000000000000 --- a/examples/with-markdown-shiki/src/pages/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: Shiki demo -layout: ../layouts/main.astro ---- - -# Shiki demo - -```js -var foo = 'bar'; - -function doSomething() { - return foo; -} -``` diff --git a/examples/with-markdown-shiki/src/styles/global.css b/examples/with-markdown-shiki/src/styles/global.css deleted file mode 100644 index e8b9d031421f..000000000000 --- a/examples/with-markdown-shiki/src/styles/global.css +++ /dev/null @@ -1,54 +0,0 @@ -pre, -code { - color: #d4d4d4; - font-size: 14px; - font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - line-height: 1.5; - direction: ltr; - white-space: pre; - text-align: left; - text-shadow: none; - word-break: normal; - word-spacing: normal; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -pre::selection, -code::selection { - text-shadow: none; - background: #b3d4fc; -} - -@media print { - pre, - code { - text-shadow: none; - } -} - -pre { - margin: 0.5rem 0 16px; - padding: 0.8rem 1rem 0.9rem; - overflow: auto; - background: #282a36; - border-radius: 4px; -} - -:not(pre) > code { - padding: 0.1em 0.3em; - color: #db4c69; - background: #f9f2f4; - border-radius: 0.3em; - white-space: pre-wrap; -} - -body { - max-width: 900px; - margin: auto; -} diff --git a/examples/with-markdown-shiki/tsconfig.json b/examples/with-markdown-shiki/tsconfig.json deleted file mode 100644 index d78f81ec4e8e..000000000000 --- a/examples/with-markdown-shiki/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "astro/tsconfigs/base" -} diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 3b9d13515620..79e8addd2f37 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^3.1.4", - "@astrojs/preact": "^3.5.1", - "astro": "^4.14.5", - "preact": "^10.23.2" + "@astrojs/mdx": "^3.1.8", + "@astrojs/preact": "^3.5.3", + "astro": "^4.16.2", + "preact": "^10.24.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 41438fdd6a2a..c4509ea6245f 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^3.5.1", + "@astrojs/preact": "^3.5.3", "@nanostores/preact": "^0.5.2", - "astro": "^4.14.5", - "nanostores": "^0.11.2", - "preact": "^10.23.2" + "astro": "^4.16.2", + "nanostores": "^0.11.3", + "preact": "^10.24.2" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 5021a17697f4..69dada7bd62e 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,13 +11,13 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^3.1.4", - "@astrojs/tailwind": "^5.1.0", + "@astrojs/mdx": "^3.1.8", + "@astrojs/tailwind": "^5.1.2", "@types/canvas-confetti": "^1.6.4", - "astro": "^4.14.5", + "astro": "^4.16.2", "autoprefixer": "^10.4.20", "canvas-confetti": "^1.9.3", - "postcss": "^8.4.41", - "tailwindcss": "^3.4.10" + "postcss": "^8.4.47", + "tailwindcss": "^3.4.13" } } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index ca81f67a2350..defcf4848927 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^4.14.5", - "vitest": "^2.0.5" + "astro": "^4.16.2", + "vitest": "^2.1.2" } } diff --git a/package.json b/package.json index f32a2520ddfc..a71f86973e81 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,8 @@ "test:e2e:hosts": "turbo run test:hosted", "benchmark": "astro-benchmark", "lint": "biome lint && eslint . --report-unused-disable-directives", + "lint:ci": "biome ci --formatter-enabled=false --organize-imports-enabled=false --reporter=github && eslint . --report-unused-disable-directives", + "lint:fix": "biome lint --write --unsafe", "version": "changeset version && node ./scripts/deps/update-example-versions.js && pnpm install --no-frozen-lockfile && pnpm run format", "preinstall": "npx only-allow pnpm" }, @@ -52,22 +54,21 @@ "astro-benchmark": "workspace:*" }, "devDependencies": { - "@astrojs/check": "^0.9.3", - "@biomejs/biome": "1.8.3", + "@astrojs/check": "^0.9.4", + "@biomejs/biome": "1.9.3", "@changesets/changelog-github": "^0.5.0", - "@changesets/cli": "^2.27.7", + "@changesets/cli": "^2.27.9", "@types/node": "^18.17.8", "esbuild": "^0.21.5", - "eslint": "^9.9.0", - "eslint-plugin-no-only-tests": "^3.3.0", + "eslint": "^9.12.0", "eslint-plugin-regexp": "^2.6.0", "globby": "^14.0.2", "only-allow": "^1.2.1", "prettier": "^3.3.3", "prettier-plugin-astro": "^0.14.1", - "turbo": "^2.0.14", - "typescript": "~5.5.4", - "typescript-eslint": "^8.1.0" + "turbo": "^2.1.3", + "typescript": "~5.6.2", + "typescript-eslint": "^8.8.0" }, "pnpm": { "peerDependencyRules": { diff --git a/packages/astro-prism/src/highlighter.ts b/packages/astro-prism/src/highlighter.ts index c0e58054e7ee..99810b435aed 100644 --- a/packages/astro-prism/src/highlighter.ts +++ b/packages/astro-prism/src/highlighter.ts @@ -26,7 +26,6 @@ export function runHighlighterWithAstro(lang: string | undefined, code: string) } if (lang && !Prism.languages[lang]) { - // eslint-disable-next-line no-console console.warn(`Unable to load the language: ${lang}`); } diff --git a/packages/astro-prism/src/plugin.ts b/packages/astro-prism/src/plugin.ts index 057433f404dc..eed02a304308 100644 --- a/packages/astro-prism/src/plugin.ts +++ b/packages/astro-prism/src/plugin.ts @@ -8,7 +8,6 @@ export function addAstro(Prism: typeof import('prismjs')) { scriptLang = 'typescript'; } else { scriptLang = 'javascript'; - // eslint-disable-next-line no-console console.warn( 'Prism TypeScript language not loaded, Astro scripts will be treated as JavaScript.', ); diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md index 042a36c5516e..be7c24e33f2e 100644 --- a/packages/astro-rss/CHANGELOG.md +++ b/packages/astro-rss/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/rss +## 4.0.8 + +### Patch Changes + +- [#12137](https://github.com/withastro/astro/pull/12137) [`50dd88b`](https://github.com/withastro/astro/commit/50dd88bc6611243e3f1b2df643af6d0b551fe140) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Fixes an error that occurred when the optional `pubDate` property was missing in an item. + +- [#12137](https://github.com/withastro/astro/pull/12137) [`50dd88b`](https://github.com/withastro/astro/commit/50dd88bc6611243e3f1b2df643af6d0b551fe140) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Fixes an error where docs incorrectly stated the `title`, `link` and `pubDate` properties of RSS items was required. + ## 4.0.7 ### Patch Changes diff --git a/packages/astro-rss/README.md b/packages/astro-rss/README.md index c8485b02e3e8..d24c5dabc0d6 100644 --- a/packages/astro-rss/README.md +++ b/packages/astro-rss/README.md @@ -198,19 +198,19 @@ const item = { ### `title` -Type: `string (required)` +Type: `string (optional)` -The title of the item in the feed. +The title of the item in the feed. Optional only if a description is set. Otherwise, required. ### `link` -Type: `string (required)` +Type: `string (optional)` The URL of the item on the web. ### `pubDate` -Type: `Date (required)` +Type: `Date (optional)` Indicates when the item was published. @@ -218,7 +218,7 @@ Indicates when the item was published. Type: `string (optional)` -A synopsis of your item when you are publishing the full content of the item in the `content` field. The `description` may alternatively be the full content of the item in the feed if you are not using the `content` field (entity-coded HTML is permitted). +A synopsis of your item when you are publishing the full content of the item in the `content` field. The `description` may alternatively be the full content of the item in the feed if you are not using the `content` field (entity-coded HTML is permitted). Optional only if a title is set. Otherwise, required. ### `content` @@ -345,7 +345,7 @@ const blog = defineCollection({ ## `pagesGlobToRssItems()` -To create an RSS feed from documents in `src/pages/`, use the `pagesGlobToRssItems()` helper. This accepts an `import.meta.glob` result ([see Vite documentation](https://vitejs.dev/guide/features.html#glob-import)) and outputs an array of valid [`RSSFeedItem`s](#items). +To create an RSS feed from documents in `src/pages/`, use the `pagesGlobToRssItems()` helper. This accepts an `import.meta.glob` result ([see Vite documentation](https://vite.dev/guide/features.html#glob-import)) and outputs an array of valid [`RSSFeedItem`s](#items). This function assumes, but does not verify, you are globbing for items inside `src/pages/`, and all necessary feed properties are present in each document's frontmatter. If you encounter errors, verify each page frontmatter manually. diff --git a/packages/astro-rss/package.json b/packages/astro-rss/package.json index ba07de25bc25..509f31ee3859 100644 --- a/packages/astro-rss/package.json +++ b/packages/astro-rss/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/rss", "description": "Add RSS feeds to your Astro projects", - "version": "4.0.7", + "version": "4.0.8", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", @@ -33,7 +33,7 @@ "xml2js": "0.6.2" }, "dependencies": { - "fast-xml-parser": "^4.4.1", + "fast-xml-parser": "^4.5.0", "kleur": "^4.1.5" } } diff --git a/packages/astro-rss/src/index.ts b/packages/astro-rss/src/index.ts index b84e81e7399b..33a8f66a0261 100644 --- a/packages/astro-rss/src/index.ts +++ b/packages/astro-rss/src/index.ts @@ -70,7 +70,6 @@ const rssOptionsValidator = z.object({ .or(globResultValidator) .transform((items) => { if (!Array.isArray(items)) { - // eslint-disable-next-line console.warn( yellow( '[RSS] Passing a glob result directly has been deprecated. Please migrate to the `pagesGlobToRssItems()` helper: https://docs.astro.build/en/guides/rss/', diff --git a/packages/astro-rss/src/schema.ts b/packages/astro-rss/src/schema.ts index 1c2db762dcad..c4a0fec3f093 100644 --- a/packages/astro-rss/src/schema.ts +++ b/packages/astro-rss/src/schema.ts @@ -5,9 +5,9 @@ export const rssSchema = z.object({ description: z.string().optional(), pubDate: z .union([z.string(), z.number(), z.date()]) - .optional() - .transform((value) => (value === undefined ? value : new Date(value))) - .refine((value) => (value === undefined ? value : !isNaN(value.getTime()))), + .transform((value) => new Date(value)) + .refine((value) => !isNaN(value.getTime())) + .optional(), customData: z.string().optional(), categories: z.array(z.string()).optional(), author: z.string().optional(), diff --git a/packages/astro-rss/test/rss.test.js b/packages/astro-rss/test/rss.test.js index 5a0fd1fd0b00..8014f87fe928 100644 --- a/packages/astro-rss/test/rss.test.js +++ b/packages/astro-rss/test/rss.test.js @@ -10,6 +10,7 @@ import { phpFeedItem, phpFeedItemWithContent, phpFeedItemWithCustomData, + phpFeedItemWithoutDate, site, title, web1FeedItem, @@ -25,6 +26,8 @@ const validXmlResult = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItemWithContent.title}]]>${site}${phpFeedItemWithContent.link}/${site}${phpFeedItemWithContent.link}/${new Date(phpFeedItemWithContent.pubDate).toUTCString()}<![CDATA[${web1FeedItemWithContent.title}]]>${site}${web1FeedItemWithContent.link}/${site}${web1FeedItemWithContent.link}/${new Date(web1FeedItemWithContent.pubDate).toUTCString()}`; // biome-ignore format: keep in one line +const validXmlResultWithMissingDate = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItemWithoutDate.title}]]>${site}${phpFeedItemWithoutDate.link}/${site}${phpFeedItemWithoutDate.link}/<![CDATA[${phpFeedItem.title}]]>${site}${phpFeedItem.link}/${site}${phpFeedItem.link}/${new Date(phpFeedItem.pubDate).toUTCString()}`; +// biome-ignore format: keep in one line const validXmlResultWithAllData = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItem.title}]]>${site}${phpFeedItem.link}/${site}${phpFeedItem.link}/${new Date(phpFeedItem.pubDate).toUTCString()}<![CDATA[${web1FeedItemWithAllData.title}]]>${site}${web1FeedItemWithAllData.link}/${site}${web1FeedItemWithAllData.link}/${new Date(web1FeedItemWithAllData.pubDate).toUTCString()}${web1FeedItemWithAllData.categories[0]}${web1FeedItemWithAllData.categories[1]}${web1FeedItemWithAllData.author}${web1FeedItemWithAllData.commentsUrl}${web1FeedItemWithAllData.source.title}`; // biome-ignore format: keep in one line const validXmlWithCustomDataResult = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItemWithCustomData.title}]]>${site}${phpFeedItemWithCustomData.link}/${site}${phpFeedItemWithCustomData.link}/${new Date(phpFeedItemWithCustomData.pubDate).toUTCString()}${phpFeedItemWithCustomData.customData}<![CDATA[${web1FeedItemWithContent.title}]]>${site}${web1FeedItemWithContent.link}/${site}${web1FeedItemWithContent.link}/${new Date(web1FeedItemWithContent.pubDate).toUTCString()}`; @@ -101,6 +104,17 @@ describe('getRssString', () => { assertXmlDeepEqual(str, validXmlWithContentResult); }); + it('should generate on valid RSSFeedItem array with missing date', async () => { + const str = await getRssString({ + title, + description, + items: [phpFeedItemWithoutDate, phpFeedItem], + site, + }); + + assertXmlDeepEqual(str, validXmlResultWithMissingDate); + }); + it('should generate on valid RSSFeedItem array with all RSS content included', async () => { const str = await getRssString({ title, diff --git a/packages/astro-rss/test/test-utils.js b/packages/astro-rss/test/test-utils.js index dcc57df21f4e..d3ee8ca336c7 100644 --- a/packages/astro-rss/test/test-utils.js +++ b/packages/astro-rss/test/test-utils.js @@ -4,13 +4,16 @@ export const title = 'My RSS feed'; export const description = 'This sure is a nice RSS feed'; export const site = 'https://example.com'; -export const phpFeedItem = { +export const phpFeedItemWithoutDate = { link: '/php', title: 'Remember PHP?', - pubDate: '1994-05-03', description: 'PHP is a general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994.', }; +export const phpFeedItem = { + ...phpFeedItemWithoutDate, + pubDate: '1994-05-03', +}; export const phpFeedItemWithContent = { ...phpFeedItem, content: `

${phpFeedItem.title}

${phpFeedItem.description}

`, diff --git a/packages/astro/CHANGELOG-v1.md b/packages/astro/CHANGELOG-v1.md new file mode 100644 index 000000000000..70dc32191191 --- /dev/null +++ b/packages/astro/CHANGELOG-v1.md @@ -0,0 +1,1153 @@ +## 1.9.2 + +### Patch Changes + +- [#5776](https://github.com/withastro/astro/pull/5776) [`6a31433ed`](https://github.com/withastro/astro/commit/6a31433ed79c7f84fd3ce602005b42ad95007d84) Thanks [@ba55ie](https://github.com/ba55ie)! - Fix Lit slotted content + +## 1.9.1 + +### Patch Changes + +- [`adad7e966`](https://github.com/withastro/astro/commit/adad7e96680640e1d0a5ec270cd2516f350c7652) Thanks [@matthewp](https://github.com/matthewp)! - Fix for hoisted scripts in project with spaces in the file path + +## 1.9.0 + +### Minor Changes + +- [#5666](https://github.com/withastro/astro/pull/5666) [`bf210f784`](https://github.com/withastro/astro/commit/bf210f7841711439f7db6c2b1f369e54a70b03d3) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Correctly handle spaces and capitalization in `src/content/` file names. This introduces github-slugger for slug generation to ensure slugs are usable by `getStaticPaths`. Changes: + - Resolve spaces and capitalization: `collection/Entry With Spaces.md` becomes `collection/entry-with-spaces`. + - Truncate `/index` paths to base URL: `collection/index.md` becomes `collection` + +### Patch Changes + +- [#5720](https://github.com/withastro/astro/pull/5720) [`fe316be86`](https://github.com/withastro/astro/commit/fe316be86f4dfecff78effbecdc10f7348406d27) Thanks [@umarov](https://github.com/umarov)! - Do not add base path to a hoisted script body + +- [#5706](https://github.com/withastro/astro/pull/5706) [`c2844a79c`](https://github.com/withastro/astro/commit/c2844a79c8c94466481f5f3a37af259bb4cbf276) Thanks [@bluwy](https://github.com/bluwy)! - Add preact and sitemap integration to config load external list + +- [#5700](https://github.com/withastro/astro/pull/5700) [`3aa3e00a6`](https://github.com/withastro/astro/commit/3aa3e00a63b63ae443f824f11cffde2a194ea4bf) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix `import.meta.env.DEV` always being set to `true` when using Content Collections + +## 1.8.0 + +### Minor Changes + +- [#5647](https://github.com/withastro/astro/pull/5647) [`d72da5290`](https://github.com/withastro/astro/commit/d72da529075ccbcfd342bf2308df0e5ce59b1e3f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add `astro sync` CLI command for type generation + +### Patch Changes + +- [#5668](https://github.com/withastro/astro/pull/5668) [`9674cf56c`](https://github.com/withastro/astro/commit/9674cf56c561af8f13def0266b0539507a80000d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Remove stray `console.log` from content collections error message + +- [#5652](https://github.com/withastro/astro/pull/5652) [`0b5098758`](https://github.com/withastro/astro/commit/0b50987584120e0c0e549f9ff838dc8879dbfa30) Thanks [@bluwy](https://github.com/bluwy)! - Use acorn to postprocess Astro globs + +- [#5648](https://github.com/withastro/astro/pull/5648) [`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Prevent relative image paths in `src/content/` + +- [#5678](https://github.com/withastro/astro/pull/5678) [`f8f576829`](https://github.com/withastro/astro/commit/f8f57682948a76cad81eef579235ee059578fe91) Thanks [@bluwy](https://github.com/bluwy)! - Fix code generation quotes handling + +- [#5635](https://github.com/withastro/astro/pull/5635) [`376f67011`](https://github.com/withastro/astro/commit/376f67011d220de3bf05d3f39779a708992fffd7) Thanks [@SegaraRai](https://github.com/SegaraRai)! - Add `server.headers` typing + +- Updated dependencies [[`853081d1c`](https://github.com/withastro/astro/commit/853081d1c857d8ad8a9634c37ed8fd123d32d241), [`2c65b433b`](https://github.com/withastro/astro/commit/2c65b433bf840a1bb93b0a1947df5949e33512ff)]: + - @astrojs/markdown-remark@1.2.0 + +## 1.7.2 + +### Patch Changes + +- [#5641](https://github.com/withastro/astro/pull/5641) [`62580ed07`](https://github.com/withastro/astro/commit/62580ed07871606c88051b6a2007b865c636107e) Thanks [@chenxsan](https://github.com/chenxsan)! - Fix "Maximum call stack size exceeded" error in vite-plugin-head-propagation + +- [#5644](https://github.com/withastro/astro/pull/5644) [`d5aff85db`](https://github.com/withastro/astro/commit/d5aff85db48ccc9234968071b378829369afba9b) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix static build regression where chunks would not be generated + +- [#5639](https://github.com/withastro/astro/pull/5639) [`1ac1ed86e`](https://github.com/withastro/astro/commit/1ac1ed86e9e5ec5468e8bdc40875e05811863138) Thanks [@bluwy](https://github.com/bluwy)! - Fix `client:only` imports with `"importsNotUsedAsValues": "error"` tsconfig + +## 1.7.1 + +### Patch Changes + +- [#5617](https://github.com/withastro/astro/pull/5617) [`33dcaa05b`](https://github.com/withastro/astro/commit/33dcaa05bb821ff0c6d0c6021b912855386be340) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix error message when using Content Collections and an out-of-date `@astrojs/mdx` integration + +## 1.7.0 + +### Minor Changes + +- [#5297](https://github.com/withastro/astro/pull/5297) [`d2960984c`](https://github.com/withastro/astro/commit/d2960984c59af7b60a3ea472c6c58fb00534a8e6) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Introduces the **experimental** Prerender API. + + > **Note** + > This API is not yet stable and is subject to possible breaking changes! + + - Deploy an Astro server without sacrificing the speed or cacheability of static HTML. + - The Prerender API allows you to statically prerender specific `pages/` at build time. + + **Usage** + + - First, run `astro build --experimental-prerender` or enable `experimental: { prerender: true }` in your `astro.config.mjs` file. + - Then, include `export const prerender = true` in any file in the `pages/` directory that you wish to prerender. + +- [#5495](https://github.com/withastro/astro/pull/5495) [`31ec84797`](https://github.com/withastro/astro/commit/31ec8479721a1cd65538ec041458c5ffe8f50ee9) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add a new error overlay designed by @doodlemarks! This new overlay should be much more informative, clearer, astro-y, and prettier than the previous one. + +- [#5291](https://github.com/withastro/astro/pull/5291) [`5ec0f6ed5`](https://github.com/withastro/astro/commit/5ec0f6ed55b0a14a9663a90a03428345baf126bd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Introduce Content Collections experimental API + + - Organize your Markdown and MDX content into easy-to-manage collections. + - Add type safety to your frontmatter with schemas. + - Generate landing pages, static routes, and SSR endpoints from your content using the collection query APIs. + +- [#5564](https://github.com/withastro/astro/pull/5564) [`dced4a8a2`](https://github.com/withastro/astro/commit/dced4a8a2657887ec569860d9862d20f695dc23a) Thanks [@riywo](https://github.com/riywo)! - Add `server.headers` option + +- [#5341](https://github.com/withastro/astro/pull/5341) [`6b156dd3b`](https://github.com/withastro/astro/commit/6b156dd3b467884839a571c53114aadf26fa4b0b) Thanks [@alexpdraper](https://github.com/alexpdraper)! - Allow setting domain when deleting cookies + +### Patch Changes + +- [#5615](https://github.com/withastro/astro/pull/5615) [`d85ec7484`](https://github.com/withastro/astro/commit/d85ec7484ce14a4c7d3f480da8f38fcb9aff388f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Sanitize dynamically rendered tags to strip out any attributes + +## 1.6.15 + +### Patch Changes + +- [#5572](https://github.com/withastro/astro/pull/5572) [`b2f0210c4`](https://github.com/withastro/astro/commit/b2f0210c400a547d3067fdae6d15663b827be3a6) Thanks [@matthewp](https://github.com/matthewp)! - Include base in 'page' stage injected scripts + +- [#5554](https://github.com/withastro/astro/pull/5554) [`02bb0a1cc`](https://github.com/withastro/astro/commit/02bb0a1ccd53e38157eec3a750160731fce64b9c) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update `@astrojs/compiler` to latest + +- [#5577](https://github.com/withastro/astro/pull/5577) [`2bd23e454`](https://github.com/withastro/astro/commit/2bd23e454fc9559aa00b9a493772acd69ba9ce6c) Thanks [@jerzakm](https://github.com/jerzakm)! - Updated magic-string to 0.27.0 + +## 1.6.14 + +### Patch Changes + +- [#5545](https://github.com/withastro/astro/pull/5545) [`9082a850e`](https://github.com/withastro/astro/commit/9082a850eef4ab0187fc3bfdd5a377f0c7040070) Thanks [@bluwy](https://github.com/bluwy)! - Exclude astro from Vite optimization + +- [#5446](https://github.com/withastro/astro/pull/5446) [`4f7f20616`](https://github.com/withastro/astro/commit/4f7f20616ed2b63f94ebf43bc5fdc1be55062a94) Thanks [@jyasskin](https://github.com/jyasskin)! - Fix redirect() typing to allow all redirection status codes. + +- [#5511](https://github.com/withastro/astro/pull/5511) [`05915fec0`](https://github.com/withastro/astro/commit/05915fec01a51f27ab5051644f01e6112ecf06bc) Thanks [@matthewp](https://github.com/matthewp)! - Low-level head propagation + + This adds low-level head propagation ability within the Astro runtime. This is not really usable within an Astro app at the moment, but provides the APIs necessary for `renderEntry` to do head propagation. + +- [#5553](https://github.com/withastro/astro/pull/5553) [`1aeabe417`](https://github.com/withastro/astro/commit/1aeabe417077505bc0cdb8d2e47366ddbc616072) Thanks [@matthewp](https://github.com/matthewp)! - Fix Astro.params not having values when using base in SSR + +- [#5549](https://github.com/withastro/astro/pull/5549) [`795f00f73`](https://github.com/withastro/astro/commit/795f00f73c549727e05d5b7bf0e39cce87add4e7) Thanks [@matthewp](https://github.com/matthewp)! - Use accumulated sort order when order production CSS + +- [#5539](https://github.com/withastro/astro/pull/5539) [`2c836b9d1`](https://github.com/withastro/astro/commit/2c836b9d1283a0707128d172e92ee2bba767486c) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Error reporting fails on undefined error index + +- [#5548](https://github.com/withastro/astro/pull/5548) [`8f3f67c96`](https://github.com/withastro/astro/commit/8f3f67c96aee63be64de77f374293761ff73f6ce) Thanks [@ido-pluto](https://github.com/ido-pluto)! - Removed premature optimization + +## 1.6.13 + +### Patch Changes + +- [#5506](https://github.com/withastro/astro/pull/5506) [`f536a34e5`](https://github.com/withastro/astro/commit/f536a34e53121104f87f2ad117a539daf2b7d5ee) Thanks [@bluwy](https://github.com/bluwy)! - Dedupe Astro package when resolving + +- [#5506](https://github.com/withastro/astro/pull/5506) [`f536a34e5`](https://github.com/withastro/astro/commit/f536a34e53121104f87f2ad117a539daf2b7d5ee) Thanks [@bluwy](https://github.com/bluwy)! - Refactor Astro compile flow + +- [#5533](https://github.com/withastro/astro/pull/5533) [`58188e053`](https://github.com/withastro/astro/commit/58188e053672562dfe4b7703c3e25bb47d71567d) Thanks [@bluwy](https://github.com/bluwy)! - Refactor and remove esbuild dependency + +- [#5501](https://github.com/withastro/astro/pull/5501) [`3c44033e4`](https://github.com/withastro/astro/commit/3c44033e4ebafd28472d5c6a43e55c0363c6b555) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Added a warning in build when trying to hydrate an Astro component + +## 1.6.12 + +### Patch Changes + +- [#5484](https://github.com/withastro/astro/pull/5484) [`731e99df8`](https://github.com/withastro/astro/commit/731e99df875d40e40f6b33feddd940c3122a5f83) Thanks [@Pimm](https://github.com/Pimm)! - Narrow type of `Params`, as its values cannot be numbers + +- [#5480](https://github.com/withastro/astro/pull/5480) [`c13775279`](https://github.com/withastro/astro/commit/c137752797a1af39b758d207af97bf234b3ff08d) Thanks [@sapphi-red](https://github.com/sapphi-red)! - Fix astro preview not working on Windows + +- [#5497](https://github.com/withastro/astro/pull/5497) [`ca01a71eb`](https://github.com/withastro/astro/commit/ca01a71eb0937eae3ddc34d48396df8161e830db) Thanks [@bluwy](https://github.com/bluwy)! - Refactor internal plugins code + +- [#5460](https://github.com/withastro/astro/pull/5460) [`57888e069`](https://github.com/withastro/astro/commit/57888e06904c48959940fffc5e63ac2e320fd336) Thanks [@bluwy](https://github.com/bluwy)! - Fix linked Astro library style HMR + +- [#5477](https://github.com/withastro/astro/pull/5477) [`5e693c214`](https://github.com/withastro/astro/commit/5e693c21438d3a4840cd1906a346d38f05fdb753) Thanks [@bluwy](https://github.com/bluwy)! - Prevent inlining SCSS partials in dev + +- [#5498](https://github.com/withastro/astro/pull/5498) [`1a3923da7`](https://github.com/withastro/astro/commit/1a3923da780288e6435fa79ee8fb61e420af344c) Thanks [@bluwy](https://github.com/bluwy)! - Optimize JSX import source detection + +## 1.6.11 + +### Patch Changes + +- [#5433](https://github.com/withastro/astro/pull/5433) [`936c1e411`](https://github.com/withastro/astro/commit/936c1e411d77c69b2b60a061c54704200716800a) Thanks [@wtchnm](https://github.com/wtchnm)! - Add missing `fetchpriority` attribute to img, link, script and iframe elements + +- [#5437](https://github.com/withastro/astro/pull/5437) [`4b188132e`](https://github.com/withastro/astro/commit/4b188132ef68f8d9951cec86418ef50bb4df4a96) Thanks [@bluwy](https://github.com/bluwy)! - Correctly transform third-party JSX files + +- [#5434](https://github.com/withastro/astro/pull/5434) [`f5ed630bc`](https://github.com/withastro/astro/commit/f5ed630bca05ebbfcc6ac994ced3911e41daedcc) Thanks [@matthewp](https://github.com/matthewp)! - Use Vite's resolve to resolve paths for client:only + +## 1.6.10 + +### Patch Changes + +- [#5431](https://github.com/withastro/astro/pull/5431) [`1ab505855`](https://github.com/withastro/astro/commit/1ab505855f9942659e3d23cb1ac668f04b98889d) Thanks [@matthewp](https://github.com/matthewp)! - Fix regression with loading .ts in .mjs config + +- [#5426](https://github.com/withastro/astro/pull/5426) [`ff35b4759`](https://github.com/withastro/astro/commit/ff35b4759bd0fecfee6c99bf510c2e32d2574992) Thanks [@bluwy](https://github.com/bluwy)! - Fix JSX tagging for anonymous higher-order components default export + +- [#5430](https://github.com/withastro/astro/pull/5430) [`b22ba1c03`](https://github.com/withastro/astro/commit/b22ba1c03a3e384dad569feb38fa34ecf7ec3b93) Thanks [@bluwy](https://github.com/bluwy)! - Fix preview --host in Node.js 18 + +- [#5417](https://github.com/withastro/astro/pull/5417) [`a9f7ff966`](https://github.com/withastro/astro/commit/a9f7ff96676a40b78e22379edc8eb9ce60a29fb8) Thanks [@matthewp](https://github.com/matthewp)! - Prevent dev from crashing when there are errors in template + +## 1.6.9 + +### Patch Changes + +- [#5409](https://github.com/withastro/astro/pull/5409) [`9f80a4046`](https://github.com/withastro/astro/commit/9f80a4046ff90e379be68bf03c3c4dd4dd5d6d87) Thanks [@matthewp](https://github.com/matthewp)! - Fix Code component usage in Vercel + +- [#5410](https://github.com/withastro/astro/pull/5410) [`3c5cb6948`](https://github.com/withastro/astro/commit/3c5cb69488c76bbf0e9774fff5d948d29990515c) Thanks [@impcyber](https://github.com/impcyber)! - Fix: https://github.com/withastro/astro/issues/5400 + +- [#5412](https://github.com/withastro/astro/pull/5412) [`a278c7ae6`](https://github.com/withastro/astro/commit/a278c7ae6f2e93cabfe56fc16eb8b82b904ffb3a) Thanks [@matthewp](https://github.com/matthewp)! - Restart dev server on package.json changes + +- [#5377](https://github.com/withastro/astro/pull/5377) [`40226dd14`](https://github.com/withastro/astro/commit/40226dd14d9f2d00d943f508dcfc76654c352938) Thanks [@matthewp](https://github.com/matthewp)! - Uses vite to load astro.config.ts files + +## 1.6.8 + +### Patch Changes + +- [#5375](https://github.com/withastro/astro/pull/5375) [`f9104354b`](https://github.com/withastro/astro/commit/f9104354b8a2c2457b9cd64405ddf8a832628e26) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix regression causing nested arrays in `getStaticPaths`'s return value to throw an error + +- [#5346](https://github.com/withastro/astro/pull/5346) [`f3181b5ad`](https://github.com/withastro/astro/commit/f3181b5adf2c7c9157a59f409962274cda3f77ab) Thanks [@bluwy](https://github.com/bluwy)! - Fix .html.astro file routing in dev + +- [#5358](https://github.com/withastro/astro/pull/5358) [`9eee0f016`](https://github.com/withastro/astro/commit/9eee0f0166e678dbcc2f6e4ce18bfa6326c95d7e) Thanks [@matthewp](https://github.com/matthewp)! - Properly support trailingSlash: never with a base + +- [#5345](https://github.com/withastro/astro/pull/5345) [`3ae2a961b`](https://github.com/withastro/astro/commit/3ae2a961b77da179d24c44734af54424e76a5049) Thanks [@bluwy](https://github.com/bluwy)! - Respect Vite user config for third-party packages config handling + +- [#5371](https://github.com/withastro/astro/pull/5371) [`bee8c14af`](https://github.com/withastro/astro/commit/bee8c14afd475ad053b9fdf78a2d29bebdd86926) Thanks [@matthewp](https://github.com/matthewp)! - Prefer the `base` config rather than site config for creating URLs for links and scripts. + +- [#5369](https://github.com/withastro/astro/pull/5369) [`e385076ef`](https://github.com/withastro/astro/commit/e385076efe297f457343275e2e7002f71b35792b) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Upgrade `@astrojs/compiler`, fixes regression with `body` handling when `head` contains a Component node + +## 1.6.7 + +### Patch Changes + +- [#5353](https://github.com/withastro/astro/pull/5353) [`b3d936ac2`](https://github.com/withastro/astro/commit/b3d936ac248c0b939ff830023d75694398094341) Thanks [@matthewp](https://github.com/matthewp)! - Updated the CSS naming algorithm to prevent clashes + +- [#5294](https://github.com/withastro/astro/pull/5294) [`ae41f25e1`](https://github.com/withastro/astro/commit/ae41f25e10a3fb1e5ad72c979ebe27fe55071de3) Thanks [@mrienstra](https://github.com/mrienstra)! - Consistent Markdown frontmatter typing (`MarkdownAstroData["frontmatter"]` in particular was `object` before) + +## 1.6.6 + +### Patch Changes + +- [#5316](https://github.com/withastro/astro/pull/5316) [`a780f2595`](https://github.com/withastro/astro/commit/a780f2595db86a773be0be1fefcbd9cbab2e8fc2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improved error messages descriptions and hints to be more informative + +- [#5331](https://github.com/withastro/astro/pull/5331) [`688f8e4bc`](https://github.com/withastro/astro/commit/688f8e4bc1d8a284ee3d29f6122dbdebc02310ff) Thanks [@matthewp](https://github.com/matthewp)! - Allow dynamic segments in injected routes + +- [#5330](https://github.com/withastro/astro/pull/5330) [`7e19e8b30`](https://github.com/withastro/astro/commit/7e19e8b30d0b411d69eb7d9c1de9dc304f084b37) Thanks [@matthewp](https://github.com/matthewp)! - Prevent jsx throws from hanging server + +- [#5328](https://github.com/withastro/astro/pull/5328) [`bcd0f8f8c`](https://github.com/withastro/astro/commit/bcd0f8f8c4c27d19296ec08d7bf7d8f5047d583e) Thanks [@matthewp](https://github.com/matthewp)! - 404 when not using subpath for items in public in dev + + Previously if using a base like `base: '/subpath/` you could load things from the root, which would break in prod. Now you must include the subpath. + +- [#5339](https://github.com/withastro/astro/pull/5339) [`03a8f89d5`](https://github.com/withastro/astro/commit/03a8f89d5ff79f43f4025fda0c93fd3c85482412) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Upgrade `@astrojs/compiler` to latest + +- [#5327](https://github.com/withastro/astro/pull/5327) [`0dcdc6fb1`](https://github.com/withastro/astro/commit/0dcdc6fb1e6160c8a225a65c4810f565e2b673b5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update Astro language-server to 0.28.3 + +## 1.6.5 + +### Patch Changes + +- [#5326](https://github.com/withastro/astro/pull/5326) [`88c1bbe3a`](https://github.com/withastro/astro/commit/88c1bbe3a71f85e92f42f13d0f310c6b2a264ade) Thanks [@matthewp](https://github.com/matthewp)! - Fix omitted island hydration scripts in slots + +- [#5301](https://github.com/withastro/astro/pull/5301) [`a79a37cad`](https://github.com/withastro/astro/commit/a79a37cad549b21f91599ff86899e456d9dcc7df) Thanks [@bluwy](https://github.com/bluwy)! - Improve environment variable handling performance + +## 1.6.4 + +### Patch Changes + +- [#5290](https://github.com/withastro/astro/pull/5290) [`b2b291d29`](https://github.com/withastro/astro/commit/b2b291d29143703cece0d12c8e74b2e1151d2061) Thanks [@matthewp](https://github.com/matthewp)! - Handle base configuration in adapters + + This allows adapters to correctly handle `base` configuration. Internally Astro now matches routes when the URL includes the `base`. + + Adapters now also have access to the `removeBase` method which will remove the `base` from a pathname. This is useful to look up files for static assets. + +- [#5292](https://github.com/withastro/astro/pull/5292) [`97e2b6ad7`](https://github.com/withastro/astro/commit/97e2b6ad7a6fa23e82be28b2f57cdf3f85fab112) Thanks [@MontelAle](https://github.com/MontelAle)! - Changes slow astro cli imports to dynamic + +- [#5293](https://github.com/withastro/astro/pull/5293) [`4af4d8fa0`](https://github.com/withastro/astro/commit/4af4d8fa0035130fbf31c82d72777c3679bc1ca5) Thanks [@matthewp](https://github.com/matthewp)! - Prevent overcaching .astro HMR changes + +- [#5314](https://github.com/withastro/astro/pull/5314) [`f6add3924`](https://github.com/withastro/astro/commit/f6add3924d5cd59925a6ea4bf7f2f731709bc893) Thanks [@matthewp](https://github.com/matthewp)! - Fixes regression with config file restarts + +- [#5298](https://github.com/withastro/astro/pull/5298) [`247eb7411`](https://github.com/withastro/astro/commit/247eb7411f429317e5cd7d401a6660ee73641313) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - have not founded style when srcDir was root + +## 1.6.3 + +### Patch Changes + +- [#5273](https://github.com/withastro/astro/pull/5273) [`c7b9b14a1`](https://github.com/withastro/astro/commit/c7b9b14a1e8be22c21bd8b2982a340f101993924) Thanks [@matthewp](https://github.com/matthewp)! - Surface astro.config errors to the user + +- [#5264](https://github.com/withastro/astro/pull/5264) [`0d27c4a2b`](https://github.com/withastro/astro/commit/0d27c4a2b67e3928cc6f7b5af5faad20926b6cbb) Thanks [@VladCuciureanu](https://github.com/VladCuciureanu)! - Fixed memleak caused by project dir names containing '.md' or '.mdx' + +- [#5258](https://github.com/withastro/astro/pull/5258) [`74759cf78`](https://github.com/withastro/astro/commit/74759cf787aefeeccc3fc336fdb0a56b982733bb) Thanks [@bluwy](https://github.com/bluwy)! - Allow 200 response for endpoints in build + +- [#5284](https://github.com/withastro/astro/pull/5284) [`126cd8e83`](https://github.com/withastro/astro/commit/126cd8e83fbed8d69320c55cad4bdaa2d6209de9) Thanks [@herteleo](https://github.com/herteleo)! - Include missing `class:list` within `HTMLAttributes` type + +- [#5236](https://github.com/withastro/astro/pull/5236) [`1cc067052`](https://github.com/withastro/astro/commit/1cc067052438602d9378bf84dc7754c09afdfbe8) Thanks [@bluwy](https://github.com/bluwy)! - Refactor CSS preprocessing handling + +- [#5198](https://github.com/withastro/astro/pull/5198) [`c77a6cbe3`](https://github.com/withastro/astro/commit/c77a6cbe345facbf72c453e2fddc00f20c98983f) Thanks [@matthewp](https://github.com/matthewp)! - HMR - Improved error recovery + + This improves error recovery for HMR. Now when the dev server finds itself in an error state (because a route contained an error), it will recover from that state and refresh the page when the user has corrected the mistake. + +## 1.6.2 + +### Patch Changes + +- [#5243](https://github.com/withastro/astro/pull/5243) [`7d678c9ed`](https://github.com/withastro/astro/commit/7d678c9ed05a33380a2153df54abdf87d374f970) Thanks [@matthewp](https://github.com/matthewp)! - Upgrade `@astrojs/compiler` to 0.29.x + +- Updated dependencies [[`b6a478f37`](https://github.com/withastro/astro/commit/b6a478f37648491321077750bfca7bddf3cafadd)]: + - @astrojs/webapi@1.1.1 + +## 1.6.1 + +### Patch Changes + +- [#5233](https://github.com/withastro/astro/pull/5233) [`7f8987085`](https://github.com/withastro/astro/commit/7f8987085c9c5bdcd39b9a6700303e9b9f76b9f2) Thanks [@bluwy](https://github.com/bluwy)! - Support rendering `@motionone/solid` components + +- [#5238](https://github.com/withastro/astro/pull/5238) [`26ff42905`](https://github.com/withastro/astro/commit/26ff429058c6244767276b9fa20ef58987be13ee) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Fix not included file extension in `url` metadata for newly added markdown files + +- [#5217](https://github.com/withastro/astro/pull/5217) [`8c83359e3`](https://github.com/withastro/astro/commit/8c83359e385b47fb6e453c023aeac2e01a579f38) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix missing types.d.ts in npm package + +- [#5212](https://github.com/withastro/astro/pull/5212) [`a609a8937`](https://github.com/withastro/astro/commit/a609a8937f9f35c46f3c934d38b83c445da425b9) Thanks [@bluwy](https://github.com/bluwy)! - Upgrade Vite to 3.2 + +- [#5206](https://github.com/withastro/astro/pull/5206) [`d64d5b9b5`](https://github.com/withastro/astro/commit/d64d5b9b52c66ac0b3435b85c92a877f374fb100) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improve error messages related to CSS and compiler errors + +- [#5212](https://github.com/withastro/astro/pull/5212) [`a609a8937`](https://github.com/withastro/astro/commit/a609a8937f9f35c46f3c934d38b83c445da425b9) Thanks [@bluwy](https://github.com/bluwy)! - Allow importing public files in SSR + +## 1.6.0 + +### Minor Changes + +- [#5147](https://github.com/withastro/astro/pull/5147) [`0bf0758fb`](https://github.com/withastro/astro/commit/0bf0758fb831a91f6628e10a5baabf02f30f1f41) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add `astro/types` entrypoint. These utilities can be used for common prop type patterns. + + ## `HTMLAttributes` + + If you would like to extend valid HTML attributes for a given HTML element, you may use the provided `HTMLAttributes` type—it accepts an element name and returns the valid HTML attributes for that element name. + + ```ts + import { HTMLAttributes } from 'astro/types'; + interface Props extends HTMLAttributes<'a'> { + myProp?: string; + } + ``` + +- [#5164](https://github.com/withastro/astro/pull/5164) [`4a8a346ca`](https://github.com/withastro/astro/commit/4a8a346ca9a6d6ed8def2fa32329c1db922893d2) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Add support for markdown files with the following extensions: + + - `.markdown` + - `.mdown` + - `.mkdn` + - `.mkd` + - `.mdwn` + +- [#4917](https://github.com/withastro/astro/pull/4917) [`ddf2f8390`](https://github.com/withastro/astro/commit/ddf2f8390e8dcc64b44636524bdcddae977779f4) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add support for `--base` CLI argument, which will override the [`base`](https://docs.astro.build/en/reference/configuration-reference/#base) set in your `astro.config.mjs` file. + + ``` + astro --site https://astro.build --base /docs + ``` + +### Patch Changes + +- [#5203](https://github.com/withastro/astro/pull/5203) [`3d99fdd1e`](https://github.com/withastro/astro/commit/3d99fdd1e7ea563775d86d1b00196c4c0c024500) Thanks [@bluwy](https://github.com/bluwy)! - Improve Astro libraries config handling + +## 1.5.3 + +### Patch Changes + +- [#5133](https://github.com/withastro/astro/pull/5133) [`1c477dd8d`](https://github.com/withastro/astro/commit/1c477dd8d9026fcbd533b4e6d11908e167ce7247) Thanks [@bluwy](https://github.com/bluwy)! - Fix `.css?raw` usage + +- [#5133](https://github.com/withastro/astro/pull/5133) [`1c477dd8d`](https://github.com/withastro/astro/commit/1c477dd8d9026fcbd533b4e6d11908e167ce7247) Thanks [@bluwy](https://github.com/bluwy)! - Update `@astrojs/compiler` and use the new `resolvePath` option. This allows removing much of the runtime code, which should improve rendering performance for Astro and MDX pages. + +- [#5192](https://github.com/withastro/astro/pull/5192) [`8728ee0b9`](https://github.com/withastro/astro/commit/8728ee0b94ef28524900367a06b9fe806babd574) Thanks [@tony-sull](https://github.com/tony-sull)! - `astro add` no longer automatically installs optional peer dependencies + +## 1.5.2 + +### Patch Changes + +- [#5119](https://github.com/withastro/astro/pull/5119) [`430e0346c`](https://github.com/withastro/astro/commit/430e0346c9dc0def8af93e0a393dc2847e145d2f) Thanks [@bluwy](https://github.com/bluwy)! - Use `fs.promises.rm` to remove node deprecation warning + +- [#5123](https://github.com/withastro/astro/pull/5123) [`9745009ae`](https://github.com/withastro/astro/commit/9745009ae0e7fe8691c75657c5c9586a548bf2e0) Thanks [@matthewp](https://github.com/matthewp)! - Fixes index page with build.format=file + +- [#5116](https://github.com/withastro/astro/pull/5116) [`500acb3c1`](https://github.com/withastro/astro/commit/500acb3c117070ee5838a8b567e9bdcf68703227) Thanks [@matthewp](https://github.com/matthewp)! - Throws when using Response.redirect in SSG mode + +## 1.5.1 + +### Patch Changes + +- [#5110](https://github.com/withastro/astro/pull/5110) [`0edfdd325`](https://github.com/withastro/astro/commit/0edfdd325932b0b493b2228e3a121d217c38a727) Thanks [@bluwy](https://github.com/bluwy)! - Ensure CLI flags override function-style server config + +- [#5106](https://github.com/withastro/astro/pull/5106) [`ef0c54316`](https://github.com/withastro/astro/commit/ef0c5431631665c9f6648ee5daee65a3ebf8e9ee) Thanks [@bluwy](https://github.com/bluwy)! - Support spread parameters for server endpoints + +- [#5095](https://github.com/withastro/astro/pull/5095) [`ddfbef5ac`](https://github.com/withastro/astro/commit/ddfbef5acbd4c56d8ce1626a458b5cbb27da47fe) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `astro add` trying to add lines from extended configurations when adding frameworks + +- [#5076](https://github.com/withastro/astro/pull/5076) [`6f9a88b31`](https://github.com/withastro/astro/commit/6f9a88b31ba0881acd56fcb62c4a554c867b14d6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix jsconfig.json aliases not working anymore after 1.5.0 + +- [#5080](https://github.com/withastro/astro/pull/5080) [`90b715d5c`](https://github.com/withastro/astro/commit/90b715d5c86810ad1edb013156e4810be3252e55) Thanks [@matthewp](https://github.com/matthewp)! - Fix Astro-in-MDX dashes in slot attr + +- [#5098](https://github.com/withastro/astro/pull/5098) [`f684e9d36`](https://github.com/withastro/astro/commit/f684e9d361e3780889ea6e6b3394c0f583bd839a) Thanks [@jkjustjoshing](https://github.com/jkjustjoshing)! - Separate type definitions for built-in HTML elements and custom elements. Helpful when implementing an "as" prop similar to [styled-components](https://styled-components.com/docs/api#as-polymorphic-prop). + +- [#5108](https://github.com/withastro/astro/pull/5108) [`ce01225a7`](https://github.com/withastro/astro/commit/ce01225a700aff5b437d46f21161e5f557050e12) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix types not working properly when using `moduleResolution: 'node16'` + +- [#5060](https://github.com/withastro/astro/pull/5060) [`5923dd77c`](https://github.com/withastro/astro/commit/5923dd77c17c80747f9fe746ff8270ad4c820003) Thanks [@AirBorne04](https://github.com/AirBorne04)! - api routes: adding cookies to the response, also when returning a simple result + +- [#5087](https://github.com/withastro/astro/pull/5087) [`49a8d18b4`](https://github.com/withastro/astro/commit/49a8d18b4993d899a05ee8230fdd012fb633533f) Thanks [@JuanM04](https://github.com/JuanM04)! - Fix `astro add` pnpm command + +## 1.5.0 + +### Minor Changes + +- [#5056](https://github.com/withastro/astro/pull/5056) [`e55af8a23`](https://github.com/withastro/astro/commit/e55af8a23233b6335f45b7a04b9d026990fb616c) Thanks [@matthewp](https://github.com/matthewp)! - # Adapter support for `astro preview` + + Adapters are now about to support the `astro preview` command via a new integration option. The Node.js adapter `@astrojs/node` is the first of the built-in adapters to gain support for this. What this means is that if you are using `@astrojs/node` you can new preview your SSR app by running: + + ```shell + npm run preview + ``` + + ## Adapter API + + We will be updating the other first party Astro adapters to support preview over time. Adapters can opt-in to this feature by providing the `previewEntrypoint` via the `setAdapter` function in `astro:config:done` hook. The Node.js adapter's code looks like this: + + ```diff + export default function() { + return { + name: '@astrojs/node', + hooks: { + 'astro:config:done': ({ setAdapter, config }) => { + setAdapter({ + name: '@astrojs/node', + serverEntrypoint: '@astrojs/node/server.js', + + previewEntrypoint: '@astrojs/node/preview.js', + exports: ['handler'], + }); + + // more here + } + } + }; + } + ``` + + The `previewEntrypoint` is a module in the adapter's package that is a Node.js script. This script is run when `astro preview` is run and is charged with starting up the built server. See the Node.js implementation in `@astrojs/node` to see how that is implemented. + +- [#4986](https://github.com/withastro/astro/pull/4986) [`ebd364e39`](https://github.com/withastro/astro/commit/ebd364e392035b379dd00b8f2f15a4cc09ee88e6) Thanks [@bluwy](https://github.com/bluwy)! - ## New properties for API routes + + In API routes, you can now get the `site`, `generator`, `url`, `clientAddress`, `props`, and `redirect` fields on the APIContext, which is the first parameter passed to an API route. This was done to make the APIContext more closely align with the `Astro` global in .astro pages. + + For example, here's how you might use the `clientAddress`, which is the user's IP address, to selectively allow users. + + ```js + export function post({ clientAddress, request, redirect }) { + if (!allowList.has(clientAddress)) { + return redirect('/not-allowed'); + } + } + ``` + + Check out the docs for more information on the newly available fields: https://docs.astro.build/en/core-concepts/endpoints/#server-endpoints-api-routes + +- [#4959](https://github.com/withastro/astro/pull/4959) [`0ea6187f9`](https://github.com/withastro/astro/commit/0ea6187f95f68d1a3ed98ef4d660e71206883bac) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Added support for updating TypeScript settings automatically when using `astro add` + + The `astro add` command will now automatically update your `tsconfig.json` with the proper TypeScript settings needed for the chosen frameworks. + + For instance, typing `astro add solid` will update your `tsconfig.json` with the following settings, per [Solid's TypeScript guide](https://www.solidjs.com/guides/typescript): + + ```json + { + "compilerOptions": { + "jsx": "preserve", + "jsxImportSource": "solid-js" + } + } + ``` + +- [#4947](https://github.com/withastro/astro/pull/4947) [`a5e3ecc80`](https://github.com/withastro/astro/commit/a5e3ecc8039c1e115ce5597362e18cd35d04e40b) Thanks [@JuanM04](https://github.com/JuanM04)! - - Added `isRestart` and `addWatchFile` to integration step `isRestart`. + + - Restart dev server automatically when tsconfig changes. + +- [#4986](https://github.com/withastro/astro/pull/4986) [`ebd364e39`](https://github.com/withastro/astro/commit/ebd364e392035b379dd00b8f2f15a4cc09ee88e6) Thanks [@bluwy](https://github.com/bluwy)! - ## Support passing a custom status code for Astro.redirect + + New in this minor is the ability to pass a status code to `Astro.redirect`. By default it uses `302` but now you can pass another code as the second argument: + + ```astro + --- + // This page was moved + return Astro.redirect('/posts/new-post-name', 301); + --- + ``` + +- [#5056](https://github.com/withastro/astro/pull/5056) [`e55af8a23`](https://github.com/withastro/astro/commit/e55af8a23233b6335f45b7a04b9d026990fb616c) Thanks [@matthewp](https://github.com/matthewp)! - # New build configuration + + The ability to customize SSR build configuration more granularly is now available in Astro. You can now customize the output folder for `server` (the server code for SSR), `client` (your client-side JavaScript and assets), and `serverEntry` (the name of the entrypoint server module). Here are the defaults: + + ```js + import { defineConfig } from 'astro/config'; + + export default defineConfig({ + output: 'server', + build: { + server: './dist/server/', + client: './dist/client/', + serverEntry: 'entry.mjs', + }, + }); + ``` + + These new configuration options are only supported in SSR mode and are ignored when building to SSG (a static site). + + ## Integration hook change + + The integration hook `astro:build:start` includes a param `buildConfig` which includes all of these same options. You can continue to use this param in Astro 1.x, but it is deprecated in favor of the new `build.config` options. All of the built-in adapters have been updated to the new format. If you have an integration that depends on this param we suggest upgrading to do this instead: + + ```js + export default function myIntegration() { + return { + name: 'my-integration', + hooks: { + 'astro:config:setup': ({ updateConfig }) => { + updateConfig({ + build: { + server: '...', + }, + }); + }, + }, + }; + } + ``` + +### Patch Changes + +- [#5057](https://github.com/withastro/astro/pull/5057) [`baf88ee9e`](https://github.com/withastro/astro/commit/baf88ee9e5e692a94981d7a696fbdcb4cd8ab2a6) Thanks [@bluwy](https://github.com/bluwy)! - Skip JSX tagging for export statements with source + +- [#5044](https://github.com/withastro/astro/pull/5044) [`44ea0c6d9`](https://github.com/withastro/astro/commit/44ea0c6d941a26a3c38fc6dc045a8a25215d154a) Thanks [@JuanM04](https://github.com/JuanM04)! - Upgrade Astro compiler to 0.27.1 + +- [#5059](https://github.com/withastro/astro/pull/5059) [`f7fcdfe62`](https://github.com/withastro/astro/commit/f7fcdfe6210b3cf08cad92c49b64adf169b9e744) Thanks [@bluwy](https://github.com/bluwy)! - Support strict dependency install for libraries with JSX + +- [#5047](https://github.com/withastro/astro/pull/5047) [`1e2799243`](https://github.com/withastro/astro/commit/1e27992437aa0371b8550acb3e3f79e62721a506) Thanks [@matthewp](https://github.com/matthewp)! - Update Astro.cookies.set types to allow booleans and numbers + + Note that booleans and numbers were already allowed, they just were not allowed by the type definitions. + +## 1.4.7 + +### Patch Changes + +- [#5035](https://github.com/withastro/astro/pull/5035) [`d7bfb144b`](https://github.com/withastro/astro/commit/d7bfb144ba1718d14664ec755adf6e2281a4ab71) Thanks [@AirBorne04](https://github.com/AirBorne04)! - preventing multiple doctype injection into html documents + +- [#5015](https://github.com/withastro/astro/pull/5015) [`b1964e9e1`](https://github.com/withastro/astro/commit/b1964e9e1b7f9178036e266b89d3c8b9cbffd1c6) Thanks [@matthewp](https://github.com/matthewp)! - Shared state in Preact components with signals + + This makes it possible to share client state between Preact islands via signals. + + For example, you can create a signals in an Astro component and then pass it to multiple islands: + + ```astro + --- + // Component Imports + import Counter from '../components/Counter'; + import { signal } from '@preact/signals'; + const count = signal(0); + --- + + + + ``` + +- [#5036](https://github.com/withastro/astro/pull/5036) [`38fdb4ca6`](https://github.com/withastro/astro/commit/38fdb4ca6f7c6af2fff69fe5bd60bdf2c9d7a6f1) Thanks [@matthewp](https://github.com/matthewp)! - New algorithm for shorter CSS bundle names + +## 1.4.6 + +### Patch Changes + +- [#5013](https://github.com/withastro/astro/pull/5013) [`ffbe4e71e`](https://github.com/withastro/astro/commit/ffbe4e71e36f496f6b9f4315c3145d238e46eb7e) Thanks [@matthewp](https://github.com/matthewp)! - Fixes getViteConfig from astro/config + +## 1.4.5 + +### Patch Changes + +- [#4981](https://github.com/withastro/astro/pull/4981) [`1f890b336`](https://github.com/withastro/astro/commit/1f890b3363d8ce232571612056b485c13983e5ef) Thanks [@matthewp](https://github.com/matthewp)! - Ensure dynamic tags have their slot instructions yielded + +- [#4886](https://github.com/withastro/astro/pull/4886) [`61d26f335`](https://github.com/withastro/astro/commit/61d26f3352bb701ccce04dece4e1879b007f0ccb) Thanks [@yuhang-dong](https://github.com/yuhang-dong)! - Fix: import.meta.env.BASE_URL will be '/' in client loaded component on dev mode + +- [#4973](https://github.com/withastro/astro/pull/4973) [`c733d4fb8`](https://github.com/withastro/astro/commit/c733d4fb81ca15efa3316e2b27d8341ddfcab8a3) Thanks [@bluwy](https://github.com/bluwy)! - Support Astro.slots.render for mdx + +- [#4918](https://github.com/withastro/astro/pull/4918) [`a6bb2694b`](https://github.com/withastro/astro/commit/a6bb2694b4f7307844995fbb4481a40993d09a0d) Thanks [@bluwy](https://github.com/bluwy)! - Refactor hydration path handling + +- [#4977](https://github.com/withastro/astro/pull/4977) [`4f73b98ae`](https://github.com/withastro/astro/commit/4f73b98ae04148412b38b98afa89a6120b600fd3) Thanks [@tony-sull](https://github.com/tony-sull)! - Fixes a bug that logged route cache warnings in `astro dev` + +- [#4887](https://github.com/withastro/astro/pull/4887) [`37cb2fc02`](https://github.com/withastro/astro/commit/37cb2fc02a03754d454b243579bc55e55cf72904) Thanks [@Calvin-LL](https://github.com/Calvin-LL)! - fix object styles not escaped + +- [#4990](https://github.com/withastro/astro/pull/4990) [`8f9791d84`](https://github.com/withastro/astro/commit/8f9791d840929bebc2b418e5ce3e48b541dc5744) Thanks [@matthewp](https://github.com/matthewp)! - Upgrade Astro compiler to 0.26.0 + +## 1.4.4 + +### Patch Changes + +- [#4967](https://github.com/withastro/astro/pull/4967) [`e6a881081`](https://github.com/withastro/astro/commit/e6a881081f456b83294e1d85179b20951d7677e9) Thanks [@matthewp](https://github.com/matthewp)! - Final perf fix from 1.3.0 regression + + A regression in rendering perf happened in 1.3.0. This is the final fix for the underlying issue. + +## 1.4.3 + +### Patch Changes + +- [#4956](https://github.com/withastro/astro/pull/4956) [`ee8dd424f`](https://github.com/withastro/astro/commit/ee8dd424fda90688ff3f3ed4e736fb6151d9b422) Thanks [@matthewp](https://github.com/matthewp)! - Fix perf regression in SSR + +- [#4952](https://github.com/withastro/astro/pull/4952) [`5bcd76e3a`](https://github.com/withastro/astro/commit/5bcd76e3ab3dfaab1d84d0af46d7e5a55a2b6ce2) Thanks [@bluwy](https://github.com/bluwy)! - Refactor ViteConfigWithSSR type + +## 1.4.2 + +### Patch Changes + +- [#4932](https://github.com/withastro/astro/pull/4932) [`9898088c0`](https://github.com/withastro/astro/commit/9898088c0a976da2cbf7607d92e5daf5db6a4536) Thanks [@matthewp](https://github.com/matthewp)! - Prevent hydration mismatch in streaming SSR + +- [#4939](https://github.com/withastro/astro/pull/4939) [`cf2bba1e4`](https://github.com/withastro/astro/commit/cf2bba1e4a32ff7d424cc1c4954d6328167af8d7) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix MDX error handling, preventing a memory leak + +## 1.4.1 + +### Patch Changes + +- [#4928](https://github.com/withastro/astro/pull/4928) [`7690849a8`](https://github.com/withastro/astro/commit/7690849a87a7e192e28119211b75446ddbbc2ae3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix module definition of Markdown and MDX files not being available outside Astro files + +## 1.4.0 + +### Minor Changes + +- [#4907](https://github.com/withastro/astro/pull/4907) [`01c1aaa00`](https://github.com/withastro/astro/commit/01c1aaa00397c7fdc7a3ef7fb0212eb43aad6238) Thanks [@matthewp](https://github.com/matthewp)! - Order Astro styles last, to override imported styles + + This fixes CSS ordering so that imported styles are placed _higher_ than page/component level styles. This means that if you do: + + ```astro + --- + import '../styles/global.css'; + --- + + + ``` + + The ` + { + result.data && + { + /* render the results */ + } + } ``` -- [#11134](https://github.com/withastro/astro/pull/11134) [`9042be0`](https://github.com/withastro/astro/commit/9042be049157ce859355f911565bc0c3d68f0aa1) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Improves the developer experience of the `500.astro` file by passing it a new `error` prop. + ## Migration - When an error is thrown, the special `src/pages/500.astro` page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page. + If you call actions directly from server code, update function calls to use the `Astro.callAction()` wrapper for pages and `context.callAction()` for endpoints: - ```astro + ```diff --- - // src/pages/500.astro - interface Props { - error: unknown; - } + import { actions } from 'astro:actions'; - const { error } = Astro.props; + - const result = await actions.searchPosts({ searchTerm: 'test' }); + + const result = await Astro.callAction(actions.searchPosts, { searchTerm: 'test' }); --- - -
{error instanceof Error ? error.message : 'Unknown error'}
``` - If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development. + If you deploy with Cloudflare and added [the `nodejs_compat` or `nodejs_als` flags](https://developers.cloudflare.com/workers/runtime-apis/nodejs) for Actions, we recommend removing these: -### Patch Changes + ```diff + compatibility_flags = [ + - "nodejs_compat", + - "nodejs_als" + ] + ``` -- [#11280](https://github.com/withastro/astro/pull/11280) [`fd3645f`](https://github.com/withastro/astro/commit/fd3645fe8364ec5e280b6802d1468867890d463c) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that prevented cookies from being set when using experimental rewrites + You can also remove `node:async_hooks` from the `vite.ssr.external` option in your `astro.config` file: -- [#11275](https://github.com/withastro/astro/pull/11275) [`bab700d`](https://github.com/withastro/astro/commit/bab700d69085b1de8f03fc1b0b31651f709cbfe3) Thanks [@syhily](https://github.com/syhily)! - Drop duplicated brackets in data collections schema generation. + ```diff + // astro.config.mjs + import { defineConfig } from 'astro/config'; -- [#11272](https://github.com/withastro/astro/pull/11272) [`ea987d7`](https://github.com/withastro/astro/commit/ea987d7da589ead9aa4b550f167f5e2f6c939d2e) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where rewriting `/` would cause an issue, when `trailingSlash` was set to `"never"`. + export default defineConfig({ + - vite: { + - ssr: { + - external: ["node:async_hooks"] + - } + - } + }) + ``` -- [#11272](https://github.com/withastro/astro/pull/11272) [`ea987d7`](https://github.com/withastro/astro/commit/ea987d7da589ead9aa4b550f167f5e2f6c939d2e) Thanks [@ematipico](https://github.com/ematipico)! - Reverts a logic where it wasn't possible to rewrite `/404` in static mode. It's **now possible** again +## 4.13.0 -- [#11264](https://github.com/withastro/astro/pull/11264) [`5a9c9a6`](https://github.com/withastro/astro/commit/5a9c9a60e7c32aa461b86b5bc667cb955e23d4d9) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes type generation for empty content collections +### Minor Changes -- [#11279](https://github.com/withastro/astro/pull/11279) [`9a08d74`](https://github.com/withastro/astro/commit/9a08d74bc00ae2c3bc254f99580a22ce4df1d002) Thanks [@ascorbic](https://github.com/ascorbic)! - Improves type-checking and error handling to catch case where an image import is passed directly to `getImage()` +- [#11507](https://github.com/withastro/astro/pull/11507) [`a62345f`](https://github.com/withastro/astro/commit/a62345fd182ae4886d586c8406ed8f3e5f942730) Thanks [@ematipico](https://github.com/ematipico)! - Adds color-coding to the console output during the build to highlight slow pages. -- [#11292](https://github.com/withastro/astro/pull/11292) [`7f8f347`](https://github.com/withastro/astro/commit/7f8f34799528ed0b2011e1ea273bd0636f6e767d) Thanks [@jdtjenkins](https://github.com/jdtjenkins)! - Fixes a case where `defineAction` autocomplete for the `accept` prop would not show `"form"` as a possible value - -- [#11273](https://github.com/withastro/astro/pull/11273) [`cb4d078`](https://github.com/withastro/astro/commit/cb4d07819f0dbdfd94bc4f084edf7720ada01323) Thanks [@ascorbic](https://github.com/ascorbic)! - Corrects an inconsistency in dev where middleware would run for prerendered 404 routes. - Middleware is not run for prerendered 404 routes in production, so this was incorrect. - -- [#11284](https://github.com/withastro/astro/pull/11284) [`f4b029b`](https://github.com/withastro/astro/commit/f4b029b08264268c68fc81ea25b264e81f47e683) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes an issue that would break `Astro.request.url` and `Astro.request.headers` in `astro dev` if HTTP/2 was enabled. - - HTTP/2 is now enabled by default in `astro dev` if `https` is configured in the Vite config. - -## 4.10.3 - -### Patch Changes + Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention. -- [#11213](https://github.com/withastro/astro/pull/11213) [`94ac7ef`](https://github.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Removes the `PUBLIC_` prefix constraint for `astro:env` public variables +- [#11379](https://github.com/withastro/astro/pull/11379) [`e5e2d3e`](https://github.com/withastro/astro/commit/e5e2d3ed3076f10b4645f011b13888d5fa16e92e) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - The `experimental.contentCollectionJsonSchema` feature introduced behind a flag in [v4.5.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#450) is no longer experimental and is available for general use. -- [#11213](https://github.com/withastro/astro/pull/11213) [`94ac7ef`](https://github.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** + If you are working with collections of type `data`, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in `src/content/config.ts` using a library called [`zod-to-json-schema`](https://github.com/StefanTerdell/zod-to-json-schema). - Server secrets specified in the schema must now be imported from `astro:env/server`. Using `getSecret()` is no longer required to use these environment variables in your schema: + This feature requires you to manually set your schema's file path as the value for `$schema` in each data entry file of the collection: - ```diff - - import { getSecret } from 'astro:env/server' - - const API_SECRET = getSecret("API_SECRET") - + import { API_SECRET } from 'astro:env/server' + ```json title="src/content/authors/armand.json" ins={2} + { + "$schema": "../../../.astro/collections/authors.schema.json", + "name": "Armand", + "skills": ["Astro", "Starlight"] + } ``` - Note that using `getSecret()` with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema. - -- [#11234](https://github.com/withastro/astro/pull/11234) [`4385bf7`](https://github.com/withastro/astro/commit/4385bf7a4dc9c65bff53a30c660f7a909fcabfc9) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new function called `addServerRenderer` to the Container API. Use this function to manually store renderers inside the instance of your container. - - This new function should be preferred when using the Container API in environments like on-demand pages: + Alternatively, you can set this value in your editor settings. For example, to set this value in [VSCode's `json.schemas` setting](https://code.visualstudio.com/docs/languages/json#_json-schemas-and-settings), provide the path of files to match and the location of your JSON schema: - ```ts - import type { APIRoute } from 'astro'; - import { experimental_AstroContainer } from 'astro/container'; - import reactRenderer from '@astrojs/react/server.js'; - import vueRenderer from '@astrojs/vue/server.js'; - import ReactComponent from '../components/button.jsx'; - import VueComponent from '../components/button.vue'; + ```json + { + "json.schemas": [ + { + "fileMatch": ["/src/content/authors/**"], + "url": "./.astro/collections/authors.schema.json" + } + ] + } + ``` - // MDX runtime is contained inside the Astro core - import mdxRenderer from 'astro/jsx/server.js'; + If you were previously using this feature, please remove the experimental flag from your Astro config: - // In case you need to import a custom renderer - import customRenderer from '../renderers/customRenderer.js'; + ```diff + import { defineConfig } from 'astro' - export const GET: APIRoute = async (ctx) => { - const container = await experimental_AstroContainer.create(); - container.addServerRenderer({ renderer: reactRenderer }); - container.addServerRenderer({ renderer: vueRenderer }); - container.addServerRenderer({ renderer: customRenderer }); - // You can pass a custom name too - container.addServerRenderer({ - name: 'customRenderer', - renderer: customRenderer, - }); - const vueComponent = await container.renderToString(VueComponent); - return await container.renderToResponse(Component); - }; + export default defineConfig({ + - experimental: { + - contentCollectionJsonSchema: true + - } + }) ``` -- [#11249](https://github.com/withastro/astro/pull/11249) [`de60c69`](https://github.com/withastro/astro/commit/de60c69aa06c41f76a5510cc1d0bee4c8a5326a5) Thanks [@markgaze](https://github.com/markgaze)! - Fixes a performance issue with JSON schema generation + If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so. -- [#11242](https://github.com/withastro/astro/pull/11242) [`e4fc2a0`](https://github.com/withastro/astro/commit/e4fc2a0bafb4723566552d0c5954b25447890f51) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where the virtual module `astro:container` wasn't resolved + Please see [the content collections guide](https://docs.astro.build/en/guides/content-collections/#enabling-json-schema-generation) for more about this feature. -- [#11236](https://github.com/withastro/astro/pull/11236) [`39bc3a5`](https://github.com/withastro/astro/commit/39bc3a5e8161232d6fdc6cc52b1f246083966d8e) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a case where symlinked content collection directories were not correctly resolved +- [#11542](https://github.com/withastro/astro/pull/11542) [`45ad326`](https://github.com/withastro/astro/commit/45ad326932971b44630a32d9092c9505f24f42f8) Thanks [@ematipico](https://github.com/ematipico)! - The `experimental.rewriting` feature introduced behind a flag in [v4.8.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#480) is no longer experimental and is available for general use. -- [#11258](https://github.com/withastro/astro/pull/11258) [`d996db6`](https://github.com/withastro/astro/commit/d996db6f0bf361ebd84b23d022db7bb10fb316e6) Thanks [@ascorbic](https://github.com/ascorbic)! - Adds a new error `RewriteWithBodyUsed` that throws when `Astro.rewrite` is used after the request body has already been read. + `Astro.rewrite()` and `context.rewrite()` allow you to render a different page without changing the URL in the browser. Unlike using a redirect, your visitor is kept on the original page they visited. -- [#11243](https://github.com/withastro/astro/pull/11243) [`ba2b14c`](https://github.com/withastro/astro/commit/ba2b14cc28bd219c241313cdf142b736e7442014) Thanks [@V3RON](https://github.com/V3RON)! - Fixes a prerendering issue for libraries in `node_modules` when a folder with an underscore is in the path. + Rewrites can be useful for showing the same content at multiple paths (e.g. /products/shoes/men/ and /products/men/shoes/) without needing to maintain two identical source files. -- [#11244](https://github.com/withastro/astro/pull/11244) [`d07d2f7`](https://github.com/withastro/astro/commit/d07d2f7ac9d87af907beaca700ba4116dc1d6f37) Thanks [@ematipico](https://github.com/ematipico)! - Improves the developer experience of the custom `500.astro` page in development mode. + Rewrites are supported in Astro pages, endpoints, and middleware. - Before, in development, an error thrown during the rendering phase would display the default error overlay, even when users had the `500.astro` page. + Return `Astro.rewrite()` in the frontmatter of a `.astro` page component to display a different page's content, such as fallback localized content: - Now, the development server will display the `500.astro` and the original error is logged in the console. + ```astro + --- + // src/pages/es-cu/articles/introduction.astro + return Astro.rewrite('/es/articles/introduction'); + --- + ``` -- [#11240](https://github.com/withastro/astro/pull/11240) [`2851b0a`](https://github.com/withastro/astro/commit/2851b0aa2e2abe80ea603b53c67770e94980a8d3) Thanks [@ascorbic](https://github.com/ascorbic)! - Ignores query strings in module identifiers when matching ".astro" file extensions in Vite plugin + Use `context.rewrite()` in endpoints, for example to reroute to a different page: -- [#11245](https://github.com/withastro/astro/pull/11245) [`e22be22`](https://github.com/withastro/astro/commit/e22be22e5729e60220726e92b52d2833c937fd1c) Thanks [@bluwy](https://github.com/bluwy)! - Refactors prerendering chunk handling to correctly remove unused code during the SSR runtime + ```js + // src/pages/api.js + export function GET(context) { + if (!context.locals.allowed) { + return context.rewrite('/'); + } + } + ``` -## 4.10.2 + The middleware `next()` function now accepts a parameter with the same type as the `rewrite()` function. For example, with `next("/")`, you can call the next middleware function with a new `Request`. -### Patch Changes + ```js + // src/middleware.js + export function onRequest(context, next) { + if (!context.cookies.get('allowed')) { + return next('/'); // new signature + } + return next(); + } + ``` -- [#11231](https://github.com/withastro/astro/pull/11231) [`58d7dbb`](https://github.com/withastro/astro/commit/58d7dbb5e0cabea1ac7a35af5b46685fce50d723) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression for `getViteConfig`, where the inline config wasn't merged in the final config. + If you were previously using this feature, please remove the experimental flag from your Astro config: -- [#11228](https://github.com/withastro/astro/pull/11228) [`1e293a1`](https://github.com/withastro/astro/commit/1e293a1b819024f16bfe482f272df0678cdd7874) Thanks [@ascorbic](https://github.com/ascorbic)! - Updates `getCollection()` to always return a cloned array + ```diff + // astro.config.mjs + export default defineConfig({ + - experimental: { + - rewriting: true + - } + }) + ``` -- [#11207](https://github.com/withastro/astro/pull/11207) [`7d9aac3`](https://github.com/withastro/astro/commit/7d9aac376c4b8844917901f7f566f7259d7f66c8) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue in the rewriting logic where old data was not purged during the rewrite flow. This caused some false positives when checking the validity of URL path names during the rendering phase. + If you have been waiting for stabilization before using rewrites in Astro, you can now do so. -- [#11189](https://github.com/withastro/astro/pull/11189) [`75a8fe7`](https://github.com/withastro/astro/commit/75a8fe7e72b95f20c36f034de2b51b6a9550e27e) Thanks [@ematipico](https://github.com/ematipico)! - Improve error message when using `getLocaleByPath` on path that doesn't contain any locales. + Please see [the routing guide in docs](https://docs.astro.build/en/guides/routing/#rewrites) for more about using this feature. -- [#11195](https://github.com/withastro/astro/pull/11195) [`0a6ab6f`](https://github.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds support for enums to `astro:env` +## 4.12.3 - You can now call `envField.enum`: +### Patch Changes - ```js - import { defineConfig, envField } from 'astro/config'; +- [#11509](https://github.com/withastro/astro/pull/11509) [`dfbca06`](https://github.com/withastro/astro/commit/dfbca06dda674c64c7010db2f4de951496a1e631) Thanks [@bluwy](https://github.com/bluwy)! - Excludes hoisted scripts and styles from Astro components imported with `?url` or `?raw` - export default defineConfig({ - experimental: { - env: { - schema: { - API_VERSION: envField.enum({ - context: 'server', - access: 'secret', - values: ['v1', 'v2'], - }), - }, - }, - }, - }); - ``` +- [#11561](https://github.com/withastro/astro/pull/11561) [`904f1e5`](https://github.com/withastro/astro/commit/904f1e535aeb7a14ba7ce07c3130e25f3e708266) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Uses the correct pageSize default in `page.size` JSDoc comment -- [#11210](https://github.com/withastro/astro/pull/11210) [`66fc028`](https://github.com/withastro/astro/commit/66fc0283d3f1d1a4f17d7db65ca3521a01fb5bec) Thanks [@matthewp](https://github.com/matthewp)! - Close the iterator only after rendering is complete +- [#11571](https://github.com/withastro/astro/pull/11571) [`1c3265a`](https://github.com/withastro/astro/commit/1c3265a8c9c0b1b1bd597f756b63463146bacc3a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - **BREAKING CHANGE to the experimental Actions API only.** Install the latest `@astrojs/react` integration as well if you're using React 19 features. -- [#11195](https://github.com/withastro/astro/pull/11195) [`0a6ab6f`](https://github.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds additional validation options to `astro:env` + Make `.safe()` the default return value for actions. This means `{ data, error }` will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the `.orThrow()` modifier. - `astro:env` schema datatypes `string` and `number` now have new optional validation rules: + ```ts + import { actions } from 'astro:actions'; - ```js - import { defineConfig, envField } from 'astro/config'; + // Before + const { data, error } = await actions.like.safe(); + // After + const { data, error } = await actions.like(); - export default defineConfig({ - experimental: { - env: { - schema: { - FOO: envField.string({ - // ... - max: 32, - min: 3, - length: 12, - url: true, - includes: 'foo', - startsWith: 'bar', - endsWith: 'baz', - }), - BAR: envField.number({ - // ... - gt: 2, - min: 3, - lt: 10, - max: 9, - int: true, - }), - }, - }, - }, - }); + // Before + const newLikes = await actions.like(); + // After + const newLikes = await actions.like.orThrow(); ``` -- [#11211](https://github.com/withastro/astro/pull/11211) [`97724da`](https://github.com/withastro/astro/commit/97724da93ed7b1db19632c0cdb4b3aab1ff84812) Thanks [@matthewp](https://github.com/matthewp)! - Let middleware handle the original request URL - -- [#10607](https://github.com/withastro/astro/pull/10607) [`7327c6a`](https://github.com/withastro/astro/commit/7327c6acb197e1f2ea6cf94cfbc5700bc755f982) Thanks [@frankbits](https://github.com/frankbits)! - Fixes an issue where a leading slash created incorrect conflict resolution between pages generated from static routes and catch-all dynamic routes + ## Migration -## 4.10.1 + To migrate your existing action calls: -### Patch Changes + - Remove `.safe` from existing _safe_ action calls + - Add `.orThrow` to existing _unsafe_ action calls -- [#11198](https://github.com/withastro/astro/pull/11198) [`8b9a499`](https://github.com/withastro/astro/commit/8b9a499d3733e9d0fc6a0bd067ece19bd36f4726) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where `astro:env` `getSecret` would not retrieve environment variables properly in dev and build modes +- [#11546](https://github.com/withastro/astro/pull/11546) [`7f26de9`](https://github.com/withastro/astro/commit/7f26de906e87f1e8973a1f84399f23e36e506bb3) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Remove "SSR Only" mention in `Astro.redirect` inline documentation and update reference link. -- [#11206](https://github.com/withastro/astro/pull/11206) [`734b98f`](https://github.com/withastro/astro/commit/734b98fecf0212cd76be3c935a49f84a9a7dab34) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** +- [#11525](https://github.com/withastro/astro/pull/11525) [`8068131`](https://github.com/withastro/astro/commit/80681318c6cb0f612fcb5188933fdd20a8f474a3) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where the build was failing when `experimental.actions` was enabled, an adapter was in use, and there were not actions inside the user code base. - Updates the adapter `astro:env` entrypoint from `astro:env/setup` to `astro/env/setup` +- [#11574](https://github.com/withastro/astro/pull/11574) [`e3f29d4`](https://github.com/withastro/astro/commit/e3f29d416a2e0a0b5328ae1075b12575260dddfd) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes line with the error not being properly highlighted in the error overlay -- [#11205](https://github.com/withastro/astro/pull/11205) [`8c45391`](https://github.com/withastro/astro/commit/8c4539145f0b6a735b65852b2f2b1a7e9f5a9c3f) Thanks [@Nin3lee](https://github.com/Nin3lee)! - Fixes a typo in the config reference +- [#11570](https://github.com/withastro/astro/pull/11570) [`84189b6`](https://github.com/withastro/astro/commit/84189b6511dc2a14bcfe608696f56a64c2046f39) Thanks [@bholmesdev](https://github.com/bholmesdev)! - **BREAKING CHANGE to the experimental Actions API only.** Install the latest `@astrojs/react` integration as well if you're using React 19 features. -## 4.10.0 + Updates the Astro Actions fallback to support `action={actions.name}` instead of using `getActionProps().` This will submit a form to the server in zero-JS scenarios using a search parameter: -### Minor Changes + ```astro + --- + import { actions } from 'astro:actions'; + --- -- [#10974](https://github.com/withastro/astro/pull/10974) [`2668ef9`](https://github.com/withastro/astro/commit/2668ef984104574f25f29ef75e2572a0745d1666) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds experimental support for the `astro:env` API. +
+ + +
+ ``` - The `astro:env` API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate `/client` or `/server` module: + You may also construct form action URLs using string concatenation, or by using the `URL()` constructor, with the an action's `.queryString` property: ```astro --- - import { PUBLIC_APP_ID } from 'astro:env/client'; - import { PUBLIC_API_URL, getSecret } from 'astro:env/server'; - const API_TOKEN = getSecret('API_TOKEN'); + import { actions } from 'astro:actions'; - const data = await fetch(`${PUBLIC_API_URL}/users`, { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - Authorization: `Bearer ${API_TOKEN}`, - }, - body: JSON.stringify({ appId: PUBLIC_APP_ID }), - }); + const confirmationUrl = new URL('/confirmation', Astro.url); + confirmationUrl.search = actions.queryString; --- + +
+ +
``` - To define the data type and properties of your environment variables, declare a schema in your Astro config in `experimental.env.schema`. The `envField` helper allows you define your variable as a string, number, or boolean and pass properties in an object: + ## Migration - ```js - // astro.config.mjs - import { defineConfig, envField } from 'astro/config'; - - export default defineConfig({ - experimental: { - env: { - schema: { - PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }), - PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }), - API_SECRET: envField.string({ context: 'server', access: 'secret' }), - }, - }, - }, - }); - ``` - - There are three kinds of environment variables, determined by the combination of `context` (`client` or `server`) and `access` (`private` or `public`) settings defined in your [`env.schema`](#experimentalenvschema): - - - **Public client variables**: These variables end up in both your final client and server bundles, and can be accessed from both client and server through the `astro:env/client` module: - - ```js - import { PUBLIC_API_URL } from 'astro:env/client'; - ``` - - - **Public server variables**: These variables end up in your final server bundle and can be accessed on the server through the `astro:env/server` module: - - ```js - import { PUBLIC_PORT } from 'astro:env/server'; - ``` - - - **Secret server variables**: These variables are not part of your final bundle and can be accessed on the server through the `getSecret()` helper function available from the `astro:env/server` module: - - ```js - import { getSecret } from 'astro:env/server'; - - const API_SECRET = getSecret('API_SECRET'); // typed - const SECRET_NOT_IN_SCHEMA = getSecret('SECRET_NOT_IN_SCHEMA'); // string | undefined - ``` - - **Note:** Secret client variables are not supported because there is no safe way to send this data to the client. Therefore, it is not possible to configure both `context: "client"` and `access: "secret"` in your schema. - - To learn more, check out [the documentation](https://docs.astro.build/en/reference/configuration-reference/#experimentalenv). - -### Patch Changes - -- [#11192](https://github.com/withastro/astro/pull/11192) [`58b10a0`](https://github.com/withastro/astro/commit/58b10a073192030a251cff8ad706ab5b015180c9) Thanks [@liruifengv](https://github.com/liruifengv)! - Improves DX by throwing the original `AstroUserError` when an error is thrown inside a `.mdx` file. - -- [#11136](https://github.com/withastro/astro/pull/11136) [`35ef53c`](https://github.com/withastro/astro/commit/35ef53c0897c0d360efc086a71c5f4406721d2fe) Thanks [@ematipico](https://github.com/ematipico)! - Errors that are emitted during a rewrite are now bubbled up and shown to the user. A 404 response is not returned anymore. - -- [#11144](https://github.com/withastro/astro/pull/11144) [`803dd80`](https://github.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@ematipico](https://github.com/ematipico)! - The integration now exposes a function called `getContainerRenderer`, that can be used inside the Container APIs to load the relative renderer. - - ```js - import { experimental_AstroContainer as AstroContainer } from 'astro/container'; - import ReactWrapper from '../src/components/ReactWrapper.astro'; - import { loadRenderers } from 'astro:container'; - import { getContainerRenderer } from '@astrojs/react'; - - test('ReactWrapper with react renderer', async () => { - const renderers = await loadRenderers([getContainerRenderer()]); - const container = await AstroContainer.create({ - renderers, - }); - const result = await container.renderToString(ReactWrapper); - - expect(result).toContain('Counter'); - expect(result).toContain('Count: 5'); - }); - ``` - -- [#11144](https://github.com/withastro/astro/pull/11144) [`803dd80`](https://github.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@ematipico](https://github.com/ematipico)! - **BREAKING CHANGE to the experimental Container API only** - - Changes the **type** of the `renderers` option of the `AstroContainer::create` function and adds a dedicated function `loadRenderers()` to load the rendering scripts from renderer integration packages (`@astrojs/react`, `@astrojs/preact`, `@astrojs/solid-js`, `@astrojs/svelte`, `@astrojs/vue`, `@astrojs/lit`, and `@astrojs/mdx`). - - You no longer need to know the individual, direct file paths to the client and server rendering scripts for each renderer integration package. Now, there is a dedicated function to load the renderer from each package, which is available from `getContainerRenderer()`: - - ```diff - import { experimental_AstroContainer as AstroContainer } from 'astro/container'; - import ReactWrapper from '../src/components/ReactWrapper.astro'; - import { loadRenderers } from "astro:container"; - import { getContainerRenderer } from "@astrojs/react"; - - test('ReactWrapper with react renderer', async () => { - + const renderers = await loadRenderers([getContainerRenderer()]) - - const renderers = [ - - { - - name: '@astrojs/react', - - clientEntrypoint: '@astrojs/react/client.js', - - serverEntrypoint: '@astrojs/react/server.js', - - }, - - ]; - const container = await AstroContainer.create({ - renderers, - }); - const result = await container.renderToString(ReactWrapper); - - expect(result).toContain('Counter'); - expect(result).toContain('Count: 5'); - }); - ``` - - The new `loadRenderers()` helper function is available from `astro:container`, a virtual module that can be used when running the Astro container inside `vite`. - -- [#11136](https://github.com/withastro/astro/pull/11136) [`35ef53c`](https://github.com/withastro/astro/commit/35ef53c0897c0d360efc086a71c5f4406721d2fe) Thanks [@ematipico](https://github.com/ematipico)! - It's not possible anymore to use `Astro.rewrite("/404")` inside static pages. This isn't counterproductive because Astro will end-up emitting a page that contains the HTML of 404 error page. - - It's still possible to use `Astro.rewrite("/404")` inside on-demand pages, or pages that opt-out from prerendering. - -- [#11191](https://github.com/withastro/astro/pull/11191) [`6e29a17`](https://github.com/withastro/astro/commit/6e29a172f153d15fac07320488fae01dece71748) Thanks [@matthewp](https://github.com/matthewp)! - Fixes a case where `Astro.url` would be incorrect when having `build.format` set to `'preserve'` in the Astro config - -- [#11182](https://github.com/withastro/astro/pull/11182) [`40b0b4d`](https://github.com/withastro/astro/commit/40b0b4d1e4ef1aa95d5e9011652444b855ab0b9c) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where `Astro.rewrite` wasn't carrying over the body of a `Request` in on-demand pages. - -- [#11194](https://github.com/withastro/astro/pull/11194) [`97fbe93`](https://github.com/withastro/astro/commit/97fbe938a9b07d52d61011da4bd5a8b5ad85a700) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the function `getViteConfig` wasn't returning the correct merged Astro configuration - -## 4.9.3 - -### Patch Changes - -- [#11171](https://github.com/withastro/astro/pull/11171) [`ff8004f`](https://github.com/withastro/astro/commit/ff8004f6a7b2aab4c6ac367f13744a341c3c5462) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Guard globalThis.astroAsset usage in proxy code to avoid errors in wonky situations - -- [#11178](https://github.com/withastro/astro/pull/11178) [`1734c49`](https://github.com/withastro/astro/commit/1734c49f516ff7d778d6724a0db6d39649921b4b) Thanks [@theoephraim](https://github.com/theoephraim)! - Improves `isPromise` utility to check the presence of `then` on an object before trying to access it - which can cause undesired side-effects on Proxy objects - -- [#11183](https://github.com/withastro/astro/pull/11183) [`3cfa2ac`](https://github.com/withastro/astro/commit/3cfa2ac7e51d7bea96980403c393f9bcda1e9375) Thanks [@66Leo66](https://github.com/66Leo66)! - Suggest `pnpm dlx` instead of `pnpx` in update check. - -- [#11147](https://github.com/withastro/astro/pull/11147) [`2d93902`](https://github.com/withastro/astro/commit/2d93902f4c51dcc62b077b0546ead688e6f32c63) Thanks [@kitschpatrol](https://github.com/kitschpatrol)! - Fixes invalid MIME types in Picture source elements for jpg and svg extensions, which was preventing otherwise valid source variations from being shown by the browser - -- [#11141](https://github.com/withastro/astro/pull/11141) [`19df89f`](https://github.com/withastro/astro/commit/19df89f87c74205ebc76aeac43ca20b00694acec) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an internal error that prevented the `AstroContainer` to render the `Content` component. - - You can now write code similar to the following to render content collections: - - ```js - const entry = await getEntry(collection, slug); - const { Content } = await entry.render(); - const content = await container.renderToString(Content); - ``` - -- [#11170](https://github.com/withastro/astro/pull/11170) [`ba20c71`](https://github.com/withastro/astro/commit/ba20c718a4ccd1009bdf81f8265956bff1d19d05) Thanks [@matthewp](https://github.com/matthewp)! - Retain client scripts in content cache - -## 4.9.2 - -### Patch Changes - -- [#11138](https://github.com/withastro/astro/pull/11138) [`98e0372`](https://github.com/withastro/astro/commit/98e0372cfd47a3e025be2ac68d1e9ebf06cf548b) Thanks [@ematipico](https://github.com/ematipico)! - You can now pass `props` when rendering a component using the Container APIs: - - ```js - import { experimental_AstroContainer as AstroContainer } from 'astro/container'; - import Card from '../src/components/Card.astro'; - - const container = await AstroContainer.create(); - const result = await container.renderToString(Card, { - props: { - someState: true, - }, - }); - ``` - -## 4.9.1 - -### Patch Changes - -- [#11129](https://github.com/withastro/astro/pull/11129) [`4bb9269`](https://github.com/withastro/astro/commit/4bb926908d9a7ee134701c3e5a1b5e6ea688f843) Thanks [@matthewp](https://github.com/matthewp)! - Prevent errors from adapters when i18n domains is not used - -## 4.9.0 - -### Minor Changes - -- [#11051](https://github.com/withastro/astro/pull/11051) [`12a1bcc`](https://github.com/withastro/astro/commit/12a1bccc818af292cdd2a8ed0f3e3c042b9819b4) Thanks [@ematipico](https://github.com/ematipico)! - Introduces an experimental Container API to render `.astro` components in isolation. - - This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response: - - - `create()`: creates a new instance of the container. - - `renderToString()`: renders a component and return a string. - - `renderToResponse()`: renders a component and returns the `Response` emitted by the rendering phase. - - The first supported use of this new API is to enable unit testing. For example, with `vitest`, you can create a container to render your component with test data and check the result: - - ```js - import { experimental_AstroContainer as AstroContainer } from 'astro/container'; - import { expect, test } from 'vitest'; - import Card from '../src/components/Card.astro'; - - test('Card with slots', async () => { - const container = await AstroContainer.create(); - const result = await container.renderToString(Card, { - slots: { - default: 'Card content', - }, - }); - - expect(result).toContain('This is a card'); - expect(result).toContain('Card content'); - }); - ``` - - For a complete reference, see the [Container API docs](https://docs.astro.build/en/reference/container-reference/). - - For a feature overview, and to give feedback on this experimental API, see the [Container API roadmap discussion](https://github.com/withastro/roadmap/pull/916). - -- [#11021](https://github.com/withastro/astro/pull/11021) [`2d4c8fa`](https://github.com/withastro/astro/commit/2d4c8faa56a64d963fe7847b5be2d7a59e12ed5b) Thanks [@ematipico](https://github.com/ematipico)! - The CSRF protection feature that was introduced behind a flag in [v4.6.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#460) is no longer experimental and is available for general use. - - To enable the stable version, add the new top-level `security` option in `astro.config.mjs`. If you were previously using the experimental version of this feature, also delete the experimental flag: - - ```diff - export default defineConfig({ - - experimental: { - - security: { - - csrfProtection: { - - origin: true - - } - - } - - }, - + security: { - + checkOrigin: true - + } - }) - ``` - - Enabling this setting performs a check that the `"origin"` header, automatically passed by all modern browsers, matches the URL sent by each Request. - - This check is executed only for pages rendered on demand, and only for the requests `POST`, `PATCH`, `DELETE` and `PUT` with one of the following `"content-type"` headers: `'application/x-www-form-urlencoded'`, `'multipart/form-data'`, `'text/plain'`. - - If the `"origin"` header doesn't match the pathname of the request, Astro will return a 403 status code and won't render the page. - - For more information, see the [`security` configuration docs](https://docs.astro.build/en/reference/configuration-reference/#security). - -- [#11022](https://github.com/withastro/astro/pull/11022) [`be68ab4`](https://github.com/withastro/astro/commit/be68ab47e236476ba980cbf74daf85f27cd866f4) Thanks [@ematipico](https://github.com/ematipico)! - The `i18nDomains` routing feature introduced behind a flag in [v3.4.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#430) is no longer experimental and is available for general use. - - This routing option allows you to configure different domains for individual locales in entirely server-rendered projects using the [@astrojs/node](https://docs.astro.build/en/guides/integrations-guide/node/) or [@astrojs/vercel](https://docs.astro.build/en/guides/integrations-guide/vercel/) adapter with a `site` configured. - - If you were using this feature, please remove the experimental flag from your Astro config: - - ```diff - import { defineConfig } from 'astro' - - export default defineConfig({ - - experimental: { - - i18nDomains: true, - - } - }) - ``` - - If you have been waiting for stabilization before using this routing option, you can now do so. - - Please see [the internationalization docs](https://docs.astro.build/en/guides/internationalization/#domains) for more about this feature. - -- [#11071](https://github.com/withastro/astro/pull/11071) [`8ca7c73`](https://github.com/withastro/astro/commit/8ca7c731dea894e77f84b314ebe3a141d5daa918) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds two new functions `experimental_getActionState()` and `experimental_withState()` to support [the React 19 `useActionState()` hook](https://react.dev/reference/react/useActionState) when using Astro Actions. This introduces progressive enhancement when calling an Action with the `withState()` utility. - - This example calls a `like` action that accepts a `postId` and returns the number of likes. Pass this action to the `experimental_withState()` function to apply progressive enhancement info, and apply to `useActionState()` to track the result: - - ```tsx - import { actions } from 'astro:actions'; - import { experimental_withState } from '@astrojs/react/actions'; - - export function Like({ postId }: { postId: string }) { - const [state, action, pending] = useActionState( - experimental_withState(actions.like), - 0, // initial likes - ); - - return ( -
- - -
- ); - } - ``` - - You can also access the state stored by `useActionState()` from your action `handler`. Call `experimental_getActionState()` with the API context, and optionally apply a type to the result: - - ```ts - import { defineAction, z } from 'astro:actions'; - import { experimental_getActionState } from '@astrojs/react/actions'; - - export const server = { - like: defineAction({ - input: z.object({ - postId: z.string(), - }), - handler: async ({ postId }, ctx) => { - const currentLikes = experimental_getActionState(ctx); - // write to database - return currentLikes + 1; - }, - }), - }; - ``` - -- [#11101](https://github.com/withastro/astro/pull/11101) [`a6916e4`](https://github.com/withastro/astro/commit/a6916e4402bf5b7d74bab784a54eba63fd1d1179) Thanks [@linguofeng](https://github.com/linguofeng)! - Updates Astro's code for adapters to use the header `x-forwarded-for` to initialize the `clientAddress`. - - To take advantage of the new change, integration authors must upgrade the version of Astro in their adapter `peerDependencies` to `4.9.0`. - -- [#11071](https://github.com/withastro/astro/pull/11071) [`8ca7c73`](https://github.com/withastro/astro/commit/8ca7c731dea894e77f84b314ebe3a141d5daa918) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds compatibility for Astro Actions in the React 19 beta. Actions can be passed to a `form action` prop directly, and Astro will automatically add metadata for progressive enhancement. - - ```tsx - import { actions } from 'astro:actions'; - - function Like() { - return ( -
- {/* auto-inserts hidden input for progressive enhancement */} - -
- ); - } - ``` - -### Patch Changes - -- [#11088](https://github.com/withastro/astro/pull/11088) [`9566fa0`](https://github.com/withastro/astro/commit/9566fa08608be766df355be17d72a39ea7b99ed0) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Allow actions to be called on the server. This allows you to call actions as utility functions in your Astro frontmatter, endpoints, and server-side UI components. - - Import and call directly from `astro:actions` as you would for client actions: - - ```astro - --- - // src/pages/blog/[postId].astro - import { actions } from 'astro:actions'; - - await actions.like({ postId: Astro.params.postId }); - --- - ``` - -- [#11112](https://github.com/withastro/astro/pull/11112) [`29a8650`](https://github.com/withastro/astro/commit/29a8650375053cd5690a32bed4140f0fef11c705) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Deprecate the `getApiContext()` function. API Context can now be accessed from the second parameter to your Action `handler()`: - - ```diff - // src/actions/index.ts - import { - defineAction, - z, - - getApiContext, - } from 'astro:actions'; - - export const server = { - login: defineAction({ - input: z.object({ id: z.string }), - + handler(input, context) { - const user = context.locals.auth(input.id); - return user; - } - }), - } - ``` - -## 4.8.7 - -### Patch Changes - -- [#11073](https://github.com/withastro/astro/pull/11073) [`f5c8fee`](https://github.com/withastro/astro/commit/f5c8fee76c5e688ef23c18be79705b18f1750415) Thanks [@matthewp](https://github.com/matthewp)! - Prevent cache content from being left in dist folder - - When `contentCollectionsCache` is enabled temporary cached content is copied into the `outDir` for processing. This fixes it so that this content is cleaned out, along with the rest of the temporary build JS. - -- [#11054](https://github.com/withastro/astro/pull/11054) [`f6b171e`](https://github.com/withastro/astro/commit/f6b171ed50eed253b8ac005bd5e9d1841a8003dd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Respect error status when handling Actions with a progressive fallback. - -- [#11092](https://github.com/withastro/astro/pull/11092) [`bfe9c73`](https://github.com/withastro/astro/commit/bfe9c73536f0794e4f5ede5040adabbe0e705984) Thanks [@duckycoding-dev](https://github.com/duckycoding-dev)! - Change `slot` attribute of `IntrinsicAttributes` to match the definition of `HTMLAttributes`'s own `slot` attribute of type `string | undefined | null` - -- [#10875](https://github.com/withastro/astro/pull/10875) [`b5f95b2`](https://github.com/withastro/astro/commit/b5f95b2fb156152fabf2a22e150037a8255006f9) Thanks [@W1M0R](https://github.com/W1M0R)! - Fixes a typo in a JSDoc annotation - -- [#11111](https://github.com/withastro/astro/pull/11111) [`a5d79dd`](https://github.com/withastro/astro/commit/a5d79ddeb2d592de9eb2468471fdcf3eea5ef730) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix unexpected `headers` warning on prerendered routes when using Astro Actions. - -- [#11081](https://github.com/withastro/astro/pull/11081) [`af42e05`](https://github.com/withastro/astro/commit/af42e0552054b3b4ac784ed78c60f80bfc38d8ca) Thanks [@V3RON](https://github.com/V3RON)! - Correctly position inspection tooltip in RTL mode - - When RTL mode is turned on, the inspection tooltip tend to overflow the window on the left side. - Additional check has been added to prevent that. - -## 4.8.6 - -### Patch Changes - -- [#11084](https://github.com/withastro/astro/pull/11084) [`9637014`](https://github.com/withastro/astro/commit/9637014b1495a5a41cb384c7de4de410348f4cc0) Thanks [@bluwy](https://github.com/bluwy)! - Fixes regression when handling hoisted scripts from content collections - -## 4.8.5 - -### Patch Changes - -- [#11065](https://github.com/withastro/astro/pull/11065) [`1f988ed`](https://github.com/withastro/astro/commit/1f988ed10f4737b5333c9978115ee531786eb539) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug in the Astro rewrite logic, where rewriting the index with parameters - `next("/?foo=bar")` - didn't work as expected. - -- [#10924](https://github.com/withastro/astro/pull/10924) [`3a0c02a`](https://github.com/withastro/astro/commit/3a0c02ae0357c267881b30454b5320075378894b) Thanks [@Its-Just-Nans](https://github.com/Its-Just-Nans)! - Handle image-size errors by displaying a clearer message - -- [#11058](https://github.com/withastro/astro/pull/11058) [`749a7ac`](https://github.com/withastro/astro/commit/749a7ac967146952450a4173dcb6a5494755460c) Thanks [@matthewp](https://github.com/matthewp)! - Fix streaming in Node.js fast path - -- [#11052](https://github.com/withastro/astro/pull/11052) [`a05ca38`](https://github.com/withastro/astro/commit/a05ca38c2cf327ae9130ee1c139a0e510b9da50a) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where rewriting would conflict with the actions internal middleware - -- [#11062](https://github.com/withastro/astro/pull/11062) [`16f12e4`](https://github.com/withastro/astro/commit/16f12e426e5869721313bb771e2ec5b821c5452e) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where `astro build` didn't create custom `404.html` and `500.html` when a certain combination of i18n options was applied - -- [#10965](https://github.com/withastro/astro/pull/10965) [`a8f0372`](https://github.com/withastro/astro/commit/a8f0372ea71479ef80c58e74201dea6a5a2b2ae4) Thanks [@Elias-Chairi](https://github.com/Elias-Chairi)! - Update generator.ts to allow %23 (#) in dynamic urls - -- [#11069](https://github.com/withastro/astro/pull/11069) [`240a70a`](https://github.com/withastro/astro/commit/240a70a29f8e11d161da021845c208f982d64e5c) Thanks [@ematipico](https://github.com/ematipico)! - Improves debug logging for on-demand pages - -## 4.8.4 - -### Patch Changes - -- [#11026](https://github.com/withastro/astro/pull/11026) [`8dfb1a2`](https://github.com/withastro/astro/commit/8dfb1a23cc5996c410f7e33211d132dac36c9f77) Thanks [@bluwy](https://github.com/bluwy)! - Skips rendering script tags if it's inlined and empty when `experimental.directRenderScript` is enabled - -- [#11043](https://github.com/withastro/astro/pull/11043) [`d0d1710`](https://github.com/withastro/astro/commit/d0d1710439ec281518b17d03126b5d9cd008a102) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fixes minor type issues in actions component example - -- [#10999](https://github.com/withastro/astro/pull/10999) [`5f353e3`](https://github.com/withastro/astro/commit/5f353e39b2b9fb15e6c9d193b5b5101457fef002) Thanks [@bluwy](https://github.com/bluwy)! - The prefetch feature is updated to better support different browsers and different cache headers setup, including: - - 1. All prefetch strategies will now always try to use `` if supported, or will fall back to `fetch()`. - 2. The `prefetch()` programmatic API's `with` option is deprecated in favour of an automatic approach that will also try to use `` element in the `` component so scoped styling can be applied to the `` element - -## 4.8.0 - -### Minor Changes - -- [#10935](https://github.com/withastro/astro/pull/10935) [`ddd8e49`](https://github.com/withastro/astro/commit/ddd8e49d1a179bec82310fb471f822a1567a6610) Thanks [@bluwy](https://github.com/bluwy)! - Exports `astro/jsx/rehype.js` with utilities to generate an Astro metadata object - -- [#10625](https://github.com/withastro/astro/pull/10625) [`698c2d9`](https://github.com/withastro/astro/commit/698c2d9bb51e20b38de405b6076fd6488ddb5c2b) Thanks [@goulvenclech](https://github.com/goulvenclech)! - Adds the ability for multiple pages to use the same component as an `entrypoint` when building an Astro integration. This change is purely internal, and aligns the build process with the behaviour in the development server. - -- [#10906](https://github.com/withastro/astro/pull/10906) [`7bbd664`](https://github.com/withastro/astro/commit/7bbd66459dd29a338ac1dfae0e4c984cb08f73b3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds a new radio checkbox component to the dev toolbar UI library (`astro-dev-toolbar-radio-checkbox`) - -- [#10963](https://github.com/withastro/astro/pull/10963) [`61f47a6`](https://github.com/withastro/astro/commit/61f47a684235a049cbfc4f2cbb5edff3befeced7) Thanks [@delucis](https://github.com/delucis)! - Adds support for passing an inline Astro configuration object to `getViteConfig()` - - If you are using `getViteConfig()` to configure the Vitest test runner, you can now pass a second argument to control how Astro is configured. This makes it possible to configure unit tests with different Astro options when using [Vitest’s workspaces](https://vitest.dev/guide/workspace.html) feature. - - ```js - // vitest.config.ts - import { getViteConfig } from 'astro/config'; - - export default getViteConfig( - /* Vite configuration */ - { test: {} }, - /* Astro configuration */ - { - site: 'https://example.com', - trailingSlash: 'never', - }, - ); - ``` - -- [#10867](https://github.com/withastro/astro/pull/10867) [`47877a7`](https://github.com/withastro/astro/commit/47877a75404ccc8786bbea2171015fb088dc01a1) Thanks [@ematipico](https://github.com/ematipico)! - Adds experimental rewriting in Astro with a new `rewrite()` function and the middleware `next()` function. - - The feature is available via an experimental flag in `astro.config.mjs`: - - ```js - export default defineConfig({ - experimental: { - rewriting: true, - }, - }); - ``` - - When enabled, you can use `rewrite()` to **render** another page without changing the URL of the browser in Astro pages and endpoints. - - ```astro - --- - // src/pages/dashboard.astro - if (!Astro.props.allowed) { - return Astro.rewrite('/'); - } - --- - ``` - - ```js - // src/pages/api.js - export function GET(ctx) { - if (!ctx.locals.allowed) { - return ctx.rewrite('/'); - } - } - ``` - - The middleware `next()` function now accepts a parameter with the same type as the `rewrite()` function. For example, with `next("/")`, you can call the next middleware function with a new `Request`. - - ```js - // src/middleware.js - export function onRequest(ctx, next) { - if (!ctx.cookies.get('allowed')) { - return next('/'); // new signature - } - return next(); - } - ``` - - > **NOTE**: please [read the RFC](https://github.com/withastro/roadmap/blob/feat/reroute/proposals/0047-rerouting.md) to understand the current expectations of the new APIs. - -- [#10858](https://github.com/withastro/astro/pull/10858) [`c0c509b`](https://github.com/withastro/astro/commit/c0c509b6bf3f55562d22297fdcc2b3e57969734d) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds experimental support for the Actions API. Actions let you define type-safe endpoints you can query from client components with progressive enhancement built in. - - Actions help you write type-safe backend functions you can call from anywhere. Enable server rendering [using the `output` property](https://docs.astro.build/en/basics/rendering-modes/#on-demand-rendered) and add the `actions` flag to the `experimental` object: - - ```js - { - output: 'hybrid', // or 'server' - experimental: { - actions: true, - }, - } - ``` - - Declare all your actions in `src/actions/index.ts`. This file is the global actions handler. - - Define an action using the `defineAction()` utility from the `astro:actions` module. These accept the `handler` property to define your server-side request handler. If your action accepts arguments, apply the `input` property to validate parameters with Zod. - - This example defines two actions: `like` and `comment`. The `like` action accepts a JSON object with a `postId` string, while the `comment` action accepts [FormData](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest_API/Using_FormData_Objects) with `postId`, `author`, and `body` strings. Each `handler` updates your database and return a type-safe response. - - ```ts - // src/actions/index.ts - import { defineAction, z } from 'astro:actions'; - - export const server = { - like: defineAction({ - input: z.object({ postId: z.string() }), - handler: async ({ postId }) => { - // update likes in db - - return likes; - }, - }), - comment: defineAction({ - accept: 'form', - input: z.object({ - postId: z.string(), - - body: z.string(), - }), - handler: async ({ postId }) => { - // insert comments in db - - return comment; - }, - }), - }; - ``` - - Then, call an action from your client components using the `actions` object from `astro:actions`. You can pass a type-safe object when using JSON, or a [FormData](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest_API/Using_FormData_Objects) object when using `accept: 'form'` in your action definition: - - ```tsx "actions" - // src/components/blog.tsx - import { actions } from 'astro:actions'; - import { useState } from 'preact/hooks'; - - export function Like({ postId }: { postId: string }) { - const [likes, setLikes] = useState(0); - return ( - - ); - } - - export function Comment({ postId }: { postId: string }) { - return ( -
{ - e.preventDefault(); - const formData = new FormData(e.target); - const result = await actions.blog.comment(formData); - // handle result - }} - > - - - - - -
- ); - } - ``` - - For a complete overview, and to give feedback on this experimental API, see the [Actions RFC](https://github.com/withastro/roadmap/blob/actions/proposals/0046-actions.md). - -- [#10906](https://github.com/withastro/astro/pull/10906) [`7bbd664`](https://github.com/withastro/astro/commit/7bbd66459dd29a338ac1dfae0e4c984cb08f73b3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds a new `buttonBorderRadius` property to the `astro-dev-toolbar-button` component for the dev toolbar component library. This property can be useful to make a fully rounded button with an icon in the center. - -### Patch Changes - -- [#10977](https://github.com/withastro/astro/pull/10977) [`59571e8`](https://github.com/withastro/astro/commit/59571e8812ec637f5ea61be6c6adc0f45212d176) Thanks [@BryceRussell](https://github.com/BryceRussell)! - Improve error message when accessing `clientAddress` on prerendered routes - -- [#10935](https://github.com/withastro/astro/pull/10935) [`ddd8e49`](https://github.com/withastro/astro/commit/ddd8e49d1a179bec82310fb471f822a1567a6610) Thanks [@bluwy](https://github.com/bluwy)! - Improves the error message when failed to render MDX components - -- [#10917](https://github.com/withastro/astro/pull/10917) [`3412535`](https://github.com/withastro/astro/commit/3412535be4a0ec94cea18c5d186b7ffbd6f8209c) Thanks [@jakobhellermann](https://github.com/jakobhellermann)! - Fixes a case where the local server would crash when the host also contained the port, eg. with `X-Forwarded-Host: hostname:8080` and `X-Forwarded-Port: 8080` headers - -- [#10959](https://github.com/withastro/astro/pull/10959) [`685fc22`](https://github.com/withastro/astro/commit/685fc22bc6247be69a34c3f6945dec058c19fd71) Thanks [@bluwy](https://github.com/bluwy)! - Refactors internal handling of styles and scripts for content collections to improve build performance - -- [#10889](https://github.com/withastro/astro/pull/10889) [`4d905cc`](https://github.com/withastro/astro/commit/4d905ccef663f728fc981181f5bb9f1d157184ff) Thanks [@matthewp](https://github.com/matthewp)! - Preserve content modules properly in cache - -- [#10955](https://github.com/withastro/astro/pull/10955) [`2978287`](https://github.com/withastro/astro/commit/2978287f92dbd135f5c3efc6a037ea1756064d35) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Handles `AstroUserError`s thrown while syncing content collections and exports `BaseSchema` and `CollectionConfig` types - -## 4.7.1 - -### Patch Changes - -- [#10911](https://github.com/withastro/astro/pull/10911) [`a86dc9d`](https://github.com/withastro/astro/commit/a86dc9d269fc4409c458cfa05dcfaeee12bade2f) Thanks [@bluwy](https://github.com/bluwy)! - Skips adding CSS dependencies of CSS Vite modules as style tags in the HTML - -- [#10900](https://github.com/withastro/astro/pull/10900) [`36bb3b6`](https://github.com/withastro/astro/commit/36bb3b6025eb51f6e027a76a514cc7ebb29deb10) Thanks [@martrapp](https://github.com/martrapp)! - Detects overlapping navigation and view transitions and automatically aborts all but the most recent one. - -- [#10933](https://github.com/withastro/astro/pull/10933) [`007d17f`](https://github.com/withastro/astro/commit/007d17fee072955d4acb846a06d9eb666e908ef6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes `app.toggleState` not working correctly - -- [#10931](https://github.com/withastro/astro/pull/10931) [`4ce5ced`](https://github.com/withastro/astro/commit/4ce5ced44d490f4c6df771995aef14e11910ec57) Thanks [@ktym4a](https://github.com/ktym4a)! - Fixes `toggleNotification()`'s parameter type for the notification level not using the proper levels - -## 4.7.0 - -### Minor Changes - -- [#10665](https://github.com/withastro/astro/pull/10665) [`7b4f284`](https://github.com/withastro/astro/commit/7b4f2840203fe220758934f1366485f788727f0d) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds new utilities to ease the creation of toolbar apps including `defineToolbarApp` to make it easier to define your toolbar app and `app` and `server` helpers for easier communication between the toolbar and the server. These new utilities abstract away some of the boilerplate code that is common in toolbar apps, and lower the barrier of entry for app authors. - - For example, instead of creating an event listener for the `app-toggled` event and manually typing the value in the callback, you can now use the `onAppToggled` method. Additionally, communicating with the server does not require knowing any of the Vite APIs anymore, as a new `server` object is passed to the `init` function that contains easy to use methods for communicating with the server. - - ```diff - import { defineToolbarApp } from "astro/toolbar"; - - export default defineToolbarApp({ - init(canvas, app, server) { - - - app.addEventListener("app-toggled", (e) => { - - console.log(`App is now ${state ? "enabled" : "disabled"}`);. - - }); - - + app.onToggled(({ state }) => { - + console.log(`App is now ${state ? "enabled" : "disabled"}`); - + }); - - - if (import.meta.hot) { - - import.meta.hot.send("my-app:my-client-event", { message: "world" }); - - } - - + server.send("my-app:my-client-event", { message: "world" }) - - - if (import.meta.hot) { - - import.meta.hot.on("my-server-event", (data: {message: string}) => { - - console.log(data.message); - - }); - - } - - + server.on<{ message: string }>("my-server-event", (data) => { - + console.log(data.message); // data is typed using the type parameter - + }); - }, - }) - ``` - - Server helpers are also available on the server side, for use in your integrations, through the new `toolbar` object: - - ```ts - "astro:server:setup": ({ toolbar }) => { - toolbar.on<{ message: string }>("my-app:my-client-event", (data) => { - console.log(data.message); - toolbar.send("my-server-event", { message: "hello" }); - }); - } - ``` - - This is a backwards compatible change and your your existing dev toolbar apps will continue to function. However, we encourage you to build your apps with the new helpers, following the [updated Dev Toolbar API documentation](https://docs.astro.build/en/reference/dev-toolbar-app-reference/). - -- [#10734](https://github.com/withastro/astro/pull/10734) [`6fc4c0e`](https://github.com/withastro/astro/commit/6fc4c0e420da7629b4cfc28ee7efce1d614447be) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Astro will now automatically check for updates when you run the dev server. If a new version is available, a message will appear in the terminal with instructions on how to update. Updates will be checked once per 10 days, and the message will only appear if the project is multiple versions behind the latest release. - - This behavior can be disabled by running `astro preferences disable checkUpdates` or setting the `ASTRO_DISABLE_UPDATE_CHECK` environment variable to `false`. - -- [#10762](https://github.com/withastro/astro/pull/10762) [`43ead8f`](https://github.com/withastro/astro/commit/43ead8fbd5112823118060175c7a4a22522cc325) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Enables type checking for JavaScript files when using the `strictest` TS config. This ensures consistency with Astro's other TS configs, and fixes type checking for integrations like Astro DB when using an `astro.config.mjs`. - - If you are currently using the `strictest` preset and would like to still disable `.js` files, set `allowJS: false` in your `tsconfig.json`. - -### Patch Changes - -- [#10861](https://github.com/withastro/astro/pull/10861) [`b673bc8`](https://github.com/withastro/astro/commit/b673bc850593d5af25793d0358c00797477fa373) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where `astro build` writes type declaration files to `outDir` when it's outside of root directory. - -- [#10684](https://github.com/withastro/astro/pull/10684) [`8b59d5d`](https://github.com/withastro/astro/commit/8b59d5d078ff40576b8cbee432279c6ad044a1a9) Thanks [@PeterDraex](https://github.com/PeterDraex)! - Update sharp to 0.33 to fix issue with Alpine Linux - -## 4.6.4 - -### Patch Changes - -- [#10846](https://github.com/withastro/astro/pull/10846) [`3294f7a`](https://github.com/withastro/astro/commit/3294f7a343e036d2ad9ac8d5f792ad0d4f43a399) Thanks [@matthewp](https://github.com/matthewp)! - Prevent getCollection breaking in vitest - -- [#10856](https://github.com/withastro/astro/pull/10856) [`30cf82a`](https://github.com/withastro/astro/commit/30cf82ac3e970a6a3c0f07db1340dd7152d1c35d) Thanks [@robertvanhoesel](https://github.com/robertvanhoesel)! - Prevents inputs with a name attribute of action or method to break ViewTransitions' form submission - -- [#10833](https://github.com/withastro/astro/pull/10833) [`8d5f3e8`](https://github.com/withastro/astro/commit/8d5f3e8656027023f9fda51c66b0213ffe16d3a5) Thanks [@renovate](https://github.com/apps/renovate)! - Updates `esbuild` dependency to v0.20. This should not affect projects in most cases. - -- [#10801](https://github.com/withastro/astro/pull/10801) [`204b782`](https://github.com/withastro/astro/commit/204b7820e6de22d97fa2a7b988180c42155c8387) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - Fixes an issue where images in MD required a relative specifier (e.g. `./`) - - Now, you can use the standard `![](relative/img.png)` syntax in MD files for images colocated in the same folder: no relative specifier required! - - There is no need to update your project; your existing images will still continue to work. However, you may wish to remove any relative specifiers from these MD images as they are no longer necessary: - - ```diff - - ![A cute dog](./dog.jpg) - + ![A cute dog](dog.jpg) - - ``` - -- [#10841](https://github.com/withastro/astro/pull/10841) [`a2df344`](https://github.com/withastro/astro/commit/a2df344bff15647c2bfb3f49e3f7b66aa069d6f4) Thanks [@martrapp](https://github.com/martrapp)! - Due to regression on mobile WebKit browsers, reverts a change made for JavaScript animations during view transitions. - -## 4.6.3 - -### Patch Changes - -- [#10799](https://github.com/withastro/astro/pull/10799) [`dc74afca9f5eebc2d61331298d6ef187d92051e0`](https://github.com/withastro/astro/commit/dc74afca9f5eebc2d61331298d6ef187d92051e0) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue with persisted non-text input fields that have the focus during view transition navigation. - -- [#10773](https://github.com/withastro/astro/pull/10773) [`35e43ecdaae7adc4b9a0b974192a033568cfb3f0`](https://github.com/withastro/astro/commit/35e43ecdaae7adc4b9a0b974192a033568cfb3f0) Thanks [@lilnasy](https://github.com/lilnasy)! - Improves performance for frequent use of small components. - -- [#10763](https://github.com/withastro/astro/pull/10763) [`63132771373ce1510be3e8814897accc0bf62ef8`](https://github.com/withastro/astro/commit/63132771373ce1510be3e8814897accc0bf62ef8) Thanks [@matthewp](https://github.com/matthewp)! - Invalidate CC cache manifest when lockfile or config changes - -- [#10811](https://github.com/withastro/astro/pull/10811) [`77822a822b04b5113726f713df104e8667333c59`](https://github.com/withastro/astro/commit/77822a822b04b5113726f713df104e8667333c59) Thanks [@AvinashReddy3108](https://github.com/AvinashReddy3108)! - Update list of available integrations in the `astro add` CLI help. - -## 4.6.2 - -### Patch Changes - -- [#10732](https://github.com/withastro/astro/pull/10732) [`a92e263beb6e0166f1f13c97803d1861793e2a99`](https://github.com/withastro/astro/commit/a92e263beb6e0166f1f13c97803d1861793e2a99) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - Correctly sets `build.assets` directory during `vite` config setup - -- [#10776](https://github.com/withastro/astro/pull/10776) [`1607face67051b16d4648555f1001b2a9308e377`](https://github.com/withastro/astro/commit/1607face67051b16d4648555f1001b2a9308e377) Thanks [@fshafiee](https://github.com/fshafiee)! - Fixes cookies type inference - -- [#10796](https://github.com/withastro/astro/pull/10796) [`90669472df3a05b33f0de46fd2d039e3eba7f7dd`](https://github.com/withastro/astro/commit/90669472df3a05b33f0de46fd2d039e3eba7f7dd) Thanks [@bluwy](https://github.com/bluwy)! - Disables streaming when rendering site with `output: "static"` - -- [#10782](https://github.com/withastro/astro/pull/10782) [`b0589d05538fcc77dd3c38198bf93f3548362cd8`](https://github.com/withastro/astro/commit/b0589d05538fcc77dd3c38198bf93f3548362cd8) Thanks [@nektro](https://github.com/nektro)! - Handles possible null value when calling `which-pm` during dynamic package installation - -- [#10774](https://github.com/withastro/astro/pull/10774) [`308b5d8c122f44e7724bb2f3ad3aa5c43a83e584`](https://github.com/withastro/astro/commit/308b5d8c122f44e7724bb2f3ad3aa5c43a83e584) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes `astro add` sometimes modifying `baseUrl` unintentionally - -- [#10783](https://github.com/withastro/astro/pull/10783) [`4dbd545304d1a8af903c8c97f237eb55c988c40b`](https://github.com/withastro/astro/commit/4dbd545304d1a8af903c8c97f237eb55c988c40b) Thanks [@jurajkapsz](https://github.com/jurajkapsz)! - Fixes Picture component specialFormatsFallback fallback check - -- [#10775](https://github.com/withastro/astro/pull/10775) [`06843121450899ecf0390ca4efaff6c9a6fe0f75`](https://github.com/withastro/astro/commit/06843121450899ecf0390ca4efaff6c9a6fe0f75) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes assets endpoint in serverless returning 404 in certain situations where the website might be under a protected route - -- [#10787](https://github.com/withastro/astro/pull/10787) [`699f4559a279b374bddb3e5e48c72afe2709e8e7`](https://github.com/withastro/astro/commit/699f4559a279b374bddb3e5e48c72afe2709e8e7) Thanks [@martrapp](https://github.com/martrapp)! - Fixes a timing issue in the view transition simulation. - -## 4.6.1 - -### Patch Changes - -- [#10708](https://github.com/withastro/astro/pull/10708) [`742866c5669a2be4f8b5a4c861cadb933c381415`](https://github.com/withastro/astro/commit/742866c5669a2be4f8b5a4c861cadb933c381415) Thanks [@horo-fox](https://github.com/horo-fox)! - Limits parallel imports within `getCollection()` to prevent EMFILE errors when accessing files - -- [#10755](https://github.com/withastro/astro/pull/10755) [`c6d59b6fb7db20af957a8706c8159c50619235ef`](https://github.com/withastro/astro/commit/c6d59b6fb7db20af957a8706c8159c50619235ef) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where the i18n fallback failed to correctly redirect to the index page with SSR enabled - -## 4.6.0 - -### Minor Changes - -- [#10591](https://github.com/withastro/astro/pull/10591) [`39988ef8e2c4c4888543c973e06d9b9939e4ac95`](https://github.com/withastro/astro/commit/39988ef8e2c4c4888543c973e06d9b9939e4ac95) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Adds a new dev toolbar settings option to change the horizontal placement of the dev toolbar on your screen: bottom left, bottom center, or bottom right. - -- [#10689](https://github.com/withastro/astro/pull/10689) [`683d51a5eecafbbfbfed3910a3f1fbf0b3531b99`](https://github.com/withastro/astro/commit/683d51a5eecafbbfbfed3910a3f1fbf0b3531b99) Thanks [@ematipico](https://github.com/ematipico)! - Deprecate support for versions of Node.js older than `v18.17.1` for Node.js 18, older than `v20.0.3` for Node.js 20, and the complete Node.js v19 release line. - - This change is in line with Astro's [Node.js support policy](https://docs.astro.build/en/upgrade-astro/#support). - -- [#10678](https://github.com/withastro/astro/pull/10678) [`2e53b5fff6d292b7acdf8c30a6ecf5e5696846a1`](https://github.com/withastro/astro/commit/2e53b5fff6d292b7acdf8c30a6ecf5e5696846a1) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new experimental security option to prevent [Cross-Site Request Forgery (CSRF) attacks](https://owasp.org/www-community/attacks/csrf). This feature is available only for pages rendered on demand: - - ```js - import { defineConfig } from 'astro/config'; - export default defineConfig({ - experimental: { - security: { - csrfProtection: { - origin: true, - }, - }, - }, - }); - ``` - - Enabling this setting performs a check that the "origin" header, automatically passed by all modern browsers, matches the URL sent by each `Request`. - - This experimental "origin" check is executed only for pages rendered on demand, and only for the requests `POST, `PATCH`, `DELETE`and`PUT`with one of the following`content-type` headers: 'application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'. - - It the "origin" header doesn't match the pathname of the request, Astro will return a 403 status code and won't render the page. - -- [#10193](https://github.com/withastro/astro/pull/10193) [`440681e7b74511a17b152af0fd6e0e4dc4014025`](https://github.com/withastro/astro/commit/440681e7b74511a17b152af0fd6e0e4dc4014025) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new i18n routing option `manual` to allow you to write your own i18n middleware: - - ```js - import { defineConfig } from 'astro/config'; - // astro.config.mjs - export default defineConfig({ - i18n: { - locales: ['en', 'fr'], - defaultLocale: 'fr', - routing: 'manual', - }, - }); - ``` - - Adding `routing: "manual"` to your i18n config disables Astro's own i18n middleware and provides you with helper functions to write your own: `redirectToDefaultLocale`, `notFound`, and `redirectToFallback`: - - ```js - // middleware.js - import { redirectToDefaultLocale } from 'astro:i18n'; - export const onRequest = defineMiddleware(async (context, next) => { - if (context.url.startsWith('/about')) { - return next(); - } else { - return redirectToDefaultLocale(context, 302); - } - }); - ``` - - Also adds a `middleware` function that manually creates Astro's i18n middleware. This allows you to extend Astro's i18n routing instead of completely replacing it. Run `middleware` in combination with your own middleware, using the `sequence` utility to determine the order: - - ```js title="src/middleware.js" - import { defineMiddleware, sequence } from 'astro:middleware'; - import { middleware } from 'astro:i18n'; // Astro's own i18n routing config - - export const userMiddleware = defineMiddleware(); - - export const onRequest = sequence( - userMiddleware, - middleware({ - redirectToDefaultLocale: false, - prefixDefaultLocale: true, - }), - ); - ``` - -- [#10671](https://github.com/withastro/astro/pull/10671) [`9e14a78cb05667af9821948c630786f74680090d`](https://github.com/withastro/astro/commit/9e14a78cb05667af9821948c630786f74680090d) Thanks [@fshafiee](https://github.com/fshafiee)! - Adds the `httpOnly`, `sameSite`, and `secure` options when deleting a cookie - -### Patch Changes - -- [#10747](https://github.com/withastro/astro/pull/10747) [`994337c99f84304df1147a14504659439a9a7326`](https://github.com/withastro/astro/commit/994337c99f84304df1147a14504659439a9a7326) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where functions could not be used as named slots. - -- [#10750](https://github.com/withastro/astro/pull/10750) [`7e825604ddf90c989537e07939a39dc249343897`](https://github.com/withastro/astro/commit/7e825604ddf90c989537e07939a39dc249343897) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Fixes a false positive for "Invalid `tabindex` on non-interactive element" rule for roleless elements ( `div` and `span` ). - -- [#10745](https://github.com/withastro/astro/pull/10745) [`d51951ce6278d4b59deed938d65e1cb72b5102df`](https://github.com/withastro/astro/commit/d51951ce6278d4b59deed938d65e1cb72b5102df) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where CLI commands could not report the reason for failure before exiting. - -- [#10661](https://github.com/withastro/astro/pull/10661) [`e2cd7f4291912dadd4a654bc7917856c58a72a97`](https://github.com/withastro/astro/commit/e2cd7f4291912dadd4a654bc7917856c58a72a97) Thanks [@liruifengv](https://github.com/liruifengv)! - Fixed errorOverlay theme toggle bug. - -- Updated dependencies [[`ccafa8d230f65c9302421a0ce0a0adc5824bfd55`](https://github.com/withastro/astro/commit/ccafa8d230f65c9302421a0ce0a0adc5824bfd55), [`683d51a5eecafbbfbfed3910a3f1fbf0b3531b99`](https://github.com/withastro/astro/commit/683d51a5eecafbbfbfed3910a3f1fbf0b3531b99)]: - - @astrojs/markdown-remark@5.1.0 - - @astrojs/telemetry@3.1.0 - -## 4.5.18 - -### Patch Changes - -- [#10728](https://github.com/withastro/astro/pull/10728) [`f508c4b7d54316e737f454a3777204b23636d4a0`](https://github.com/withastro/astro/commit/f508c4b7d54316e737f454a3777204b23636d4a0) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression where some very **specific** code rendered using `expressive-code` was not escaped properly. - -- [#10737](https://github.com/withastro/astro/pull/10737) [`8a30f257b1f3618b01212a591b82ad7a63c82fbb`](https://github.com/withastro/astro/commit/8a30f257b1f3618b01212a591b82ad7a63c82fbb) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression where constructing and returning 404 responses from a middleware resulted in the dev server getting stuck in a loop. - -- [#10719](https://github.com/withastro/astro/pull/10719) [`b21b3ba307235510707ee9f5bd49f71473a07004`](https://github.com/withastro/astro/commit/b21b3ba307235510707ee9f5bd49f71473a07004) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a false positive for `div` and `span` elements when running the Dev Toolbar accessibility audits. - - Those are special elements that don't have an interaction assigned by default. Instead, it is assigned through the `role` attribute. This means that cases like the following are now deemed correct: - - ```html -
- - ``` - -## 4.5.17 - -### Patch Changes - -- [#10688](https://github.com/withastro/astro/pull/10688) [`799f6f3f29a3ef4f76347870a209ffa89651adfa`](https://github.com/withastro/astro/commit/799f6f3f29a3ef4f76347870a209ffa89651adfa) Thanks [@bluwy](https://github.com/bluwy)! - Marks renderer `jsxImportSource` and `jsxTransformOptions` options as deprecated as they are no longer used since Astro 3.0 - -- [#10657](https://github.com/withastro/astro/pull/10657) [`93d353528fa1a85b67e3f1e9514ed2a1b42dfd94`](https://github.com/withastro/astro/commit/93d353528fa1a85b67e3f1e9514ed2a1b42dfd94) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves the color contrast for notification badges on dev toolbar apps - -- [#10693](https://github.com/withastro/astro/pull/10693) [`1d26e9c7f7d8f47e33bc68d3b30bbffce25c7b63`](https://github.com/withastro/astro/commit/1d26e9c7f7d8f47e33bc68d3b30bbffce25c7b63) Thanks [@apetta](https://github.com/apetta)! - Adds the `disableremoteplayback` attribute to MediaHTMLAttributes interface - -- [#10695](https://github.com/withastro/astro/pull/10695) [`a15975e41cb5eaf6ed8eb3ebaee676a17e433052`](https://github.com/withastro/astro/commit/a15975e41cb5eaf6ed8eb3ebaee676a17e433052) Thanks [@bluwy](https://github.com/bluwy)! - Skips prerender chunk if building with static output - -- [#10707](https://github.com/withastro/astro/pull/10707) [`5e044a5eafaa206d2ef8b62c37d1bcd37f0a4078`](https://github.com/withastro/astro/commit/5e044a5eafaa206d2ef8b62c37d1bcd37f0a4078) Thanks [@horo-fox](https://github.com/horo-fox)! - Logs an error when a page's `getStaticPaths` fails - -- [#10686](https://github.com/withastro/astro/pull/10686) [`fa0f593890502faf5709ab881fe0e45519d2f7af`](https://github.com/withastro/astro/commit/fa0f593890502faf5709ab881fe0e45519d2f7af) Thanks [@bluwy](https://github.com/bluwy)! - Prevents inlining scripts if used by other chunks when using the `experimental.directRenderScript` option - -## 4.5.16 - -### Patch Changes - -- [#10679](https://github.com/withastro/astro/pull/10679) [`ca6bb1f31ef041e6ccf8ef974856fa945ff5bb31`](https://github.com/withastro/astro/commit/ca6bb1f31ef041e6ccf8ef974856fa945ff5bb31) Thanks [@martrapp](https://github.com/martrapp)! - Generates missing popstate events for Firefox when navigating to hash targets on the same page. - -- [#10669](https://github.com/withastro/astro/pull/10669) [`0464563e527f821e53d78028d9bbf3c4e1050f5b`](https://github.com/withastro/astro/commit/0464563e527f821e53d78028d9bbf3c4e1050f5b) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes Astro waiting infinitely in CI when a required package was not installed - -## 4.5.15 - -### Patch Changes - -- [#10666](https://github.com/withastro/astro/pull/10666) [`55ddb2ba4889480f776a8d29b9dcd531b9f5ab3e`](https://github.com/withastro/astro/commit/55ddb2ba4889480f776a8d29b9dcd531b9f5ab3e) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where forwarded requests did not include hostname on node-based adapters. This also makes error pages more reliable. - -- [#10642](https://github.com/withastro/astro/pull/10642) [`4f5dc14f315eba7ea6ec5cc8e5dacb0cb81288dd`](https://github.com/withastro/astro/commit/4f5dc14f315eba7ea6ec5cc8e5dacb0cb81288dd) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Fixes typing issues when using `format` and `quality` options with remote images - -- [#10616](https://github.com/withastro/astro/pull/10616) [`317d18ef8c9cf4fd13647518e3fd352774a86481`](https://github.com/withastro/astro/commit/317d18ef8c9cf4fd13647518e3fd352774a86481) Thanks [@NikolaRHristov](https://github.com/NikolaRHristov)! - This change disables the `sharp` `libvips` image cache as it errors when the - file is too small and operations are happening too fast (runs into a race - condition) - -## 4.5.14 - -### Patch Changes - -- [#10470](https://github.com/withastro/astro/pull/10470) [`320c309ca9fbe51c40e6ba846d04a0cb49aced5f`](https://github.com/withastro/astro/commit/320c309ca9fbe51c40e6ba846d04a0cb49aced5f) Thanks [@liruifengv](https://github.com/liruifengv)! - improves `client:only` error message - -- [#10496](https://github.com/withastro/astro/pull/10496) [`ce985631129e49f7ea90e6ea690ef9f9cf0e6987`](https://github.com/withastro/astro/commit/ce985631129e49f7ea90e6ea690ef9f9cf0e6987) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Makes the warning less scary when adding 3rd-party integrations using `astro add` - -## 4.5.13 - -### Patch Changes - -- [#10495](https://github.com/withastro/astro/pull/10495) [`046d69d517118ab5c0e71604b321729d66ddffff`](https://github.com/withastro/astro/commit/046d69d517118ab5c0e71604b321729d66ddffff) Thanks [@satyarohith](https://github.com/satyarohith)! - This patch allows astro to run in node-compat mode in Deno. Deno doesn't support - construction of response from async iterables in node-compat mode so we need to - use ReadableStream. - -- [#10605](https://github.com/withastro/astro/pull/10605) [`a16a829f4e25ad5c9a1b4557ec089fc8ab53320f`](https://github.com/withastro/astro/commit/a16a829f4e25ad5c9a1b4557ec089fc8ab53320f) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue with outdated page titles in browser history when using text fragments in view transition navigation. - -- [#10584](https://github.com/withastro/astro/pull/10584) [`e648c5575a8774af739231cfa9fc27a32086aa5f`](https://github.com/withastro/astro/commit/e648c5575a8774af739231cfa9fc27a32086aa5f) Thanks [@duanwilliam](https://github.com/duanwilliam)! - Fixes a bug where JSX runtime would error on components with nullish prop values in certain conditions. - -- [#10608](https://github.com/withastro/astro/pull/10608) [`e31bea0704890ff92ce4f9b0ce536c1c90715f2c`](https://github.com/withastro/astro/commit/e31bea0704890ff92ce4f9b0ce536c1c90715f2c) Thanks [@matthewp](https://github.com/matthewp)! - Fixes bug with head content being pushed into body - -- Updated dependencies [[`2cf116f80cb5e421ab5cc5eb4a654e7b78c1b8de`](https://github.com/withastro/astro/commit/2cf116f80cb5e421ab5cc5eb4a654e7b78c1b8de), [`374efcdff9625ca43309d89e3b9cfc9174351512`](https://github.com/withastro/astro/commit/374efcdff9625ca43309d89e3b9cfc9174351512)]: - - @astrojs/markdown-remark@5.0.0 - -## 4.5.12 - -### Patch Changes - -- [#10596](https://github.com/withastro/astro/pull/10596) [`20463a6c1e1271d8dc3cb0ab3419ee5c72abd218`](https://github.com/withastro/astro/commit/20463a6c1e1271d8dc3cb0ab3419ee5c72abd218) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add `removeBase` function - -- Updated dependencies [[`20463a6c1e1271d8dc3cb0ab3419ee5c72abd218`](https://github.com/withastro/astro/commit/20463a6c1e1271d8dc3cb0ab3419ee5c72abd218)]: - - @astrojs/internal-helpers@0.4.0 - -## 4.5.11 - -### Patch Changes - -- [#10567](https://github.com/withastro/astro/pull/10567) [`fbdc10f90f7baa5c49f2f53e3e4ce8f453814c01`](https://github.com/withastro/astro/commit/fbdc10f90f7baa5c49f2f53e3e4ce8f453814c01) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes `astro:assets` not working when using complex config with `vite.build.rollupOptions.output.assetFileNames` - -- [#10593](https://github.com/withastro/astro/pull/10593) [`61e283e5a0d95b6ef5d3c4c985d6ee78f74bbd8e`](https://github.com/withastro/astro/commit/61e283e5a0d95b6ef5d3c4c985d6ee78f74bbd8e) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes Polymorphic type helper causing TypeScript errors in certain cases after the previous update - -- [#10543](https://github.com/withastro/astro/pull/10543) [`0fd36bdb383297b32cc523b57d2442132da41595`](https://github.com/withastro/astro/commit/0fd36bdb383297b32cc523b57d2442132da41595) Thanks [@matthewp](https://github.com/matthewp)! - Fixes inline stylesheets with content collections cache - -- [#10582](https://github.com/withastro/astro/pull/10582) [`a05953538fcf524786385830b99c0c5a015173e8`](https://github.com/withastro/astro/commit/a05953538fcf524786385830b99c0c5a015173e8) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where the dev server got stuck in a loop while routing responses with a 404 status code to the 404 route. - -## 4.5.10 - -### Patch Changes - -- [#10549](https://github.com/withastro/astro/pull/10549) [`54c2f9707f5d038630143f769e3075c698474654`](https://github.com/withastro/astro/commit/54c2f9707f5d038630143f769e3075c698474654) Thanks [@admirsaheta](https://github.com/admirsaheta)! - Updates the `HTMLAttributes` type exported from `astro` to allow data attributes - -- [#10562](https://github.com/withastro/astro/pull/10562) [`348c1ca1323d0516c2dcf8e963343cd12cb5407f`](https://github.com/withastro/astro/commit/348c1ca1323d0516c2dcf8e963343cd12cb5407f) Thanks [@apetta](https://github.com/apetta)! - Fixes minor type issues inside the built-in components of Astro - -- [#10550](https://github.com/withastro/astro/pull/10550) [`34fa8e131b85531e6629390307108ffc4adb7ed1`](https://github.com/withastro/astro/commit/34fa8e131b85531e6629390307108ffc4adb7ed1) Thanks [@Skn0tt](https://github.com/Skn0tt)! - Fixes bug where server builds would include unneeded assets in SSR Function, potentially leading to upload errors on Vercel, Netlify because of size limits - -- Updated dependencies [[`c585528f446ccca3d4c643f4af5d550b93c18902`](https://github.com/withastro/astro/commit/c585528f446ccca3d4c643f4af5d550b93c18902)]: - - @astrojs/markdown-remark@4.3.2 - -## 4.5.9 - -### Patch Changes - -- [#10532](https://github.com/withastro/astro/pull/10532) [`8306ce1ff7b71a2a0d7908336c9be462a54d395a`](https://github.com/withastro/astro/commit/8306ce1ff7b71a2a0d7908336c9be462a54d395a) Thanks [@martrapp](https://github.com/martrapp)! - Fixes a style issue of `client:only` components in DEV mode during view transitions. - -- [#10473](https://github.com/withastro/astro/pull/10473) [`627e47d67af4846cea2acf26a96b4124001b26fc`](https://github.com/withastro/astro/commit/627e47d67af4846cea2acf26a96b4124001b26fc) Thanks [@bluwy](https://github.com/bluwy)! - Fixes and improves performance when rendering Astro JSX - -## 4.5.8 - -### Patch Changes - -- [#10504](https://github.com/withastro/astro/pull/10504) [`8e4e554cc211e59c329c0a5d110c839c886ff120`](https://github.com/withastro/astro/commit/8e4e554cc211e59c329c0a5d110c839c886ff120) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update Babel version to fix regression in Babel's `7.24.2`. - -- Updated dependencies [[`19e42c368184013fc30d1e46753b9e9383bb2bdf`](https://github.com/withastro/astro/commit/19e42c368184013fc30d1e46753b9e9383bb2bdf)]: - - @astrojs/markdown-remark@4.3.1 - -## 4.5.7 - -### Patch Changes - -- [#10493](https://github.com/withastro/astro/pull/10493) [`e4a6462751725878bfe47632eeafa6854cad5bf2`](https://github.com/withastro/astro/commit/e4a6462751725878bfe47632eeafa6854cad5bf2) Thanks [@firefoxic](https://github.com/firefoxic)! - `` tags created by astro for optimized stylesheets now do not include the closing forward slash. This slash is optional for void elements such as link, but made some html validation fail. - -## 4.5.6 - -### Patch Changes - -- [#10455](https://github.com/withastro/astro/pull/10455) [`c12666166db724915e42e37a048483c99f88e6d9`](https://github.com/withastro/astro/commit/c12666166db724915e42e37a048483c99f88e6d9) Thanks [@lilnasy](https://github.com/lilnasy)! - Adds a helpful error message that will be shown when an endpoint does not return a `Response`. - -- [#10426](https://github.com/withastro/astro/pull/10426) [`6a9a35ee15069541c3144012385366a3c689240a`](https://github.com/withastro/astro/commit/6a9a35ee15069541c3144012385366a3c689240a) Thanks [@markgaze](https://github.com/markgaze)! - Fixes an issue with generating JSON schemas when the schema is a function - -- [#10448](https://github.com/withastro/astro/pull/10448) [`fcece3658697248ab58f77b3d4a8b14d362f3c47`](https://github.com/withastro/astro/commit/fcece3658697248ab58f77b3d4a8b14d362f3c47) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where multiple rendering errors resulted in a crash of the SSR app server. - -## 4.5.5 - -### Patch Changes - -- [#10379](https://github.com/withastro/astro/pull/10379) [`3776ecf0aa9e08a992d3ae76e90682fd04093721`](https://github.com/withastro/astro/commit/3776ecf0aa9e08a992d3ae76e90682fd04093721) Thanks [@1574242600](https://github.com/1574242600)! - Fixes a routing issue with partially truncated dynamic segments. - -- [#10442](https://github.com/withastro/astro/pull/10442) [`f8e0ad3c52a37b8a2175fe2f5ff2bd0cd738f499`](https://github.com/withastro/astro/commit/f8e0ad3c52a37b8a2175fe2f5ff2bd0cd738f499) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes small rendering issues with the dev toolbar in certain contexts - -- [#10438](https://github.com/withastro/astro/pull/10438) [`5b48cc0fc8383b0659a595afd3a6ee28b28779c3`](https://github.com/withastro/astro/commit/5b48cc0fc8383b0659a595afd3a6ee28b28779c3) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Generate Astro DB types when running `astro sync`. - -- [#10456](https://github.com/withastro/astro/pull/10456) [`1900a8f9bc337f3a882178d1770e10ab67fab0ce`](https://github.com/withastro/astro/commit/1900a8f9bc337f3a882178d1770e10ab67fab0ce) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an error when using `astro:transtions/client` without `` - -## 4.5.4 - -### Patch Changes - -- [#10427](https://github.com/withastro/astro/pull/10427) [`128c7a36397d99608dea918885b68bd302d00e7f`](https://github.com/withastro/astro/commit/128c7a36397d99608dea918885b68bd302d00e7f) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where error pages did not have access to the `Astro.locals` fields provided by the adapter. - -## 4.5.3 - -### Patch Changes - -- [#10410](https://github.com/withastro/astro/pull/10410) [`055fe293c6702dd27bcd6c4f59297c6d4385abb1`](https://github.com/withastro/astro/commit/055fe293c6702dd27bcd6c4f59297c6d4385abb1) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where configured redirects could not include certain characters in the target path. - -- [#9820](https://github.com/withastro/astro/pull/9820) [`8edc42aa7c209b12d98ecf20cdecccddf7314af0`](https://github.com/withastro/astro/commit/8edc42aa7c209b12d98ecf20cdecccddf7314af0) Thanks [@alexnguyennz](https://github.com/alexnguyennz)! - Prevents fully formed URLs in attributes from being escaped - -## 4.5.2 - -### Patch Changes - -- [#10400](https://github.com/withastro/astro/pull/10400) [`629c9d7c4d96ae5711d95601e738b3d31d268116`](https://github.com/withastro/astro/commit/629c9d7c4d96ae5711d95601e738b3d31d268116) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where dev toolbar x-ray didn't escape props content. - -## 4.5.1 - -### Patch Changes - -- [#10392](https://github.com/withastro/astro/pull/10392) [`02aeb01cb8b62b9cc4dfe6069857219404343b73`](https://github.com/withastro/astro/commit/02aeb01cb8b62b9cc4dfe6069857219404343b73) Thanks [@martrapp](https://github.com/martrapp)! - Fixes broken types for some functions of `astro:transitions/client`. - -- [#10390](https://github.com/withastro/astro/pull/10390) [`236cdbb611587692d3c781850cb949604677ef82`](https://github.com/withastro/astro/commit/236cdbb611587692d3c781850cb949604677ef82) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds `--help` reference for new db and studio CLI commands - -## 4.5.0 - -### Minor Changes - -- [#10206](https://github.com/withastro/astro/pull/10206) [`dc87214141e7f8406c0fdf6a7f425dad6dea6d3e`](https://github.com/withastro/astro/commit/dc87214141e7f8406c0fdf6a7f425dad6dea6d3e) Thanks [@lilnasy](https://github.com/lilnasy)! - Allows middleware to run when a matching page or endpoint is not found. Previously, a `pages/404.astro` or `pages/[...catch-all].astro` route had to match to allow middleware. This is now not necessary. - - When a route does not match in SSR deployments, your adapter may show a platform-specific 404 page instead of running Astro's SSR code. In these cases, you may still need to add a `404.astro` or fallback route with spread params, or use a routing configuration option if your adapter provides one. - -- [#9960](https://github.com/withastro/astro/pull/9960) [`c081adf998d30419fed97d8fccc11340cdc512e0`](https://github.com/withastro/astro/commit/c081adf998d30419fed97d8fccc11340cdc512e0) Thanks [@StandardGage](https://github.com/StandardGage)! - Allows passing any props to the `` component - -- [#10102](https://github.com/withastro/astro/pull/10102) [`e3f02f5fb1cf0dae3c54beb3a4af3dbf3b06abb7`](https://github.com/withastro/astro/commit/e3f02f5fb1cf0dae3c54beb3a4af3dbf3b06abb7) Thanks [@bluwy](https://github.com/bluwy)! - Adds a new `experimental.directRenderScript` configuration option which provides a more reliable strategy to prevent scripts from being executed in pages where they are not used. - - This replaces the `experimental.optimizeHoistedScript` flag introduced in v2.10.4 to prevent unused components' scripts from being included in a page unexpectedly. That experimental option no longer exists and must be removed from your configuration, whether or not you enable `directRenderScript`: + `getActionProps()` is now deprecated. To use the new fallback pattern, remove the `getActionProps()` input from your form and pass your action function to the form `action` attribute: ```diff - // astro.config.mjs - import { defineConfig } from 'astro/config'; - - export default defineConfig({ - experimental: { - - optimizeHoistedScript: true, - + directRenderScript: true - } - }); - ``` - - With `experimental.directRenderScript` configured, scripts are now directly rendered as declared in Astro files (including existing features like TypeScript, importing `node_modules`, and deduplicating scripts). You can also now conditionally render scripts in your Astro file. - - However, this means scripts are no longer hoisted to the `` and multiple scripts on a page are no longer bundled together. If you enable this option, you should check that all your ` - ``` +- [#11508](https://github.com/withastro/astro/pull/11508) [`ca335e1`](https://github.com/withastro/astro/commit/ca335e1dc09bc83d3f8f5b9dd54f116bcb4881e4) Thanks [@cramforce](https://github.com/cramforce)! - Escapes HTML in serialized props -- [#10145](https://github.com/withastro/astro/pull/10145) [`65692fa7b5f4440c644c8cf3dd9bc50103d2c33b`](https://github.com/withastro/astro/commit/65692fa7b5f4440c644c8cf3dd9bc50103d2c33b) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Adds experimental JSON Schema support for content collections. +- [#11501](https://github.com/withastro/astro/pull/11501) [`4db78ae`](https://github.com/withastro/astro/commit/4db78ae046a39628dfe8d68e776706559d4f8ba7) Thanks [@martrapp](https://github.com/martrapp)! - Adds the missing export for accessing the `getFallback()` function of the client site router. - This feature will auto-generate a JSON Schema for content collections of `type: 'data'` which can be used as the `$schema` value for TypeScript-style autocompletion/hints in tools like VSCode. +## 4.12.1 - To enable this feature, add the experimental flag: +### Patch Changes - ```diff - import { defineConfig } from 'astro/config'; +- [#11486](https://github.com/withastro/astro/pull/11486) [`9c0c849`](https://github.com/withastro/astro/commit/9c0c8492d987cd9214ed53e71fb29599c206966a) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new function called `addClientRenderer` to the Container API. - export default defineConfig({ - experimental: { - + contentCollectionJsonSchema: true - } - }); + This function should be used when rendering components using the `client:*` directives. The `addClientRenderer` API must be used + _after_ the use of the `addServerRenderer`: + + ```js + const container = await experimental_AstroContainer.create(); + container.addServerRenderer({ renderer }); + container.addClientRenderer({ name: '@astrojs/react', entrypoint: '@astrojs/react/client.js' }); + const response = await container.renderToResponse(Component); ``` - This experimental implementation requires you to manually reference the schema in each data entry file of the collection: +- [#11500](https://github.com/withastro/astro/pull/11500) [`4e142d3`](https://github.com/withastro/astro/commit/4e142d38cbaf0938be7077c88e32b38a6b60eaed) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes inferRemoteSize type not working - ```diff - // src/content/test/entry.json - { - + "$schema": "../../../.astro/collections/test.schema.json", - "test": "test" - } - ``` +- [#11496](https://github.com/withastro/astro/pull/11496) [`53ccd20`](https://github.com/withastro/astro/commit/53ccd206f9bfe5f6a0d888d199776b4043f63f58) Thanks [@alfawal](https://github.com/alfawal)! - Hide the dev toolbar on `window.print()` (CTRL + P) - Alternatively, you can set this in your [VSCode `json.schemas` settings](https://code.visualstudio.com/docs/languages/json#_json-schemas-and-settings): +## 4.12.0 - ```diff - "json.schemas": [ - { - "fileMatch": [ - "/src/content/test/**" - ], - "url": "../../../.astro/collections/test.schema.json" - } - ] - ``` +### Minor Changes - Note that this initial implementation uses a library with [known issues for advanced Zod schemas](https://github.com/StefanTerdell/zod-to-json-schema#known-issues), so you may wish to consult these limitations before enabling the experimental flag. +- [#11341](https://github.com/withastro/astro/pull/11341) [`49b5145`](https://github.com/withastro/astro/commit/49b5145158a603b9bb951bf914a6a9780c218704) Thanks [@madcampos](https://github.com/madcampos)! - Adds support for [Shiki's `defaultColor` option](https://shiki.style/guide/dual-themes#without-default-color). -- [#10130](https://github.com/withastro/astro/pull/10130) [`5a9528741fa98d017b269c7e4f013058028bdc5d`](https://github.com/withastro/astro/commit/5a9528741fa98d017b269c7e4f013058028bdc5d) Thanks [@bluwy](https://github.com/bluwy)! - Migrates `shikiji` to `shiki` 1.0 + This option allows you to override the values of a theme's inline style, adding only CSS variables to give you more flexibility in applying multiple color themes. -- [#10268](https://github.com/withastro/astro/pull/10268) [`2013e70bce16366781cc12e52823bb257fe460c0`](https://github.com/withastro/astro/commit/2013e70bce16366781cc12e52823bb257fe460c0) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds support for page mutations to the audits in the dev toolbar. Astro will now rerun the audits whenever elements are added or deleted from the page. + Configure `defaultColor: false` in your Shiki config to apply throughout your site, or pass to Astro's built-in `` component to style an individual code block. -- [#10217](https://github.com/withastro/astro/pull/10217) [`5c7862a9fe69954f8630538ebb7212cd04b8a810`](https://github.com/withastro/astro/commit/5c7862a9fe69954f8630538ebb7212cd04b8a810) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates the UI for dev toolbar audits with new information + ```js title="astro.config.mjs" + import { defineConfig } from 'astro/config'; + export default defineConfig({ + markdown: { + shikiConfig: { + themes: { + light: 'github-light', + dark: 'github-dark', + }, + defaultColor: false, + }, + }, + }); + ``` -### Patch Changes + ```astro + --- + import { Code } from 'astro:components'; + --- -- [#10360](https://github.com/withastro/astro/pull/10360) [`ac766647b0e6156b7c4a0bb9a11981fe168852d7`](https://github.com/withastro/astro/commit/ac766647b0e6156b7c4a0bb9a11981fe168852d7) Thanks [@nmattia](https://github.com/nmattia)! - Fixes an issue where some CLI commands attempted to directly read vite config files. + + ``` -- [#10291](https://github.com/withastro/astro/pull/10291) [`8107a2721b6abb07c3120ac90e03c39f2a44ab0c`](https://github.com/withastro/astro/commit/8107a2721b6abb07c3120ac90e03c39f2a44ab0c) Thanks [@bluwy](https://github.com/bluwy)! - Treeshakes unused Astro component scoped styles +- [#11304](https://github.com/withastro/astro/pull/11304) [`2e70741`](https://github.com/withastro/astro/commit/2e70741362afc1e7d03c8b2a9d8edb8466dfe9c3) Thanks [@Fryuni](https://github.com/Fryuni)! - Refactors the type for integration hooks so that integration authors writing custom integration hooks can now allow runtime interactions between their integration and other integrations. -- [#10368](https://github.com/withastro/astro/pull/10368) [`78bafc5d661ff7dd071c241cb1303c4d8a774d21`](https://github.com/withastro/astro/commit/78bafc5d661ff7dd071c241cb1303c4d8a774d21) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates the base `tsconfig.json` preset with `jsx: 'preserve'` in order to fix errors when importing Astro files inside `.js` and `.ts` files. + This internal change should not break existing code for integration authors. -- Updated dependencies [[`c081adf998d30419fed97d8fccc11340cdc512e0`](https://github.com/withastro/astro/commit/c081adf998d30419fed97d8fccc11340cdc512e0), [`1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd`](https://github.com/withastro/astro/commit/1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd), [`5a9528741fa98d017b269c7e4f013058028bdc5d`](https://github.com/withastro/astro/commit/5a9528741fa98d017b269c7e4f013058028bdc5d), [`a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18`](https://github.com/withastro/astro/commit/a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18)]: - - @astrojs/markdown-remark@4.3.0 - - @astrojs/internal-helpers@0.3.0 + To declare your own hooks for your integration, extend the `Astro.IntegrationHooks` interface: -## 4.4.15 + ```ts + // your-integration/types.ts + declare global { + namespace Astro { + interface IntegrationHooks { + 'myLib:eventHappened': (your: string, parameters: number) => Promise; + } + } + } + ``` -### Patch Changes + Call your hooks on all other integrations installed in a project at the appropriate time. For example, you can call your hook on initialization before either the Vite or Astro config have resolved: -- [#10317](https://github.com/withastro/astro/pull/10317) [`33583e8b31ee8a33e26cf57f30bb422921f4745d`](https://github.com/withastro/astro/commit/33583e8b31ee8a33e26cf57f30bb422921f4745d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where elements slotted within interactive framework components disappeared after hydration. + ```ts + // your-integration/index.ts + import './types.ts'; -## 4.4.14 + export default (): AstroIntegration => { + return { + name: 'your-integration', + hooks: { + 'astro:config:setup': async ({ config }) => { + for (const integration of config.integrations) { + await integration.hooks['myLib:eventHappened'].?('your values', 123); + } + }, + } + } + } + ``` -### Patch Changes + Other integrations can also now declare your hooks: -- [#10355](https://github.com/withastro/astro/pull/10355) [`8ce9fffd44b0740621178d61fb1425bf4155c2d7`](https://github.com/withastro/astro/commit/8ce9fffd44b0740621178d61fb1425bf4155c2d7) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression where full dynamic routes were prioritized over partial dynamic routes. Now a route like `food-[name].astro` is matched **before** `[name].astro`. + ```ts + // other-integration/index.ts + import 'your-integration/types.ts'; -- [#10356](https://github.com/withastro/astro/pull/10356) [`d121311a3f4b5345e344e31f75d4e7164d65f729`](https://github.com/withastro/astro/commit/d121311a3f4b5345e344e31f75d4e7164d65f729) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where `getCollection` might return `undefined` when content collection is empty + export default (): AstroIntegration => { + return { + name: 'other-integration', + hooks: { + 'myLib:eventHappened': async (your, values) => { + // ... + }, + }, + }; + }; + ``` -- [#10325](https://github.com/withastro/astro/pull/10325) [`f33cce8f6c3a2e17847658cdedb015bd93cc1ee3`](https://github.com/withastro/astro/commit/f33cce8f6c3a2e17847658cdedb015bd93cc1ee3) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where `ctx.site` included the configured `base` in API routes and middleware, unlike `Astro.site` in astro pages. +- [#11305](https://github.com/withastro/astro/pull/11305) [`d495df5`](https://github.com/withastro/astro/commit/d495df5361e16ebdf83dea6e2de004f438e698c4) Thanks [@matthewp](https://github.com/matthewp)! - Experimental Server Islands -- [#10343](https://github.com/withastro/astro/pull/10343) [`f973aa9110592fa9017bbe84387f22c24a6d7159`](https://github.com/withastro/astro/commit/f973aa9110592fa9017bbe84387f22c24a6d7159) Thanks [@ematipico](https://github.com/ematipico)! - Fixes some false positive in the dev toolbar a11y audits, by adding the `a` element to the list of interactive elements. + Server Islands allow you to specify components that should run on the server, allowing the rest of the page to be more aggressively cached, or even generated statically. Turn any `.astro` component into a server island by adding the `server:defer` directive and optionally, fallback placeholder content: -- [#10295](https://github.com/withastro/astro/pull/10295) [`fdd5bf277e5c1cfa30c1bd2ca123f4e90e8d09d9`](https://github.com/withastro/astro/commit/fdd5bf277e5c1cfa30c1bd2ca123f4e90e8d09d9) Thanks [@rossrobino](https://github.com/rossrobino)! - Adds a prefetch fallback when using the `experimental.clientPrerender` option. If prerendering fails, which can happen if [Chrome extensions block prerendering](https://developer.chrome.com/blog/speculation-rules-improvements#chrome-limits), it will fallback to prefetching the URL. This works by adding a `prefetch` field to the `speculationrules` script, but does not create an extra request. + ```astro + --- + import Avatar from '../components/Avatar.astro'; + import GenericUser from '../components/GenericUser.astro'; + --- -## 4.4.13 +
+

Page Title

+
+ + + +
+
+ ``` -### Patch Changes + The `server:defer` directive can be used on any Astro component in a project using `hybrid` or `server` mode with an adapter. There are no special APIs needed inside of the island. -- [#10342](https://github.com/withastro/astro/pull/10342) [`a2e9b2b936666b2a4779feb00dcb8ff0ab82c2ec`](https://github.com/withastro/astro/commit/a2e9b2b936666b2a4779feb00dcb8ff0ab82c2ec) Thanks [@matthewp](https://github.com/matthewp)! - Fixes @astrojs/db loading TS in the fixtures + Enable server islands by adding the experimental flag to your Astro config with an appropriate `output` mode and adatper: -## 4.4.12 + ```js + import { defineConfig } from 'astro/config'; + import netlify from '@astrojs/netlify'; -### Patch Changes + export default defineConfig({ + output: 'hybrid', + adapter: netlify(), + experimental: { + serverIslands: true, + }, + }); + ``` -- [#10336](https://github.com/withastro/astro/pull/10336) [`f2e60a96754ed1d86001fe4d5d3a0c0ef657408d`](https://github.com/withastro/astro/commit/f2e60a96754ed1d86001fe4d5d3a0c0ef657408d) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fixes an issue where slotting interactive components within a "client:only" component prevented all component code in the page from running. + For more information, see the [server islands documentation](https://docs.astro.build/en/reference/configuration-reference/#experimentalserverislands). -## 4.4.11 +- [#11482](https://github.com/withastro/astro/pull/11482) [`7c9ed71`](https://github.com/withastro/astro/commit/7c9ed71bf1e13a0c825ba67946b6307d06f77233) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds a `--noSync` parameter to the `astro check` command to skip the type-gen step. This can be useful when running `astro check` inside packages that have Astro components, but are not Astro projects -### Patch Changes +- [#11098](https://github.com/withastro/astro/pull/11098) [`36e30a3`](https://github.com/withastro/astro/commit/36e30a33092c32c2de1deac316f49660247902b0) Thanks [@itsmatteomanf](https://github.com/itsmatteomanf)! - Adds a new `inferRemoteSize()` function that can be used to infer the dimensions of a remote image. -- [#10281](https://github.com/withastro/astro/pull/10281) [`9deb919ff95b1d2ffe5a5f70ec683e32ebfafd05`](https://github.com/withastro/astro/commit/9deb919ff95b1d2ffe5a5f70ec683e32ebfafd05) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where `404.astro` was ignored with `i18n` routing enabled. + Previously, the ability to infer these values was only available by adding the [`inferSize`] attribute to the `` and `` components or `getImage()`. Now, you can also access this data outside of these components. -- [#10279](https://github.com/withastro/astro/pull/10279) [`9ba3e2605daee3861e3bf6c5768f1d8bced4709d`](https://github.com/withastro/astro/commit/9ba3e2605daee3861e3bf6c5768f1d8bced4709d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where returning redirect responses resulted in missing files with certain adapters. + This is useful for when you need to know the dimensions of an image for styling purposes or to calculate different densities for responsive images. -- [#10319](https://github.com/withastro/astro/pull/10319) [`19ecccedaab6d8fa0ff23711c88fa7d4fa34df38`](https://github.com/withastro/astro/commit/19ecccedaab6d8fa0ff23711c88fa7d4fa34df38) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where streaming SSR responses sometimes failed with "`iterator.result` is not a function" on node-based adapters. + ```astro + --- + import { inferRemoteSize, Image } from 'astro:assets'; -- [#10302](https://github.com/withastro/astro/pull/10302) [`992537e79f1847b590a2e226aac88a47a6304f68`](https://github.com/withastro/astro/commit/992537e79f1847b590a2e226aac88a47a6304f68) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes an issue that causes static entrypoints build to fail because of the path in certain conditions. Specifically, it failed if the path had an extension (like `.astro`, `.mdx` etc) and such extension would be also within the path (like `./.astro/index.astro`). + const imageUrl = 'https://...'; + const { width, height } = await inferRemoteSize(imageUrl); + --- -- [#10298](https://github.com/withastro/astro/pull/10298) [`819d20a89c0d269333c2d397c1080884f516307a`](https://github.com/withastro/astro/commit/819d20a89c0d269333c2d397c1080884f516307a) Thanks [@Fryuni](https://github.com/Fryuni)! - Fix an incorrect conflict resolution between pages generated from static routes and rest parameters + + ``` -## 4.4.10 +- [#11391](https://github.com/withastro/astro/pull/11391) [`6f9b527`](https://github.com/withastro/astro/commit/6f9b52710567f3bec7939a98eb8c76f5ea0b2f91) Thanks [@ARipeAppleByYoursTruly](https://github.com/ARipeAppleByYoursTruly)! - Adds Shiki's [`defaultColor`](https://shiki.style/guide/dual-themes#without-default-color) option to the `` component, giving you more control in applying multiple themes + +- [#11176](https://github.com/withastro/astro/pull/11176) [`a751458`](https://github.com/withastro/astro/commit/a75145871b7bb9277584066e1f625df2aaabebce) Thanks [@tsawada](https://github.com/tsawada)! - Adds two new values to the [pagination `page` prop](https://docs.astro.build/en/reference/api-reference/#the-pagination-page-prop): `page.first` and `page.last` for accessing the URLs of the first and last pages. ### Patch Changes -- [#10235](https://github.com/withastro/astro/pull/10235) [`4bc360cd5f25496aca3232f6efb3710424a14a34`](https://github.com/withastro/astro/commit/4bc360cd5f25496aca3232f6efb3710424a14a34) Thanks [@sanman1k98](https://github.com/sanman1k98)! - Fixes jerky scrolling on IOS when using view transitions. +- [#11477](https://github.com/withastro/astro/pull/11477) [`7e9c4a1`](https://github.com/withastro/astro/commit/7e9c4a134c6ea7c8b92ea00038c0845b58c02bc5) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the development server was emitting a 404 status code when the user uses a rewrite that emits a 200 status code. -## 4.4.9 +- [#11479](https://github.com/withastro/astro/pull/11479) [`ca969d5`](https://github.com/withastro/astro/commit/ca969d538a6a8d64573f426b8a87ebd7e434bd71) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where invalid `astro:env` variables at runtime would not throw correctly -### Patch Changes +- [#11489](https://github.com/withastro/astro/pull/11489) [`061f1f4`](https://github.com/withastro/astro/commit/061f1f4d0cb306efd0c768645439111aec765c76) Thanks [@ematipico](https://github.com/ematipico)! - Move root inside the manifest and make serialisable -- [#10278](https://github.com/withastro/astro/pull/10278) [`a548a3a99c2835c19662fc38636f92b2bda26614`](https://github.com/withastro/astro/commit/a548a3a99c2835c19662fc38636f92b2bda26614) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes original images sometimes being kept / deleted when they shouldn't in both MDX and Markdoc +- [#11415](https://github.com/withastro/astro/pull/11415) [`e9334d0`](https://github.com/withastro/astro/commit/e9334d05ca88ed6df1becc1512c673e20414bf47) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Refactors how `sync` works and when it's called. Fixes an issue with `astro:env` types in dev not being generated -- [#10280](https://github.com/withastro/astro/pull/10280) [`3488be9b59d1cb65325b0e087c33bcd74aaa4926`](https://github.com/withastro/astro/commit/3488be9b59d1cb65325b0e087c33bcd74aaa4926) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Finalize db API to a shared db/ directory. +- [#11478](https://github.com/withastro/astro/pull/11478) [`3161b67`](https://github.com/withastro/astro/commit/3161b6789c57a3bb740ed117205dc55997eb74ea) Thanks [@bluwy](https://github.com/bluwy)! - Supports importing Astro components with Vite queries, like `?url`, `?raw`, and `?direct` -## 4.4.8 +- [#11491](https://github.com/withastro/astro/pull/11491) [`fe3afeb`](https://github.com/withastro/astro/commit/fe3afebd652289ec1b65eed983e804dbb37ed092) Thanks [@matthewp](https://github.com/matthewp)! - Fix for Server Islands in Vercel adapter -### Patch Changes + Vercel, and probably other adapters only allow pre-defined routes. This makes it so that the `astro:build:done` hook includes the `_server-islands/` route as part of the route data, which is used to configure available routes. -- [#10275](https://github.com/withastro/astro/pull/10275) [`5e3e74b61daa2ba44c761c9ab5745818661a656e`](https://github.com/withastro/astro/commit/5e3e74b61daa2ba44c761c9ab5745818661a656e) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes dev toolbar warning about using the proper loading attributes on images using `data:` URIs +- [#11483](https://github.com/withastro/astro/pull/11483) [`34f9c25`](https://github.com/withastro/astro/commit/34f9c25740f8eaae0d5e2a2b685b83556d23e63e) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes Astro not working on low versions of Node 18 and 20 + +- Updated dependencies [[`49b5145`](https://github.com/withastro/astro/commit/49b5145158a603b9bb951bf914a6a9780c218704)]: + - @astrojs/markdown-remark@5.2.0 -## 4.4.7 +## 4.11.6 ### Patch Changes -- [#10274](https://github.com/withastro/astro/pull/10274) [`e556151603a2f0173059d0f98fdcbec0610b48ff`](https://github.com/withastro/astro/commit/e556151603a2f0173059d0f98fdcbec0610b48ff) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression introduced in v4.4.5 where image optimization did not work in dev mode when a base was configured. +- [#11459](https://github.com/withastro/astro/pull/11459) [`bc2e74d`](https://github.com/withastro/astro/commit/bc2e74de384776caa252fd47dbeda895c0488c11) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes false positive audit warnings on elements with the role "tabpanel". -- [#10263](https://github.com/withastro/astro/pull/10263) [`9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb`](https://github.com/withastro/astro/commit/9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb) Thanks [@martrapp](https://github.com/martrapp)! - Adds auto completion for `astro:` event names when adding or removing event listeners on `document`. +- [#11472](https://github.com/withastro/astro/pull/11472) [`cb4e6d0`](https://github.com/withastro/astro/commit/cb4e6d09deb7507058115a3fd2a567019a501e4d) Thanks [@delucis](https://github.com/delucis)! - Avoids targeting all files in the `src/` directory for eager optimization by Vite. After this change, only JSX, Vue, Svelte, and Astro components get scanned for early optimization. -- [#10284](https://github.com/withastro/astro/pull/10284) [`07f89429a1ef5173d3321e0b362a9dc71fc74fe5`](https://github.com/withastro/astro/commit/07f89429a1ef5173d3321e0b362a9dc71fc74fe5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes an issue where in Node SSR, the image endpoint could be used maliciously to reveal unintended information about the underlying system. +- [#11387](https://github.com/withastro/astro/pull/11387) [`b498461`](https://github.com/withastro/astro/commit/b498461e277bffb0abe21b59a94b1e56a8c69d47) Thanks [@bluwy](https://github.com/bluwy)! - Fixes prerendering not removing unused dynamic imported chunks - Thanks to Google Security Team for reporting this issue. +- [#11437](https://github.com/withastro/astro/pull/11437) [`6ccb30e`](https://github.com/withastro/astro/commit/6ccb30e610eed34c2cc2c275485a8ac45c9b6b9e) Thanks [@NuroDev](https://github.com/NuroDev)! - Fixes a case where Astro's config `experimental.env.schema` keys did not allow numbers. Numbers are still not allowed as the first character to be able to generate valid JavaScript identifiers -## 4.4.6 +- [#11439](https://github.com/withastro/astro/pull/11439) [`08baf56`](https://github.com/withastro/astro/commit/08baf56f328ce4b6814a7f90089c0b3398d8bbfe) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Expands the `isInputError()` utility from `astro:actions` to accept errors of any type. This should now allow type narrowing from a try / catch block. -### Patch Changes + ```ts + // example.ts + import { actions, isInputError } from 'astro:actions'; -- [#10247](https://github.com/withastro/astro/pull/10247) [`fb773c9161bf8faa5ebd7e115f3564c3359e56ea`](https://github.com/withastro/astro/commit/fb773c9161bf8faa5ebd7e115f3564c3359e56ea) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue where `transition:animate="none"` still allowed the browser-native morph animation. + try { + await actions.like(new FormData()); + } catch (error) { + if (isInputError(error)) { + console.log(error.fields); + } + } + ``` -- [#10248](https://github.com/withastro/astro/pull/10248) [`8ae5d99534fc09d650e10e64a09b61a2807574f2`](https://github.com/withastro/astro/commit/8ae5d99534fc09d650e10e64a09b61a2807574f2) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where multiple injected routes with the same `entrypoint` but different `pattern` were incorrectly cached, causing some of them not being rendered in the dev server. +- [#11452](https://github.com/withastro/astro/pull/11452) [`0e66849`](https://github.com/withastro/astro/commit/0e6684983b9b24660a8fef83fe401ec1d567378a) Thanks [@FugiTech](https://github.com/FugiTech)! - Fixes an issue where using .nullish() in a formdata Astro action would always parse as a string -- [#10250](https://github.com/withastro/astro/pull/10250) [`57655a99db34e20e9661c039fab253b867013318`](https://github.com/withastro/astro/commit/57655a99db34e20e9661c039fab253b867013318) Thanks [@log101](https://github.com/log101)! - Fixes the overwriting of localised index pages with redirects +- [#11438](https://github.com/withastro/astro/pull/11438) [`619f07d`](https://github.com/withastro/astro/commit/619f07db701ebab2d2f2598dd2dcf93ba1e5719c) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Exposes utility types from `astro:actions` for the `defineAction` handler (`ActionHandler`) and the `ActionError` code (`ActionErrorCode`). -- [#10239](https://github.com/withastro/astro/pull/10239) [`9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd`](https://github.com/withastro/astro/commit/9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Improves the message of `MiddlewareCantBeLoaded` for clarity +- [#11456](https://github.com/withastro/astro/pull/11456) [`17e048d`](https://github.com/withastro/astro/commit/17e048de0e79d76b933d128676be2388954b419e) Thanks [@RickyC0626](https://github.com/RickyC0626)! - Fixes `astro dev --open` unexpected behavior that spawns a new tab every time a config file is saved -- [#10222](https://github.com/withastro/astro/pull/10222) [`ade9759cae74ca262b988260250bcb202235e811`](https://github.com/withastro/astro/commit/ade9759cae74ca262b988260250bcb202235e811) Thanks [@martrapp](https://github.com/martrapp)! - Adds a warning in DEV mode when using view transitions on a device with prefer-reduced-motion enabled. +- [#11337](https://github.com/withastro/astro/pull/11337) [`0a4b31f`](https://github.com/withastro/astro/commit/0a4b31ffeb41ad1dfb3141384e22787763fcae3d) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds a new property `experimental.env.validateSecrets` to allow validating private variables on the server. -- [#10251](https://github.com/withastro/astro/pull/10251) [`9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf`](https://github.com/withastro/astro/commit/9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes TypeScript type definitions for `Code` component `theme` and `experimentalThemes` props + By default, this is set to `false` and only public variables are checked on start. If enabled, secrets will also be checked on start (dev/build modes). This is useful for example in some CIs to make sure all your secrets are correctly set before deploying. -## 4.4.5 + ```js + // astro.config.mjs + import { defineConfig, envField } from 'astro/config'; -### Patch Changes + export default defineConfig({ + experimental: { + env: { + schema: { + // ... + }, + validateSecrets: true, + }, + }, + }); + ``` -- [#10221](https://github.com/withastro/astro/pull/10221) [`4db82d9c7dce3b73fe43b86020fcfa326c1357ec`](https://github.com/withastro/astro/commit/4db82d9c7dce3b73fe43b86020fcfa326c1357ec) Thanks [@matthewp](https://github.com/matthewp)! - Prevents errors in templates from crashing the server +- [#11443](https://github.com/withastro/astro/pull/11443) [`ea4bc04`](https://github.com/withastro/astro/commit/ea4bc04e9489c456e2b4b5dbd67d5e4cf3f89f97) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Expose new `ActionReturnType` utility from `astro:actions`. This infers the return type of an action by passing `typeof actions.name` as a type argument. This example defines a `like` action that returns `likes` as an object: -- [#10219](https://github.com/withastro/astro/pull/10219) [`afcb9d331179287629b5ffce4020931258bebefa`](https://github.com/withastro/astro/commit/afcb9d331179287629b5ffce4020931258bebefa) Thanks [@matthewp](https://github.com/matthewp)! - Fix dynamic slots missing hydration scripts + ```ts + // actions/index.ts + import { defineAction } from 'astro:actions'; -- [#10220](https://github.com/withastro/astro/pull/10220) [`1eadb1c5290f2f4baf538c34889a09d5fcfb9bd4`](https://github.com/withastro/astro/commit/1eadb1c5290f2f4baf538c34889a09d5fcfb9bd4) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes some built-in apps of the dev toolbar not closing when clicking the page + export const server = { + like: defineAction({ + handler: () => { + /* ... */ + return { likes: 42 }; + }, + }), + }; + ``` -- [#10154](https://github.com/withastro/astro/pull/10154) [`e64bd0740b44aed5cfaf67e5c37a1c56ed4442f4`](https://github.com/withastro/astro/commit/e64bd0740b44aed5cfaf67e5c37a1c56ed4442f4) Thanks [@Cherry](https://github.com/Cherry)! - Fixes an issue where `config.vite.build.assetsInlineLimit` could not be set as a function. + In your client code, you can infer this handler return value with `ActionReturnType`: -- [#10196](https://github.com/withastro/astro/pull/10196) [`8fb32f390d40cfa12a82c0645928468d27218866`](https://github.com/withastro/astro/commit/8fb32f390d40cfa12a82c0645928468d27218866) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where a warning about headers being accessed in static mode is unnecessarily shown when i18n is enabled. + ```ts + // client.ts + import { actions, ActionReturnType } from 'astro:actions'; -- [#10199](https://github.com/withastro/astro/pull/10199) [`6aa660ae7abc6841d7a3396b29f10b9fb7910ce5`](https://github.com/withastro/astro/commit/6aa660ae7abc6841d7a3396b29f10b9fb7910ce5) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where prerendered pages had access to query params in dev mode. + type LikesResult = ActionReturnType; + // -> { likes: number } + ``` -## 4.4.4 +- [#11436](https://github.com/withastro/astro/pull/11436) [`7dca68f`](https://github.com/withastro/astro/commit/7dca68ff2e0f089a3fd090650ee05b1942792fed) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fixes `astro:actions` autocompletion for the `defineAction` `accept` property -### Patch Changes +- [#11455](https://github.com/withastro/astro/pull/11455) [`645e128`](https://github.com/withastro/astro/commit/645e128537f1f20da6703afc115d06371d7da5dd) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Improves `astro:env` invalid variables errors -- [#10195](https://github.com/withastro/astro/pull/10195) [`903eace233033998811b72e27a54c80d8e59ff37`](https://github.com/withastro/astro/commit/903eace233033998811b72e27a54c80d8e59ff37) Thanks [@1574242600](https://github.com/1574242600)! - Fix build failure caused by read-only files under /public (in the presence of client-side JS). +## 4.11.5 -- [#10205](https://github.com/withastro/astro/pull/10205) [`459f74bc71748279fe7dce0688f38bd74b51c5c1`](https://github.com/withastro/astro/commit/459f74bc71748279fe7dce0688f38bd74b51c5c1) Thanks [@martrapp](https://github.com/martrapp)! - Adds an error message for non-string transition:name values +### Patch Changes -- [#10208](https://github.com/withastro/astro/pull/10208) [`8cd38f02456640c063552aef00b2b8a216b3935d`](https://github.com/withastro/astro/commit/8cd38f02456640c063552aef00b2b8a216b3935d) Thanks [@log101](https://github.com/log101)! - Fixes custom headers are not added to the Node standalone server responses in preview mode +- [#11408](https://github.com/withastro/astro/pull/11408) [`b9e906f`](https://github.com/withastro/astro/commit/b9e906f8e75444739aa259b62489d9f5749260b9) Thanks [@matthewp](https://github.com/matthewp)! - Revert change to how boolean attributes work -## 4.4.3 +## 4.11.4 ### Patch Changes -- [#10143](https://github.com/withastro/astro/pull/10143) [`7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab`](https://github.com/withastro/astro/commit/7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab) Thanks [@bluwy](https://github.com/bluwy)! - Improves the default `optimizeDeps.entries` Vite config to avoid globbing server endpoints, and respect the `srcDir` option +- [#11362](https://github.com/withastro/astro/pull/11362) [`93993b7`](https://github.com/withastro/astro/commit/93993b77cf4915b4c0d245df9ecbf2265f5893e7) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where creating manually the i18n middleware could break the logic of the functions of the virtual module `astro:i18n` -- [#10197](https://github.com/withastro/astro/pull/10197) [`c856c729404196900a7386c8426b81e79684a6a9`](https://github.com/withastro/astro/commit/c856c729404196900a7386c8426b81e79684a6a9) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes errors being logged twice in some cases +- [#11349](https://github.com/withastro/astro/pull/11349) [`98d9ce4`](https://github.com/withastro/astro/commit/98d9ce41f20c8bf024c937e8bde80d3c3dbbed99) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where Astro didn't throw an error when `Astro.rewrite` was used without providing the experimental flag -- [#10166](https://github.com/withastro/astro/pull/10166) [`598f30c7cd6c88558e3806d9bc5a15d426d83992`](https://github.com/withastro/astro/commit/598f30c7cd6c88558e3806d9bc5a15d426d83992) Thanks [@bluwy](https://github.com/bluwy)! - Improves Astro style tag HMR when updating imported styles +- [#11352](https://github.com/withastro/astro/pull/11352) [`a55ee02`](https://github.com/withastro/astro/commit/a55ee0268e1ca22597e9b5e6d1f24b4f28ad978b) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the rewrites didn't update the status code when using manual i18n routing. -- [#10194](https://github.com/withastro/astro/pull/10194) [`3cc20109277813ccb9578ca87a8b0d680a73c35c`](https://github.com/withastro/astro/commit/3cc20109277813ccb9578ca87a8b0d680a73c35c) Thanks [@matthewp](https://github.com/matthewp)! - Fixes an issue related to content collections usage in browser context caused by `csssec` +- [#11388](https://github.com/withastro/astro/pull/11388) [`3a223b4`](https://github.com/withastro/astro/commit/3a223b4811708cc93ebb27706118c1723e1fc013) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Adjusts the color of punctuations in error overlay. -## 4.4.2 +- [#11369](https://github.com/withastro/astro/pull/11369) [`e6de11f`](https://github.com/withastro/astro/commit/e6de11f4a941e29123da3714e5b8f17d25744f0f) Thanks [@bluwy](https://github.com/bluwy)! - Fixes attribute rendering for non-boolean attributes with boolean values + +## 4.11.3 ### Patch Changes -- [#10169](https://github.com/withastro/astro/pull/10169) [`a46249173edde66b03c19441144272baa8394fb4`](https://github.com/withastro/astro/commit/a46249173edde66b03c19441144272baa8394fb4) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue with the `i18n.routing` types, where an internal transformation was causing the generation of incorrect types for integrations. +- [#11347](https://github.com/withastro/astro/pull/11347) [`33bdc54`](https://github.com/withastro/astro/commit/33bdc5472929f72fa8e39624598bf929c48e60c0) Thanks [@bluwy](https://github.com/bluwy)! - Fixes installed packages detection when running `astro check` -## 4.4.1 +- [#11327](https://github.com/withastro/astro/pull/11327) [`0df8142`](https://github.com/withastro/astro/commit/0df81422a81c8f8900684d100e9b8f26365fa0b1) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue with the container APIs where a runtime error was thrown during the build, when using `pnpm` as package manager. + +## 4.11.2 ### Patch Changes -- [#9795](https://github.com/withastro/astro/pull/9795) [`5acc3135ba5309a566def466fbcbabd23f70cd68`](https://github.com/withastro/astro/commit/5acc3135ba5309a566def466fbcbabd23f70cd68) Thanks [@lilnasy](https://github.com/lilnasy)! - Refactors internals relating to middleware, endpoints, and page rendering. +- [#11335](https://github.com/withastro/astro/pull/11335) [`4c4741b`](https://github.com/withastro/astro/commit/4c4741b42dc531403f7b9647bd51951d0cdb8f5b) Thanks [@ematipico](https://github.com/ematipico)! - Reverts [#11292](https://github.com/withastro/astro/pull/11292), which caused a regression to the input type -- [#10105](https://github.com/withastro/astro/pull/10105) [`1f598b372410066c6fcd41cba9915f6aaf7befa8`](https://github.com/withastro/astro/commit/1f598b372410066c6fcd41cba9915f6aaf7befa8) Thanks [@negativems](https://github.com/negativems)! - Fixes an issue where some astro commands failed if the astro config file or an integration used the global `crypto` object. +- [#11326](https://github.com/withastro/astro/pull/11326) [`41121fb`](https://github.com/withastro/astro/commit/41121fbe00e144d4d93835811e1c4349664d9003) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where running `astro sync` when using the experimental `astro:env` feature would fail if environment variables were missing -- [#10165](https://github.com/withastro/astro/pull/10165) [`d50dddb71d87ce5b7928920f10eb4946a5339f86`](https://github.com/withastro/astro/commit/d50dddb71d87ce5b7928920f10eb4946a5339f86) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the `i18n.routing` object had all its fields defined as mandatory. Now they all are optionals and shouldn't break when using `astro.config.mts`. +- [#11338](https://github.com/withastro/astro/pull/11338) [`9752a0b`](https://github.com/withastro/astro/commit/9752a0b27526270fd0066f3db7049e9ae6af1ef8) Thanks [@zaaakher](https://github.com/zaaakher)! - Fixes svg icon margin in devtool tooltip title to look coherent in `rtl` and `ltr` layouts -- [#10132](https://github.com/withastro/astro/pull/10132) [`1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c`](https://github.com/withastro/astro/commit/1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c) Thanks [@bluwy](https://github.com/bluwy)! - Simplifies internal Vite preview server teardown +- [#11331](https://github.com/withastro/astro/pull/11331) [`f1b78a4`](https://github.com/withastro/astro/commit/f1b78a496034d53b0e9dfc276a4a1b1d691772c4) Thanks [@bluwy](https://github.com/bluwy)! - Removes `resolve` package and simplify internal resolve check -- [#10163](https://github.com/withastro/astro/pull/10163) [`b92d35f1026f3e99abb888d1a845bdda4efdc327`](https://github.com/withastro/astro/commit/b92d35f1026f3e99abb888d1a845bdda4efdc327) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where audit fails to initialize when encountered `` inside `` +- [#11339](https://github.com/withastro/astro/pull/11339) [`8fdbf0e`](https://github.com/withastro/astro/commit/8fdbf0e45beffdae3da1e7f36797575c92f8a0ba) Thanks [@matthewp](https://github.com/matthewp)! - Remove non-fatal errors from telemetry -- [#10079](https://github.com/withastro/astro/pull/10079) [`80f8996514e6d0546e94bd927650cd4ab2f1fa2f`](https://github.com/withastro/astro/commit/80f8996514e6d0546e94bd927650cd4ab2f1fa2f) Thanks [@ktym4a](https://github.com/ktym4a)! - Fix integrationData fetch to always be called even if View Transition is enabled. + Previously we tracked non-fatal errors in telemetry to get a good idea of the types of errors that occur in `astro dev`. However this has become noisy over time and results in a lot of data that isn't particularly useful. This removes those non-fatal errors from being tracked. -- [#10139](https://github.com/withastro/astro/pull/10139) [`3c73441eb2eaba767d6dad1b30c0353195d28791`](https://github.com/withastro/astro/commit/3c73441eb2eaba767d6dad1b30c0353195d28791) Thanks [@bluwy](https://github.com/bluwy)! - Fixes style-only change detection for Astro files if both the markup and styles are updated +## 4.11.1 -## 4.4.0 +### Patch Changes -### Minor Changes +- [#11308](https://github.com/withastro/astro/pull/11308) [`44c61dd`](https://github.com/withastro/astro/commit/44c61ddfd85f1c23f8cec8caeaa5e25897121996) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where custom `404.astro` and `500.astro` were not returning the correct status code when rendered inside a rewriting cycle. -- [#9614](https://github.com/withastro/astro/pull/9614) [`d469bebd7b45b060dc41d82ab1cf18ee6de7e051`](https://github.com/withastro/astro/commit/d469bebd7b45b060dc41d82ab1cf18ee6de7e051) Thanks [@matthewp](https://github.com/matthewp)! - Improves Node.js streaming performance. +- [#11302](https://github.com/withastro/astro/pull/11302) [`0622567`](https://github.com/withastro/astro/commit/06225673269201044358788f2a81dbe13912adce) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue with the view transition router when redirecting to an URL with different origin. - This uses an `AsyncIterable` instead of a `ReadableStream` to do streaming in Node.js. This is a non-standard enhancement by Node, which is done only in that environment. +- Updated dependencies [[`b6afe6a`](https://github.com/withastro/astro/commit/b6afe6a782f68f4a279463a144baaf99cb96b6dc), [`41064ce`](https://github.com/withastro/astro/commit/41064cee78c1cccd428f710a24c483aeb275fd95)]: + - @astrojs/markdown-remark@5.1.1 + - @astrojs/internal-helpers@0.4.1 -- [#10001](https://github.com/withastro/astro/pull/10001) [`748b2e87cd44d8bcc1ab9d7e504703057e2000cd`](https://github.com/withastro/astro/commit/748b2e87cd44d8bcc1ab9d7e504703057e2000cd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Removes content collection warning when a configured collection does not have a matching directory name. This should resolve `i18n` collection warnings for Starlight users. +## 4.11.0 - This also ensures configured collection names are always included in `getCollection()` and `getEntry()` types even when a matching directory is absent. We hope this allows users to discover typos during development by surfacing type information. +### Minor Changes -- [#10074](https://github.com/withastro/astro/pull/10074) [`7443929381b47db0639c49a4d32aec4177bd9102`](https://github.com/withastro/astro/commit/7443929381b47db0639c49a4d32aec4177bd9102) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add a UI showing the list of found problems when using the audit app in the dev toolbar +- [#11197](https://github.com/withastro/astro/pull/11197) [`4b46bd9`](https://github.com/withastro/astro/commit/4b46bd9bdcbb302f294aa27b8aa07099e104fa17) Thanks [@braebo](https://github.com/braebo)! - Adds [`ShikiTransformer`](https://shiki.style/packages/transformers#shikijs-transformers) support to the [``](https://docs.astro.build/en/reference/api-reference/#code-) component with a new `transformers` prop. -- [#10099](https://github.com/withastro/astro/pull/10099) [`b340f8fe3aaa81e38c4f1aa41498b159dc733d86`](https://github.com/withastro/astro/commit/b340f8fe3aaa81e38c4f1aa41498b159dc733d86) Thanks [@martrapp](https://github.com/martrapp)! - Fixes a regression where view transition names containing special characters such as spaces or punctuation stopped working. + Note that `transformers` only applies classes and you must provide your own CSS rules to target the elements of your code block. - Regular use naming your transitions with `transition: name` is unaffected. + ```astro + --- + import { transformerNotationFocus } from '@shikijs/transformers'; + import { Code } from 'astro:components'; - However, this fix may result in breaking changes if your project relies on the particular character encoding strategy Astro uses to translate `transition:name` directives into values of the underlying CSS `view-transition-name` property. For example, `Welcome to Astro` is now encoded as `Welcome_20to_20Astro_2e`. + const code = `const foo = 'hello' + const bar = ' world' + console.log(foo + bar) // [!code focus] + `; + --- - This mainly affects spaces and punctuation marks but no Unicode characters with codes >= 128. + -- [#9976](https://github.com/withastro/astro/pull/9976) [`91f75afbc642b6e73dd4ec18a1fe2c3128c68132`](https://github.com/withastro/astro/commit/91f75afbc642b6e73dd4ec18a1fe2c3128c68132) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Adds a new optional `astro:assets` image attribute `inferSize` for use with remote images. + + ``` - Remote images can now have their dimensions inferred just like local images. Setting `inferSize` to `true` allows you to use `getImage()` and the `` and `` components without setting the `width` and `height` properties. +- [#11134](https://github.com/withastro/astro/pull/11134) [`9042be0`](https://github.com/withastro/astro/commit/9042be049157ce859355f911565bc0c3d68f0aa1) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Improves the developer experience of the `500.astro` file by passing it a new `error` prop. + + When an error is thrown, the special `src/pages/500.astro` page now automatically receives the error as a prop. This allows you to display more specific information about the error on a custom 500 page. ```astro --- - import { Image, Picture, getImage } from 'astro:assets'; - const myPic = await getImage({ src: 'https://example.com/example.png', inferSize: true }); + // src/pages/500.astro + interface Props { + error: unknown; + } + + const { error } = Astro.props; --- - - +
{error instanceof Error ? error.message : 'Unknown error'}
``` - Read more about [using `inferSize` with remote images](https://docs.astro.build/en/guides/images/#infersize) in our documentation. - -- [#10015](https://github.com/withastro/astro/pull/10015) [`6884b103c8314a43e926c6acdf947cbf812a21f4`](https://github.com/withastro/astro/commit/6884b103c8314a43e926c6acdf947cbf812a21f4) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds initial support for performance audits to the dev toolbar + If an error occurs rendering this page, your host's default 500 error page will be shown to your visitor in production, and Astro's default error overlay will be shown in development. ### Patch Changes -- [#10116](https://github.com/withastro/astro/pull/10116) [`4bcc249a9f34aaac59658ca626c828bd6dbb8046`](https://github.com/withastro/astro/commit/4bcc249a9f34aaac59658ca626c828bd6dbb8046) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where the dev server froze when typescript aliases were used. +- [#11280](https://github.com/withastro/astro/pull/11280) [`fd3645f`](https://github.com/withastro/astro/commit/fd3645fe8364ec5e280b6802d1468867890d463c) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a bug that prevented cookies from being set when using experimental rewrites -- [#10096](https://github.com/withastro/astro/pull/10096) [`227cd83a51bbd451dc223fd16f4cf1b87b8e44f8`](https://github.com/withastro/astro/commit/227cd83a51bbd451dc223fd16f4cf1b87b8e44f8) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes regression on routing priority for multi-layer index pages +- [#11275](https://github.com/withastro/astro/pull/11275) [`bab700d`](https://github.com/withastro/astro/commit/bab700d69085b1de8f03fc1b0b31651f709cbfe3) Thanks [@syhily](https://github.com/syhily)! - Drop duplicated brackets in data collections schema generation. - The sorting algorithm positions more specific routes before less specific routes, and considers index pages to be more specific than a dynamic route with a rest parameter inside of it. - This means that `/blog` is considered more specific than `/blog/[...slug]`. +- [#11272](https://github.com/withastro/astro/pull/11272) [`ea987d7`](https://github.com/withastro/astro/commit/ea987d7da589ead9aa4b550f167f5e2f6c939d2e) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where rewriting `/` would cause an issue, when `trailingSlash` was set to `"never"`. - But this special case was being applied incorrectly to indexes, which could cause a problem in scenarios like the following: +- [#11272](https://github.com/withastro/astro/pull/11272) [`ea987d7`](https://github.com/withastro/astro/commit/ea987d7da589ead9aa4b550f167f5e2f6c939d2e) Thanks [@ematipico](https://github.com/ematipico)! - Reverts a logic where it wasn't possible to rewrite `/404` in static mode. It's **now possible** again - - `/` - - `/blog` - - `/blog/[...slug]` +- [#11264](https://github.com/withastro/astro/pull/11264) [`5a9c9a6`](https://github.com/withastro/astro/commit/5a9c9a60e7c32aa461b86b5bc667cb955e23d4d9) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes type generation for empty content collections - The algorithm would make the following comparisons: +- [#11279](https://github.com/withastro/astro/pull/11279) [`9a08d74`](https://github.com/withastro/astro/commit/9a08d74bc00ae2c3bc254f99580a22ce4df1d002) Thanks [@ascorbic](https://github.com/ascorbic)! - Improves type-checking and error handling to catch case where an image import is passed directly to `getImage()` - - `/` is more specific than `/blog` (incorrect) - - `/blog/[...slug]` is more specific than `/` (correct) - - `/blog` is more specific than `/blog/[...slug]` (correct) +- [#11292](https://github.com/withastro/astro/pull/11292) [`7f8f347`](https://github.com/withastro/astro/commit/7f8f34799528ed0b2011e1ea273bd0636f6e767d) Thanks [@jdtjenkins](https://github.com/jdtjenkins)! - Fixes a case where `defineAction` autocomplete for the `accept` prop would not show `"form"` as a possible value - Although the incorrect first comparison is not a problem by itself, it could cause the algorithm to make the wrong decision. - Depending on the other routes in the project, the sorting could perform just the last two comparisons and by transitivity infer the inverse of the third (`/blog/[...slug` > `/` > `/blog`), which is incorrect. +- [#11273](https://github.com/withastro/astro/pull/11273) [`cb4d078`](https://github.com/withastro/astro/commit/cb4d07819f0dbdfd94bc4f084edf7720ada01323) Thanks [@ascorbic](https://github.com/ascorbic)! - Corrects an inconsistency in dev where middleware would run for prerendered 404 routes. + Middleware is not run for prerendered 404 routes in production, so this was incorrect. - Now the algorithm doesn't have a special case for index pages and instead does the comparison soleley for rest parameter segments and their immediate parents, which is consistent with the transitivity property. +- [#11284](https://github.com/withastro/astro/pull/11284) [`f4b029b`](https://github.com/withastro/astro/commit/f4b029b08264268c68fc81ea25b264e81f47e683) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes an issue that would break `Astro.request.url` and `Astro.request.headers` in `astro dev` if HTTP/2 was enabled. -- [#10120](https://github.com/withastro/astro/pull/10120) [`787e6f52470cf07fb50c865948b2bc8fe45a6d31`](https://github.com/withastro/astro/commit/787e6f52470cf07fb50c865948b2bc8fe45a6d31) Thanks [@bluwy](https://github.com/bluwy)! - Updates and supports Vite 5.1 + HTTP/2 is now enabled by default in `astro dev` if `https` is configured in the Vite config. -- [#10096](https://github.com/withastro/astro/pull/10096) [`227cd83a51bbd451dc223fd16f4cf1b87b8e44f8`](https://github.com/withastro/astro/commit/227cd83a51bbd451dc223fd16f4cf1b87b8e44f8) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes edge case on i18n fallback routes +## 4.10.3 - Previously index routes deeply nested in the default locale, like `/some/nested/index.astro` could be mistaked as the root index for the default locale, resulting in an incorrect redirect on `/`. +### Patch Changes -- [#10112](https://github.com/withastro/astro/pull/10112) [`476b79a61165d0aac5e98459a4ec90762050a14b`](https://github.com/withastro/astro/commit/476b79a61165d0aac5e98459a4ec90762050a14b) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Renames the home Astro Devoolbar App to `astro:home` +- [#11213](https://github.com/withastro/astro/pull/11213) [`94ac7ef`](https://github.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Removes the `PUBLIC_` prefix constraint for `astro:env` public variables -- [#10117](https://github.com/withastro/astro/pull/10117) [`51b6ff7403c1223b1c399e88373075972c82c24c`](https://github.com/withastro/astro/commit/51b6ff7403c1223b1c399e88373075972c82c24c) Thanks [@hippotastic](https://github.com/hippotastic)! - Fixes an issue where `create astro`, `astro add` and `@astrojs/upgrade` would fail due to unexpected package manager CLI output. +- [#11213](https://github.com/withastro/astro/pull/11213) [`94ac7ef`](https://github.com/withastro/astro/commit/94ac7efd70fd264b10887805a02d5d1877af8701) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** -## 4.3.7 + Server secrets specified in the schema must now be imported from `astro:env/server`. Using `getSecret()` is no longer required to use these environment variables in your schema: -### Patch Changes + ```diff + - import { getSecret } from 'astro:env/server' + - const API_SECRET = getSecret("API_SECRET") + + import { API_SECRET } from 'astro:env/server' + ``` + + Note that using `getSecret()` with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema. + +- [#11234](https://github.com/withastro/astro/pull/11234) [`4385bf7`](https://github.com/withastro/astro/commit/4385bf7a4dc9c65bff53a30c660f7a909fcabfc9) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new function called `addServerRenderer` to the Container API. Use this function to manually store renderers inside the instance of your container. + + This new function should be preferred when using the Container API in environments like on-demand pages: + + ```ts + import type { APIRoute } from 'astro'; + import { experimental_AstroContainer } from 'astro/container'; + import reactRenderer from '@astrojs/react/server.js'; + import vueRenderer from '@astrojs/vue/server.js'; + import ReactComponent from '../components/button.jsx'; + import VueComponent from '../components/button.vue'; + + // MDX runtime is contained inside the Astro core + import mdxRenderer from 'astro/jsx/server.js'; + + // In case you need to import a custom renderer + import customRenderer from '../renderers/customRenderer.js'; + + export const GET: APIRoute = async (ctx) => { + const container = await experimental_AstroContainer.create(); + container.addServerRenderer({ renderer: reactRenderer }); + container.addServerRenderer({ renderer: vueRenderer }); + container.addServerRenderer({ renderer: customRenderer }); + // You can pass a custom name too + container.addServerRenderer({ + name: 'customRenderer', + renderer: customRenderer, + }); + const vueComponent = await container.renderToString(VueComponent); + return await container.renderToResponse(Component); + }; + ``` -- [#9857](https://github.com/withastro/astro/pull/9857) [`73bd900754365b006ee730df9f379ba924e5b3fa`](https://github.com/withastro/astro/commit/73bd900754365b006ee730df9f379ba924e5b3fa) Thanks [@iamyunsin](https://github.com/iamyunsin)! - Fixes false positives in the dev overlay audit when multiple `role` values exist. +- [#11249](https://github.com/withastro/astro/pull/11249) [`de60c69`](https://github.com/withastro/astro/commit/de60c69aa06c41f76a5510cc1d0bee4c8a5326a5) Thanks [@markgaze](https://github.com/markgaze)! - Fixes a performance issue with JSON schema generation -- [#10075](https://github.com/withastro/astro/pull/10075) [`71273edbb429b5afdba6f8ee14681b66e4c09ecc`](https://github.com/withastro/astro/commit/71273edbb429b5afdba6f8ee14681b66e4c09ecc) Thanks [@lilnasy](https://github.com/lilnasy)! - Improves error messages for island hydration. +- [#11242](https://github.com/withastro/astro/pull/11242) [`e4fc2a0`](https://github.com/withastro/astro/commit/e4fc2a0bafb4723566552d0c5954b25447890f51) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where the virtual module `astro:container` wasn't resolved -- [#10072](https://github.com/withastro/astro/pull/10072) [`8106178043050d142bf385bed2990730518f28e2`](https://github.com/withastro/astro/commit/8106178043050d142bf385bed2990730518f28e2) Thanks [@lilnasy](https://github.com/lilnasy)! - Clarifies error messages in endpoint routing. +- [#11236](https://github.com/withastro/astro/pull/11236) [`39bc3a5`](https://github.com/withastro/astro/commit/39bc3a5e8161232d6fdc6cc52b1f246083966d8e) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes a case where symlinked content collection directories were not correctly resolved -- [#9971](https://github.com/withastro/astro/pull/9971) [`d9266c4467ca0faa1213c1a5995164e5655ab375`](https://github.com/withastro/astro/commit/d9266c4467ca0faa1213c1a5995164e5655ab375) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where ReadableStream wasn't canceled in dev mode +- [#11258](https://github.com/withastro/astro/pull/11258) [`d996db6`](https://github.com/withastro/astro/commit/d996db6f0bf361ebd84b23d022db7bb10fb316e6) Thanks [@ascorbic](https://github.com/ascorbic)! - Adds a new error `RewriteWithBodyUsed` that throws when `Astro.rewrite` is used after the request body has already been read. -## 4.3.6 +- [#11243](https://github.com/withastro/astro/pull/11243) [`ba2b14c`](https://github.com/withastro/astro/commit/ba2b14cc28bd219c241313cdf142b736e7442014) Thanks [@V3RON](https://github.com/V3RON)! - Fixes a prerendering issue for libraries in `node_modules` when a folder with an underscore is in the path. -### Patch Changes +- [#11244](https://github.com/withastro/astro/pull/11244) [`d07d2f7`](https://github.com/withastro/astro/commit/d07d2f7ac9d87af907beaca700ba4116dc1d6f37) Thanks [@ematipico](https://github.com/ematipico)! - Improves the developer experience of the custom `500.astro` page in development mode. -- [#10063](https://github.com/withastro/astro/pull/10063) [`dac759798c111494e76affd2c2504d63944871fe`](https://github.com/withastro/astro/commit/dac759798c111494e76affd2c2504d63944871fe) Thanks [@marwan-mohamed12](https://github.com/marwan-mohamed12)! - Moves `shikiji-core` from `devDependencies` to `dependencies` to prevent type errors + Before, in development, an error thrown during the rendering phase would display the default error overlay, even when users had the `500.astro` page. -- [#10067](https://github.com/withastro/astro/pull/10067) [`989ea63bb2a5a670021541198aa70b8dc7c4bd2f`](https://github.com/withastro/astro/commit/989ea63bb2a5a670021541198aa70b8dc7c4bd2f) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression in the `astro:i18n` module, where the functions `getAbsoluteLocaleUrl` and `getAbsoluteLocaleUrlList` returned a URL with double slash with a certain combination of options. + Now, the development server will display the `500.astro` and the original error is logged in the console. -- [#10060](https://github.com/withastro/astro/pull/10060) [`1810309e65c596266355c3b7bb36cdac70f3305e`](https://github.com/withastro/astro/commit/1810309e65c596266355c3b7bb36cdac70f3305e) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where custom client directives added by integrations broke builds with a custom root. +- [#11240](https://github.com/withastro/astro/pull/11240) [`2851b0a`](https://github.com/withastro/astro/commit/2851b0aa2e2abe80ea603b53c67770e94980a8d3) Thanks [@ascorbic](https://github.com/ascorbic)! - Ignores query strings in module identifiers when matching ".astro" file extensions in Vite plugin -- [#9991](https://github.com/withastro/astro/pull/9991) [`8fb67c81bb84530b39df4a1449c0862def0854af`](https://github.com/withastro/astro/commit/8fb67c81bb84530b39df4a1449c0862def0854af) Thanks [@ktym4a](https://github.com/ktym4a)! - Increases compatibility with standard browser behavior by changing where view transitions occur on browser back navigation. +- [#11245](https://github.com/withastro/astro/pull/11245) [`e22be22`](https://github.com/withastro/astro/commit/e22be22e5729e60220726e92b52d2833c937fd1c) Thanks [@bluwy](https://github.com/bluwy)! - Refactors prerendering chunk handling to correctly remove unused code during the SSR runtime -## 4.3.5 +## 4.10.2 ### Patch Changes -- [#10022](https://github.com/withastro/astro/pull/10022) [`3fc76efb2a8faa47edf67562a1f0c84a19be1b33`](https://github.com/withastro/astro/commit/3fc76efb2a8faa47edf67562a1f0c84a19be1b33) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression where types for the `astro:content` module did not include required exports, leading to typescript errors. - -- [#10016](https://github.com/withastro/astro/pull/10016) [`037e4f12dd2f460d66f72c9f2d992b95e74d2da9`](https://github.com/withastro/astro/commit/037e4f12dd2f460d66f72c9f2d992b95e74d2da9) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where routes with a name that start with the name of the `i18n.defaultLocale` were incorrectly returning a 404 response. - -## 4.3.4 +- [#11231](https://github.com/withastro/astro/pull/11231) [`58d7dbb`](https://github.com/withastro/astro/commit/58d7dbb5e0cabea1ac7a35af5b46685fce50d723) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression for `getViteConfig`, where the inline config wasn't merged in the final config. -### Patch Changes +- [#11228](https://github.com/withastro/astro/pull/11228) [`1e293a1`](https://github.com/withastro/astro/commit/1e293a1b819024f16bfe482f272df0678cdd7874) Thanks [@ascorbic](https://github.com/ascorbic)! - Updates `getCollection()` to always return a cloned array -- [#10013](https://github.com/withastro/astro/pull/10013) [`e6b5306a7de779ce495d0ff076d302de0aa57eaf`](https://github.com/withastro/astro/commit/e6b5306a7de779ce495d0ff076d302de0aa57eaf) Thanks [@delucis](https://github.com/delucis)! - Fixes a regression in content collection types +- [#11207](https://github.com/withastro/astro/pull/11207) [`7d9aac3`](https://github.com/withastro/astro/commit/7d9aac376c4b8844917901f7f566f7259d7f66c8) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue in the rewriting logic where old data was not purged during the rewrite flow. This caused some false positives when checking the validity of URL path names during the rendering phase. -- [#10003](https://github.com/withastro/astro/pull/10003) [`ce4283331f18c6178654dd705e3cf02efeef004a`](https://github.com/withastro/astro/commit/ce4283331f18c6178654dd705e3cf02efeef004a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds support for `.strict()` on content collection schemas when a custom `slug` is present. +- [#11189](https://github.com/withastro/astro/pull/11189) [`75a8fe7`](https://github.com/withastro/astro/commit/75a8fe7e72b95f20c36f034de2b51b6a9550e27e) Thanks [@ematipico](https://github.com/ematipico)! - Improve error message when using `getLocaleByPath` on path that doesn't contain any locales. -## 4.3.3 +- [#11195](https://github.com/withastro/astro/pull/11195) [`0a6ab6f`](https://github.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds support for enums to `astro:env` -### Patch Changes + You can now call `envField.enum`: -- [#9998](https://github.com/withastro/astro/pull/9998) [`18ac0940ea1b49b6b0ddd9be1f96aef416e2d7ee`](https://github.com/withastro/astro/commit/18ac0940ea1b49b6b0ddd9be1f96aef416e2d7ee) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug in `Astro.currentLocale` that wasn't returning the correct locale when a locale is configured via `path` + ```js + import { defineConfig, envField } from 'astro/config'; -- [#9998](https://github.com/withastro/astro/pull/9998) [`18ac0940ea1b49b6b0ddd9be1f96aef416e2d7ee`](https://github.com/withastro/astro/commit/18ac0940ea1b49b6b0ddd9be1f96aef416e2d7ee) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression in `Astro.currentLocale` where it stopped working properly with dynamic routes + export default defineConfig({ + experimental: { + env: { + schema: { + API_VERSION: envField.enum({ + context: 'server', + access: 'secret', + values: ['v1', 'v2'], + }), + }, + }, + }, + }); + ``` -- [#9956](https://github.com/withastro/astro/pull/9956) [`81acac24a3cac5a9143155c1d9f838ea84a70421`](https://github.com/withastro/astro/commit/81acac24a3cac5a9143155c1d9f838ea84a70421) Thanks [@matthewp](https://github.com/matthewp)! - Fixes HMR for MDX dependencies in Content Collections +- [#11210](https://github.com/withastro/astro/pull/11210) [`66fc028`](https://github.com/withastro/astro/commit/66fc0283d3f1d1a4f17d7db65ca3521a01fb5bec) Thanks [@matthewp](https://github.com/matthewp)! - Close the iterator only after rendering is complete -- [#9999](https://github.com/withastro/astro/pull/9999) [`c53a31321a935e4be04809046d7e0ba3cc41b272`](https://github.com/withastro/astro/commit/c53a31321a935e4be04809046d7e0ba3cc41b272) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Rollbacks the feature which allowed to dynamically generate slots with variable slot names due to unexpected regressions. +- [#11195](https://github.com/withastro/astro/pull/11195) [`0a6ab6f`](https://github.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds additional validation options to `astro:env` -- [#9906](https://github.com/withastro/astro/pull/9906) [`3c0876cbed5033e6b5b42cc2b9d8b393d7e5a55e`](https://github.com/withastro/astro/commit/3c0876cbed5033e6b5b42cc2b9d8b393d7e5a55e) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Improves the types for the `astro:content` module by making low fidelity types available before running `astro sync` + `astro:env` schema datatypes `string` and `number` now have new optional validation rules: -## 4.3.2 + ```js + import { defineConfig, envField } from 'astro/config'; -### Patch Changes + export default defineConfig({ + experimental: { + env: { + schema: { + FOO: envField.string({ + // ... + max: 32, + min: 3, + length: 12, + url: true, + includes: 'foo', + startsWith: 'bar', + endsWith: 'baz', + }), + BAR: envField.number({ + // ... + gt: 2, + min: 3, + lt: 10, + max: 9, + int: true, + }), + }, + }, + }, + }); + ``` -- [#9932](https://github.com/withastro/astro/pull/9932) [`9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582`](https://github.com/withastro/astro/commit/9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where a warning was logged even when the feature `i18nDomains` wasn't enabled +- [#11211](https://github.com/withastro/astro/pull/11211) [`97724da`](https://github.com/withastro/astro/commit/97724da93ed7b1db19632c0cdb4b3aab1ff84812) Thanks [@matthewp](https://github.com/matthewp)! - Let middleware handle the original request URL -- [#9907](https://github.com/withastro/astro/pull/9907) [`6c894af5ab79f290f4ff7feb68617a66e91febc1`](https://github.com/withastro/astro/commit/6c894af5ab79f290f4ff7feb68617a66e91febc1) Thanks [@ktym4a](https://github.com/ktym4a)! - Load 404.html on all non-existent paths on astro preview. +- [#10607](https://github.com/withastro/astro/pull/10607) [`7327c6a`](https://github.com/withastro/astro/commit/7327c6acb197e1f2ea6cf94cfbc5700bc755f982) Thanks [@frankbits](https://github.com/frankbits)! - Fixes an issue where a leading slash created incorrect conflict resolution between pages generated from static routes and catch-all dynamic routes -## 4.3.1 +## 4.10.1 ### Patch Changes -- [#9841](https://github.com/withastro/astro/pull/9841) [`27ea080e24e2c5cdc59b63b1dfe0a83a0c696597`](https://github.com/withastro/astro/commit/27ea080e24e2c5cdc59b63b1dfe0a83a0c696597) Thanks [@kristianbinau](https://github.com/kristianbinau)! - Makes the warning clearer when having a custom `base` and requesting a public URL without it - -- [#9888](https://github.com/withastro/astro/pull/9888) [`9d2fdb293d6a7323e10126cebad18ef9a2ea2800`](https://github.com/withastro/astro/commit/9d2fdb293d6a7323e10126cebad18ef9a2ea2800) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves error handling logic for the `astro sync` command. +- [#11198](https://github.com/withastro/astro/pull/11198) [`8b9a499`](https://github.com/withastro/astro/commit/8b9a499d3733e9d0fc6a0bd067ece19bd36f4726) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where `astro:env` `getSecret` would not retrieve environment variables properly in dev and build modes -- [#9918](https://github.com/withastro/astro/pull/9918) [`d52529e09450c84933dd15d6481edb32269f537b`](https://github.com/withastro/astro/commit/d52529e09450c84933dd15d6481edb32269f537b) Thanks [@LarryIVC](https://github.com/LarryIVC)! - Adds the `name` attribute to the `
` tag type +- [#11206](https://github.com/withastro/astro/pull/11206) [`734b98f`](https://github.com/withastro/astro/commit/734b98fecf0212cd76be3c935a49f84a9a7dab34) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** -- [#9938](https://github.com/withastro/astro/pull/9938) [`1568afb78a163db63a4cde146dec87785a83db1d`](https://github.com/withastro/astro/commit/1568afb78a163db63a4cde146dec87785a83db1d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression where middleware did not run for prerendered pages and endpoints. + Updates the adapter `astro:env` entrypoint from `astro:env/setup` to `astro/env/setup` -- [#9931](https://github.com/withastro/astro/pull/9931) [`44674418965d658733d3602668a9354e18f8ef89`](https://github.com/withastro/astro/commit/44674418965d658733d3602668a9354e18f8ef89) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression where a response created with `Response.redirect` or containing `null` as the body never completed in node-based adapters. +- [#11205](https://github.com/withastro/astro/pull/11205) [`8c45391`](https://github.com/withastro/astro/commit/8c4539145f0b6a735b65852b2f2b1a7e9f5a9c3f) Thanks [@Nin3lee](https://github.com/Nin3lee)! - Fixes a typo in the config reference -## 4.3.0 +## 4.10.0 ### Minor Changes -- [#9839](https://github.com/withastro/astro/pull/9839) [`58f9e393a188702eef5329e41deff3dcb65a3230`](https://github.com/withastro/astro/commit/58f9e393a188702eef5329e41deff3dcb65a3230) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds a new `ComponentProps` type export from `astro/types` to get the props type of an Astro component. +- [#10974](https://github.com/withastro/astro/pull/10974) [`2668ef9`](https://github.com/withastro/astro/commit/2668ef984104574f25f29ef75e2572a0745d1666) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Adds experimental support for the `astro:env` API. + + The `astro:env` API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate `/client` or `/server` module: ```astro --- - import type { ComponentProps } from 'astro/types'; - import Button from './Button.astro'; + import { PUBLIC_APP_ID } from 'astro:env/client'; + import { PUBLIC_API_URL, getSecret } from 'astro:env/server'; + const API_TOKEN = getSecret('API_TOKEN'); - type myButtonProps = ComponentProps; + const data = await fetch(`${PUBLIC_API_URL}/users`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${API_TOKEN}`, + }, + body: JSON.stringify({ appId: PUBLIC_APP_ID }), + }); --- ``` -- [#9159](https://github.com/withastro/astro/pull/9159) [`7d937c158959e76443a02f740b10e251d14dbd8c`](https://github.com/withastro/astro/commit/7d937c158959e76443a02f740b10e251d14dbd8c) Thanks [@bluwy](https://github.com/bluwy)! - Adds CLI shortcuts as an easter egg for the dev server: + To define the data type and properties of your environment variables, declare a schema in your Astro config in `experimental.env.schema`. The `envField` helper allows you define your variable as a string, number, or boolean and pass properties in an object: - - `o + enter`: opens the site in your browser - - `q + enter`: quits the dev server - - `h + enter`: prints all available shortcuts + ```js + // astro.config.mjs + import { defineConfig, envField } from 'astro/config'; -- [#9764](https://github.com/withastro/astro/pull/9764) [`fad4f64aa149086feda2d1f3a0b655767034f1a8`](https://github.com/withastro/astro/commit/fad4f64aa149086feda2d1f3a0b655767034f1a8) Thanks [@matthewp](https://github.com/matthewp)! - Adds a new `build.format` configuration option: `'preserve'`. This option will preserve your source structure in the final build. + export default defineConfig({ + experimental: { + env: { + schema: { + PUBLIC_API_URL: envField.string({ context: 'client', access: 'public', optional: true }), + PUBLIC_PORT: envField.number({ context: 'server', access: 'public', default: 4321 }), + API_SECRET: envField.string({ context: 'server', access: 'secret' }), + }, + }, + }, + }); + ``` - The existing configuration options, `file` and `directory`, either build all of your HTML pages as files matching the route name (e.g. `/about.html`) or build all your files as `index.html` within a nested directory structure (e.g. `/about/index.html`), respectively. It was not previously possible to control the HTML file built on a per-file basis. + There are three kinds of environment variables, determined by the combination of `context` (`client` or `server`) and `access` (`private` or `public`) settings defined in your [`env.schema`](#experimentalenvschema): - One limitation of `build.format: 'file'` is that it cannot create `index.html` files for any individual routes (other than the base path of `/`) while otherwise building named files. Creating explicit index pages within your file structure still generates a file named for the page route (e.g. `src/pages/about/index.astro` builds `/about.html`) when using the `file` configuration option. + - **Public client variables**: These variables end up in both your final client and server bundles, and can be accessed from both client and server through the `astro:env/client` module: - Rather than make a breaking change to allow `build.format: 'file'` to be more flexible, we decided to create a new `build.format: 'preserve'`. + ```js + import { PUBLIC_API_URL } from 'astro:env/client'; + ``` - The new format will preserve how the filesystem is structured and make sure that is mirrored over to production. Using this option: + - **Public server variables**: These variables end up in your final server bundle and can be accessed on the server through the `astro:env/server` module: - - `about.astro` becomes `about.html` - - `about/index.astro` becomes `about/index.html` + ```js + import { PUBLIC_PORT } from 'astro:env/server'; + ``` - See the [`build.format` configuration options reference](https://docs.astro.build/en/reference/configuration-reference/#buildformat) for more details. + - **Secret server variables**: These variables are not part of your final bundle and can be accessed on the server through the `getSecret()` helper function available from the `astro:env/server` module: -- [#9143](https://github.com/withastro/astro/pull/9143) [`041fdd5c89920f7ccf944b095f29e451f78b0e28`](https://github.com/withastro/astro/commit/041fdd5c89920f7ccf944b095f29e451f78b0e28) Thanks [@ematipico](https://github.com/ematipico)! - Adds experimental support for a new i18n domain routing option (`"domains"`) that allows you to configure different domains for individual locales in entirely server-rendered projects. + ```js + import { getSecret } from 'astro:env/server'; - To enable this in your project, first configure your `server`-rendered project's i18n routing with your preferences if you have not already done so. Then, set the `experimental.i18nDomains` flag to `true` and add `i18n.domains` to map any of your supported `locales` to custom URLs: + const API_SECRET = getSecret('API_SECRET'); // typed + const SECRET_NOT_IN_SCHEMA = getSecret('SECRET_NOT_IN_SCHEMA'); // string | undefined + ``` + + **Note:** Secret client variables are not supported because there is no safe way to send this data to the client. Therefore, it is not possible to configure both `context: "client"` and `access: "secret"` in your schema. + + To learn more, check out [the documentation](https://docs.astro.build/en/reference/configuration-reference/#experimentalenv). + +### Patch Changes + +- [#11192](https://github.com/withastro/astro/pull/11192) [`58b10a0`](https://github.com/withastro/astro/commit/58b10a073192030a251cff8ad706ab5b015180c9) Thanks [@liruifengv](https://github.com/liruifengv)! - Improves DX by throwing the original `AstroUserError` when an error is thrown inside a `.mdx` file. + +- [#11136](https://github.com/withastro/astro/pull/11136) [`35ef53c`](https://github.com/withastro/astro/commit/35ef53c0897c0d360efc086a71c5f4406721d2fe) Thanks [@ematipico](https://github.com/ematipico)! - Errors that are emitted during a rewrite are now bubbled up and shown to the user. A 404 response is not returned anymore. + +- [#11144](https://github.com/withastro/astro/pull/11144) [`803dd80`](https://github.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@ematipico](https://github.com/ematipico)! - The integration now exposes a function called `getContainerRenderer`, that can be used inside the Container APIs to load the relative renderer. ```js - //astro.config.mjs" - import { defineConfig } from 'astro/config'; - export default defineConfig({ - site: 'https://example.com', - output: 'server', // required, with no prerendered pages - adapter: node({ - mode: 'standalone', - }), - i18n: { - defaultLocale: 'en', - locales: ['es', 'en', 'fr', 'ja'], - routing: { - prefixDefaultLocale: false, - }, - domains: { - fr: 'https://fr.example.com', - es: 'https://example.es', - }, - }, - experimental: { - i18nDomains: true, - }, + import { experimental_AstroContainer as AstroContainer } from 'astro/container'; + import ReactWrapper from '../src/components/ReactWrapper.astro'; + import { loadRenderers } from 'astro:container'; + import { getContainerRenderer } from '@astrojs/react'; + + test('ReactWrapper with react renderer', async () => { + const renderers = await loadRenderers([getContainerRenderer()]); + const container = await AstroContainer.create({ + renderers, + }); + const result = await container.renderToString(ReactWrapper); + + expect(result).toContain('Counter'); + expect(result).toContain('Count: 5'); }); ``` - With `"domains"` configured, the URLs emitted by `getAbsoluteLocaleUrl()` and `getAbsoluteLocaleUrlList()` will use the options set in `i18n.domains`. +- [#11144](https://github.com/withastro/astro/pull/11144) [`803dd80`](https://github.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@ematipico](https://github.com/ematipico)! - **BREAKING CHANGE to the experimental Container API only** - ```js - import { getAbsoluteLocaleUrl } from 'astro:i18n'; + Changes the **type** of the `renderers` option of the `AstroContainer::create` function and adds a dedicated function `loadRenderers()` to load the rendering scripts from renderer integration packages (`@astrojs/react`, `@astrojs/preact`, `@astrojs/solid-js`, `@astrojs/svelte`, `@astrojs/vue`, `@astrojs/lit`, and `@astrojs/mdx`). - getAbsoluteLocaleUrl('en', 'about'); // will return "https://example.com/about" - getAbsoluteLocaleUrl('fr', 'about'); // will return "https://fr.example.com/about" - getAbsoluteLocaleUrl('es', 'about'); // will return "https://example.es/about" - getAbsoluteLocaleUrl('ja', 'about'); // will return "https://example.com/ja/about" + You no longer need to know the individual, direct file paths to the client and server rendering scripts for each renderer integration package. Now, there is a dedicated function to load the renderer from each package, which is available from `getContainerRenderer()`: + + ```diff + import { experimental_AstroContainer as AstroContainer } from 'astro/container'; + import ReactWrapper from '../src/components/ReactWrapper.astro'; + import { loadRenderers } from "astro:container"; + import { getContainerRenderer } from "@astrojs/react"; + + test('ReactWrapper with react renderer', async () => { + + const renderers = await loadRenderers([getContainerRenderer()]) + - const renderers = [ + - { + - name: '@astrojs/react', + - clientEntrypoint: '@astrojs/react/client.js', + - serverEntrypoint: '@astrojs/react/server.js', + - }, + - ]; + const container = await AstroContainer.create({ + renderers, + }); + const result = await container.renderToString(ReactWrapper); + + expect(result).toContain('Counter'); + expect(result).toContain('Count: 5'); + }); ``` - Similarly, your localized files will create routes at corresponding URLs: + The new `loadRenderers()` helper function is available from `astro:container`, a virtual module that can be used when running the Astro container inside `vite`. - - The file `/en/about.astro` will be reachable at the URL `https://example.com/about`. - - The file `/fr/about.astro` will be reachable at the URL `https://fr.example.com/about`. - - The file `/es/about.astro` will be reachable at the URL `https://example.es/about`. - - The file `/ja/about.astro` will be reachable at the URL `https://example.com/ja/about`. +- [#11136](https://github.com/withastro/astro/pull/11136) [`35ef53c`](https://github.com/withastro/astro/commit/35ef53c0897c0d360efc086a71c5f4406721d2fe) Thanks [@ematipico](https://github.com/ematipico)! - It's not possible anymore to use `Astro.rewrite("/404")` inside static pages. This isn't counterproductive because Astro will end-up emitting a page that contains the HTML of 404 error page. - See our [Internationalization Guide](https://docs.astro.build/en/guides/internationalization/#domains-experimental) for more details and limitations on this experimental routing feature. + It's still possible to use `Astro.rewrite("/404")` inside on-demand pages, or pages that opt-out from prerendering. -- [#9755](https://github.com/withastro/astro/pull/9755) [`d4b886141bb342ac71b1c060e67d66ca2ffbb8bd`](https://github.com/withastro/astro/commit/d4b886141bb342ac71b1c060e67d66ca2ffbb8bd) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Fixes an issue where images in Markdown required a relative specifier (e.g. `./`) +- [#11191](https://github.com/withastro/astro/pull/11191) [`6e29a17`](https://github.com/withastro/astro/commit/6e29a172f153d15fac07320488fae01dece71748) Thanks [@matthewp](https://github.com/matthewp)! - Fixes a case where `Astro.url` would be incorrect when having `build.format` set to `'preserve'` in the Astro config - Now, you can use the standard `![](img.png)` syntax in Markdown files for images colocated in the same folder: no relative specifier required! +- [#11182](https://github.com/withastro/astro/pull/11182) [`40b0b4d`](https://github.com/withastro/astro/commit/40b0b4d1e4ef1aa95d5e9011652444b855ab0b9c) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where `Astro.rewrite` wasn't carrying over the body of a `Request` in on-demand pages. - There is no need to update your project; your existing images will still continue to work. However, you may wish to remove any relative specifiers from these Markdown images as they are no longer necessary: +- [#11194](https://github.com/withastro/astro/pull/11194) [`97fbe93`](https://github.com/withastro/astro/commit/97fbe938a9b07d52d61011da4bd5a8b5ad85a700) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the function `getViteConfig` wasn't returning the correct merged Astro configuration - ```diff - - ![A cute dog](./dog.jpg) - + ![A cute dog](dog.jpg) - - ``` +## 4.9.3 ### Patch Changes -- [#9908](https://github.com/withastro/astro/pull/9908) [`2f6d1faa6f2d6de2d4ccd2a48adf5adadc82e593`](https://github.com/withastro/astro/commit/2f6d1faa6f2d6de2d4ccd2a48adf5adadc82e593) Thanks [@lilnasy](https://github.com/lilnasy)! - Improves http behavior relating to errors encountered while streaming a response. +- [#11171](https://github.com/withastro/astro/pull/11171) [`ff8004f`](https://github.com/withastro/astro/commit/ff8004f6a7b2aab4c6ac367f13744a341c3c5462) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Guard globalThis.astroAsset usage in proxy code to avoid errors in wonky situations -- [#9877](https://github.com/withastro/astro/pull/9877) [`7be5f94dcfc73a78d0fb301eeff51614d987a165`](https://github.com/withastro/astro/commit/7be5f94dcfc73a78d0fb301eeff51614d987a165) Thanks [@fabiankachlock](https://github.com/fabiankachlock)! - Fixes the content config type path on windows +- [#11178](https://github.com/withastro/astro/pull/11178) [`1734c49`](https://github.com/withastro/astro/commit/1734c49f516ff7d778d6724a0db6d39649921b4b) Thanks [@theoephraim](https://github.com/theoephraim)! - Improves `isPromise` utility to check the presence of `then` on an object before trying to access it - which can cause undesired side-effects on Proxy objects -- [#9143](https://github.com/withastro/astro/pull/9143) [`041fdd5c89920f7ccf944b095f29e451f78b0e28`](https://github.com/withastro/astro/commit/041fdd5c89920f7ccf944b095f29e451f78b0e28) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where the function `getLocaleRelativeUrlList` wasn't normalising the paths by default +- [#11183](https://github.com/withastro/astro/pull/11183) [`3cfa2ac`](https://github.com/withastro/astro/commit/3cfa2ac7e51d7bea96980403c393f9bcda1e9375) Thanks [@66Leo66](https://github.com/66Leo66)! - Suggest `pnpm dlx` instead of `pnpx` in update check. -- [#9911](https://github.com/withastro/astro/pull/9911) [`aaedb848b1d6f683840035865528506a346ea659`](https://github.com/withastro/astro/commit/aaedb848b1d6f683840035865528506a346ea659) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes an issue where some adapters that do not include a `start()` export would error rather than silently proceed +- [#11147](https://github.com/withastro/astro/pull/11147) [`2d93902`](https://github.com/withastro/astro/commit/2d93902f4c51dcc62b077b0546ead688e6f32c63) Thanks [@kitschpatrol](https://github.com/kitschpatrol)! - Fixes invalid MIME types in Picture source elements for jpg and svg extensions, which was preventing otherwise valid source variations from being shown by the browser -## 4.2.8 +- [#11141](https://github.com/withastro/astro/pull/11141) [`19df89f`](https://github.com/withastro/astro/commit/19df89f87c74205ebc76aeac43ca20b00694acec) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an internal error that prevented the `AstroContainer` to render the `Content` component. -### Patch Changes + You can now write code similar to the following to render content collections: -- [#9884](https://github.com/withastro/astro/pull/9884) [`37369550ab57ca529fd6c796e5b0e96e897ca6e5`](https://github.com/withastro/astro/commit/37369550ab57ca529fd6c796e5b0e96e897ca6e5) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where multiple cookies were sent in a single Set-Cookie header in the dev mode. + ```js + const entry = await getEntry(collection, slug); + const { Content } = await entry.render(); + const content = await container.renderToString(Content); + ``` -- [#9876](https://github.com/withastro/astro/pull/9876) [`e9027f194b939ac5a4d795ee1a2c24e4a6fbefc0`](https://github.com/withastro/astro/commit/e9027f194b939ac5a4d795ee1a2c24e4a6fbefc0) Thanks [@friedemannsommer](https://github.com/friedemannsommer)! - Fixes an issue where using `Response.redirect` in an endpoint led to an error. +- [#11170](https://github.com/withastro/astro/pull/11170) [`ba20c71`](https://github.com/withastro/astro/commit/ba20c718a4ccd1009bdf81f8265956bff1d19d05) Thanks [@matthewp](https://github.com/matthewp)! - Retain client scripts in content cache -- [#9882](https://github.com/withastro/astro/pull/9882) [`13c3b712c7ba45d0081f459fc06f142216a4ec59`](https://github.com/withastro/astro/commit/13c3b712c7ba45d0081f459fc06f142216a4ec59) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improves handling of YAML parsing errors +## 4.9.2 -- [#9878](https://github.com/withastro/astro/pull/9878) [`a40a0ff5883c7915dd55881dcebd052b9f94a0eb`](https://github.com/withastro/astro/commit/a40a0ff5883c7915dd55881dcebd052b9f94a0eb) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where setting trailingSlash to "never" had no effect on `Astro.url`. +### Patch Changes -## 4.2.7 +- [#11138](https://github.com/withastro/astro/pull/11138) [`98e0372`](https://github.com/withastro/astro/commit/98e0372cfd47a3e025be2ac68d1e9ebf06cf548b) Thanks [@ematipico](https://github.com/ematipico)! - You can now pass `props` when rendering a component using the Container APIs: -### Patch Changes + ```js + import { experimental_AstroContainer as AstroContainer } from 'astro/container'; + import Card from '../src/components/Card.astro'; -- [#9840](https://github.com/withastro/astro/pull/9840) [`70fdf1a5c660057152c1ca111dcc89ceda5c8840`](https://github.com/withastro/astro/commit/70fdf1a5c660057152c1ca111dcc89ceda5c8840) Thanks [@delucis](https://github.com/delucis)! - Expose `ContentConfig` type from `astro:content` + const container = await AstroContainer.create(); + const result = await container.renderToString(Card, { + props: { + someState: true, + }, + }); + ``` -- [#9865](https://github.com/withastro/astro/pull/9865) [`00ba9f1947ca9016cd0ee4d8f6048027fab2ab9a`](https://github.com/withastro/astro/commit/00ba9f1947ca9016cd0ee4d8f6048027fab2ab9a) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug in `Astro.currentLocale` where the value was incorrectly computed during the build. +## 4.9.1 -- [#9838](https://github.com/withastro/astro/pull/9838) [`0a06d87a1e2b94be00a954f350c184222fa0594d`](https://github.com/withastro/astro/commit/0a06d87a1e2b94be00a954f350c184222fa0594d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where `astro:i18n` could not be used in framework components. +### Patch Changes -- Updated dependencies [[`44c957f893c6bf5f5b7c78301de7b21c5975584d`](https://github.com/withastro/astro/commit/44c957f893c6bf5f5b7c78301de7b21c5975584d)]: - - @astrojs/markdown-remark@4.2.1 +- [#11129](https://github.com/withastro/astro/pull/11129) [`4bb9269`](https://github.com/withastro/astro/commit/4bb926908d9a7ee134701c3e5a1b5e6ea688f843) Thanks [@matthewp](https://github.com/matthewp)! - Prevent errors from adapters when i18n domains is not used -## 4.2.6 +## 4.9.0 -### Patch Changes +### Minor Changes -- [#9825](https://github.com/withastro/astro/pull/9825) [`e4370e9e9dd862425eced25823c82e77d9516927`](https://github.com/withastro/astro/commit/e4370e9e9dd862425eced25823c82e77d9516927) Thanks [@tugrulates](https://github.com/tugrulates)! - Fixes false positive aria role errors on interactive elements +- [#11051](https://github.com/withastro/astro/pull/11051) [`12a1bcc`](https://github.com/withastro/astro/commit/12a1bccc818af292cdd2a8ed0f3e3c042b9819b4) Thanks [@ematipico](https://github.com/ematipico)! - Introduces an experimental Container API to render `.astro` components in isolation. -- [#9828](https://github.com/withastro/astro/pull/9828) [`a3df9d83ca92abb5f08f576631019c1604204bd9`](https://github.com/withastro/astro/commit/a3df9d83ca92abb5f08f576631019c1604204bd9) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a case where shared modules among pages and middleware were transformed to a no-op after the build. + This API introduces three new functions to allow you to create a new container and render an Astro component returning either a string or a Response: -- [#9834](https://github.com/withastro/astro/pull/9834) [`1885cea308a62b173a50967cf5a0b174b3c3f3f1`](https://github.com/withastro/astro/commit/1885cea308a62b173a50967cf5a0b174b3c3f3f1) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes third-party dev toolbar apps not loading correctly when using absolute paths on Windows + - `create()`: creates a new instance of the container. + - `renderToString()`: renders a component and return a string. + - `renderToResponse()`: renders a component and returns the `Response` emitted by the rendering phase. -## 4.2.5 + The first supported use of this new API is to enable unit testing. For example, with `vitest`, you can create a container to render your component with test data and check the result: -### Patch Changes + ```js + import { experimental_AstroContainer as AstroContainer } from 'astro/container'; + import { expect, test } from 'vitest'; + import Card from '../src/components/Card.astro'; -- [#9818](https://github.com/withastro/astro/pull/9818) [`d688954c5adba75b0d676694fbf5fb0da1c0af13`](https://github.com/withastro/astro/commit/d688954c5adba75b0d676694fbf5fb0da1c0af13) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improves the wording of a few confusing error messages + test('Card with slots', async () => { + const container = await AstroContainer.create(); + const result = await container.renderToString(Card, { + slots: { + default: 'Card content', + }, + }); -- [#9680](https://github.com/withastro/astro/pull/9680) [`5d7db1dbb0ff06db98e08b0ca241ff09d0b8b44d`](https://github.com/withastro/astro/commit/5d7db1dbb0ff06db98e08b0ca241ff09d0b8b44d) Thanks [@loucyx](https://github.com/loucyx)! - Fixes types generation from Content Collections config file + expect(result).toContain('This is a card'); + expect(result).toContain('Card content'); + }); + ``` -- [#9822](https://github.com/withastro/astro/pull/9822) [`bd880e8437ea2df16f322f604865c1148a9fd4cf`](https://github.com/withastro/astro/commit/bd880e8437ea2df16f322f604865c1148a9fd4cf) Thanks [@liruifengv](https://github.com/liruifengv)! - Applies the correct escaping to identifiers used with `transition:name`. + For a complete reference, see the [Container API docs](https://docs.astro.build/en/reference/container-reference/). -- [#9830](https://github.com/withastro/astro/pull/9830) [`f3d22136e53fd902310024519fc4de83f0a58039`](https://github.com/withastro/astro/commit/f3d22136e53fd902310024519fc4de83f0a58039) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where 404 responses from endpoints were replaced with contents of 404.astro in dev mode. + For a feature overview, and to give feedback on this experimental API, see the [Container API roadmap discussion](https://github.com/withastro/roadmap/pull/916). -- [#9816](https://github.com/withastro/astro/pull/9816) [`2a44c8f93201958fba2d1e83046eabcaef186b7c`](https://github.com/withastro/astro/commit/2a44c8f93201958fba2d1e83046eabcaef186b7c) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds telemetry for when apps are toggled in the dev toolbar. This data is completely anonymous and only the names of built-in apps are shared with us. This data will help us monitor how much the dev toolbar is used and which apps are used more. For more information on how Astro collects telemetry, visit the following page: https://astro.build/telemetry/ +- [#11021](https://github.com/withastro/astro/pull/11021) [`2d4c8fa`](https://github.com/withastro/astro/commit/2d4c8faa56a64d963fe7847b5be2d7a59e12ed5b) Thanks [@ematipico](https://github.com/ematipico)! - The CSRF protection feature that was introduced behind a flag in [v4.6.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#460) is no longer experimental and is available for general use. -- [#9807](https://github.com/withastro/astro/pull/9807) [`b3f313138bb314e2b416c29cda507383c2a9f816`](https://github.com/withastro/astro/commit/b3f313138bb314e2b416c29cda507383c2a9f816) Thanks [@bluwy](https://github.com/bluwy)! - Fixes environment variables replacement for `export const prerender` + To enable the stable version, add the new top-level `security` option in `astro.config.mjs`. If you were previously using the experimental version of this feature, also delete the experimental flag: -- [#9790](https://github.com/withastro/astro/pull/9790) [`267c5aa2c7706f0ea3447f20a09d85aa560866ad`](https://github.com/withastro/astro/commit/267c5aa2c7706f0ea3447f20a09d85aa560866ad) Thanks [@lilnasy](https://github.com/lilnasy)! - Refactors internals of the `astro:i18n` module to be more maintainable. + ```diff + export default defineConfig({ + - experimental: { + - security: { + - csrfProtection: { + - origin: true + - } + - } + - }, + + security: { + + checkOrigin: true + + } + }) + ``` -- [#9776](https://github.com/withastro/astro/pull/9776) [`dc75180aa698b298264362bab7f00391af427798`](https://github.com/withastro/astro/commit/dc75180aa698b298264362bab7f00391af427798) Thanks [@lilnasy](https://github.com/lilnasy)! - Simplifies internals that handle middleware. + Enabling this setting performs a check that the `"origin"` header, automatically passed by all modern browsers, matches the URL sent by each Request. -## 4.2.4 + This check is executed only for pages rendered on demand, and only for the requests `POST`, `PATCH`, `DELETE` and `PUT` with one of the following `"content-type"` headers: `'application/x-www-form-urlencoded'`, `'multipart/form-data'`, `'text/plain'`. -### Patch Changes + If the `"origin"` header doesn't match the pathname of the request, Astro will return a 403 status code and won't render the page. -- [#9792](https://github.com/withastro/astro/pull/9792) [`e22cb8b10c0ca9f6d88cab53cd2713f57875ab4b`](https://github.com/withastro/astro/commit/e22cb8b10c0ca9f6d88cab53cd2713f57875ab4b) Thanks [@tugrulates](https://github.com/tugrulates)! - Accept aria role `switch` on toolbar audit. + For more information, see the [`security` configuration docs](https://docs.astro.build/en/reference/configuration-reference/#security). -- [#9606](https://github.com/withastro/astro/pull/9606) [`e6945bcf23b6ad29388bbadaf5bb3cc31dd4a114`](https://github.com/withastro/astro/commit/e6945bcf23b6ad29388bbadaf5bb3cc31dd4a114) Thanks [@eryue0220](https://github.com/eryue0220)! - Fixes escaping behavior for `.html` files and components +- [#11022](https://github.com/withastro/astro/pull/11022) [`be68ab4`](https://github.com/withastro/astro/commit/be68ab47e236476ba980cbf74daf85f27cd866f4) Thanks [@ematipico](https://github.com/ematipico)! - The `i18nDomains` routing feature introduced behind a flag in [v3.4.0](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#430) is no longer experimental and is available for general use. -- [#9786](https://github.com/withastro/astro/pull/9786) [`5b29550996a7f5459a0d611feea6e51d44e1d8ed`](https://github.com/withastro/astro/commit/5b29550996a7f5459a0d611feea6e51d44e1d8ed) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes a regression in routing priority for index pages in rest parameter folders and dynamic sibling trees. + This routing option allows you to configure different domains for individual locales in entirely server-rendered projects using the [@astrojs/node](https://docs.astro.build/en/guides/integrations-guide/node/) or [@astrojs/vercel](https://docs.astro.build/en/guides/integrations-guide/vercel/) adapter with a `site` configured. - Considering the following tree: + If you were using this feature, please remove the experimental flag from your Astro config: - ``` - src/pages/ - ├── index.astro - ├── static.astro - ├── [dynamic_file].astro - ├── [...rest_file].astro - ├── blog/ - │ └── index.astro - ├── [dynamic_folder]/ - │ ├── index.astro - │ ├── static.astro - │ └── [...rest].astro - └── [...rest_folder]/ - ├── index.astro - └── static.astro + ```diff + import { defineConfig } from 'astro' + + export default defineConfig({ + - experimental: { + - i18nDomains: true, + - } + }) ``` - The routes are sorted in this order: + If you have been waiting for stabilization before using this routing option, you can now do so. - ``` - /src/pages/index.astro - /src/pages/blog/index.astro - /src/pages/static.astro - /src/pages/[dynamic_folder]/index.astro - /src/pages/[dynamic_file].astro - /src/pages/[dynamic_folder]/static.astro - /src/pages/[dynamic_folder]/[...rest].astro - /src/pages/[...rest_folder]/static.astro - /src/pages/[...rest_folder]/index.astro - /src/pages/[...rest_file]/index.astro + Please see [the internationalization docs](https://docs.astro.build/en/guides/internationalization/#domains) for more about this feature. + +- [#11071](https://github.com/withastro/astro/pull/11071) [`8ca7c73`](https://github.com/withastro/astro/commit/8ca7c731dea894e77f84b314ebe3a141d5daa918) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds two new functions `experimental_getActionState()` and `experimental_withState()` to support [the React 19 `useActionState()` hook](https://react.dev/reference/react/useActionState) when using Astro Actions. This introduces progressive enhancement when calling an Action with the `withState()` utility. + + This example calls a `like` action that accepts a `postId` and returns the number of likes. Pass this action to the `experimental_withState()` function to apply progressive enhancement info, and apply to `useActionState()` to track the result: + + ```tsx + import { actions } from 'astro:actions'; + import { experimental_withState } from '@astrojs/react/actions'; + + export function Like({ postId }: { postId: string }) { + const [state, action, pending] = useActionState( + experimental_withState(actions.like), + 0, // initial likes + ); + + return ( +
+ + +
+ ); + } ``` - This allows for index files to be used as overrides to rest parameter routes on SSR when the rest parameter matching `undefined` is not desired. + You can also access the state stored by `useActionState()` from your action `handler`. Call `experimental_getActionState()` with the API context, and optionally apply a type to the result: -- [#9775](https://github.com/withastro/astro/pull/9775) [`075706f26d2e11e66ef8b52288d07e3c0fa97eb1`](https://github.com/withastro/astro/commit/075706f26d2e11e66ef8b52288d07e3c0fa97eb1) Thanks [@lilnasy](https://github.com/lilnasy)! - Simplifies internals that handle endpoints. + ```ts + import { defineAction, z } from 'astro:actions'; + import { experimental_getActionState } from '@astrojs/react/actions'; -- [#9773](https://github.com/withastro/astro/pull/9773) [`9aa7a5368c502ae488d3a173e732d81f3d000e98`](https://github.com/withastro/astro/commit/9aa7a5368c502ae488d3a173e732d81f3d000e98) Thanks [@LunaticMuch](https://github.com/LunaticMuch)! - Raises the required vite version to address a vulnerability in `vite.server.fs.deny` that affected the dev mode. + export const server = { + like: defineAction({ + input: z.object({ + postId: z.string(), + }), + handler: async ({ postId }, ctx) => { + const currentLikes = experimental_getActionState(ctx); + // write to database + return currentLikes + 1; + }, + }), + }; + ``` -- [#9781](https://github.com/withastro/astro/pull/9781) [`ccc05d54014e24c492ca5fddd4862f318aac8172`](https://github.com/withastro/astro/commit/ccc05d54014e24c492ca5fddd4862f318aac8172) Thanks [@stevenbenner](https://github.com/stevenbenner)! - Fix build failure when image file name includes special characters +- [#11101](https://github.com/withastro/astro/pull/11101) [`a6916e4`](https://github.com/withastro/astro/commit/a6916e4402bf5b7d74bab784a54eba63fd1d1179) Thanks [@linguofeng](https://github.com/linguofeng)! - Updates Astro's code for adapters to use the header `x-forwarded-for` to initialize the `clientAddress`. -## 4.2.3 + To take advantage of the new change, integration authors must upgrade the version of Astro in their adapter `peerDependencies` to `4.9.0`. -### Patch Changes +- [#11071](https://github.com/withastro/astro/pull/11071) [`8ca7c73`](https://github.com/withastro/astro/commit/8ca7c731dea894e77f84b314ebe3a141d5daa918) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Adds compatibility for Astro Actions in the React 19 beta. Actions can be passed to a `form action` prop directly, and Astro will automatically add metadata for progressive enhancement. -- [#9768](https://github.com/withastro/astro/pull/9768) [`eed0e8757c35dde549707e71c45862438a043fb0`](https://github.com/withastro/astro/commit/eed0e8757c35dde549707e71c45862438a043fb0) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix apps being able to crash the dev toolbar in certain cases + ```tsx + import { actions } from 'astro:actions'; -## 4.2.2 + function Like() { + return ( +
+ {/* auto-inserts hidden input for progressive enhancement */} + +
+ ); + } + ``` ### Patch Changes -- [#9712](https://github.com/withastro/astro/pull/9712) [`ea6cbd06a2580527786707ec735079ff9abd0ec0`](https://github.com/withastro/astro/commit/ea6cbd06a2580527786707ec735079ff9abd0ec0) Thanks [@bluwy](https://github.com/bluwy)! - Improves HMR behavior for style-only changes in `.astro` files - -- [#9739](https://github.com/withastro/astro/pull/9739) [`3ecb3ef64326a8f77aa170df1e3c89cb5c12cc93`](https://github.com/withastro/astro/commit/3ecb3ef64326a8f77aa170df1e3c89cb5c12cc93) Thanks [@ematipico](https://github.com/ematipico)! - Makes i18n redirects take the `build.format` configuration into account +- [#11088](https://github.com/withastro/astro/pull/11088) [`9566fa0`](https://github.com/withastro/astro/commit/9566fa08608be766df355be17d72a39ea7b99ed0) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Allow actions to be called on the server. This allows you to call actions as utility functions in your Astro frontmatter, endpoints, and server-side UI components. -- [#9762](https://github.com/withastro/astro/pull/9762) [`1fba85681e86aa83d24336d4209cafbc76b37607`](https://github.com/withastro/astro/commit/1fba85681e86aa83d24336d4209cafbc76b37607) Thanks [@ematipico](https://github.com/ematipico)! - Adds `popovertarget" to the attribute that can be passed to the `button` element + Import and call directly from `astro:actions` as you would for client actions: -- [#9605](https://github.com/withastro/astro/pull/9605) [`8ce40a417c854d9e6a4fa7d5a85d50a6436b4a3c`](https://github.com/withastro/astro/commit/8ce40a417c854d9e6a4fa7d5a85d50a6436b4a3c) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Adds support for dynamic slot names + ```astro + --- + // src/pages/blog/[postId].astro + import { actions } from 'astro:actions'; -- [#9381](https://github.com/withastro/astro/pull/9381) [`9e01f9cc1efcfb938355829676d51b24818ab2bb`](https://github.com/withastro/astro/commit/9e01f9cc1efcfb938355829676d51b24818ab2bb) Thanks [@martrapp](https://github.com/martrapp)! - Improves the CLI output of `astro preferences list` to include additional relevant information + await actions.like({ postId: Astro.params.postId }); + --- + ``` -- [#9741](https://github.com/withastro/astro/pull/9741) [`73d74402007896204ee965f6553dc83b3dec8d2f`](https://github.com/withastro/astro/commit/73d74402007896204ee965f6553dc83b3dec8d2f) Thanks [@taktran](https://github.com/taktran)! - Fixes an issue where dot files were not copied over from the public folder to the output folder, when build command was run in a folder other than the root of the project. +- [#11112](https://github.com/withastro/astro/pull/11112) [`29a8650`](https://github.com/withastro/astro/commit/29a8650375053cd5690a32bed4140f0fef11c705) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Deprecate the `getApiContext()` function. API Context can now be accessed from the second parameter to your Action `handler()`: -- [#9730](https://github.com/withastro/astro/pull/9730) [`8d2e5db096f1e7b098511b4fe9357434a6ff0703`](https://github.com/withastro/astro/commit/8d2e5db096f1e7b098511b4fe9357434a6ff0703) Thanks [@Blede2000](https://github.com/Blede2000)! - Allow i18n routing utilities like getRelativeLocaleUrl to also get the default local path when redirectToDefaultLocale is false + ```diff + // src/actions/index.ts + import { + defineAction, + z, + - getApiContext, + } from 'astro:actions'; -- Updated dependencies [[`53c69dcc82cdf4000aff13a6c11fffe19096cf45`](https://github.com/withastro/astro/commit/53c69dcc82cdf4000aff13a6c11fffe19096cf45), [`2f81cffa9da9db0e2802d303f94feaee8d2f54ec`](https://github.com/withastro/astro/commit/2f81cffa9da9db0e2802d303f94feaee8d2f54ec), [`a505190933365268d48139a5f197a3cfb5570870`](https://github.com/withastro/astro/commit/a505190933365268d48139a5f197a3cfb5570870)]: - - @astrojs/markdown-remark@4.2.0 + export const server = { + login: defineAction({ + input: z.object({ id: z.string }), + + handler(input, context) { + const user = context.locals.auth(input.id); + return user; + } + }), + } + ``` -## 4.2.1 +## 4.8.7 ### Patch Changes -- [#9726](https://github.com/withastro/astro/pull/9726) [`a4b696def3a7eb18c1ae48b10fd3758a1874b6fe`](https://github.com/withastro/astro/commit/a4b696def3a7eb18c1ae48b10fd3758a1874b6fe) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes a regression in routing priority between `index.astro` and dynamic routes with rest parameters +- [#11073](https://github.com/withastro/astro/pull/11073) [`f5c8fee`](https://github.com/withastro/astro/commit/f5c8fee76c5e688ef23c18be79705b18f1750415) Thanks [@matthewp](https://github.com/matthewp)! - Prevent cache content from being left in dist folder -## 4.2.0 + When `contentCollectionsCache` is enabled temporary cached content is copied into the `outDir` for processing. This fixes it so that this content is cleaned out, along with the rest of the temporary build JS. -### Minor Changes +- [#11054](https://github.com/withastro/astro/pull/11054) [`f6b171e`](https://github.com/withastro/astro/commit/f6b171ed50eed253b8ac005bd5e9d1841a8003dd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Respect error status when handling Actions with a progressive fallback. -- [#9566](https://github.com/withastro/astro/pull/9566) [`165cfc154be477337037185c32b308616d1ed6fa`](https://github.com/withastro/astro/commit/165cfc154be477337037185c32b308616d1ed6fa) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Allows remark plugins to pass options specifying how images in `.md` files will be optimized +- [#11092](https://github.com/withastro/astro/pull/11092) [`bfe9c73`](https://github.com/withastro/astro/commit/bfe9c73536f0794e4f5ede5040adabbe0e705984) Thanks [@duckycoding-dev](https://github.com/duckycoding-dev)! - Change `slot` attribute of `IntrinsicAttributes` to match the definition of `HTMLAttributes`'s own `slot` attribute of type `string | undefined | null` -- [#9661](https://github.com/withastro/astro/pull/9661) [`d6edc7540864cf5d294d7b881eb886a3804f6d05`](https://github.com/withastro/astro/commit/d6edc7540864cf5d294d7b881eb886a3804f6d05) Thanks [@ematipico](https://github.com/ematipico)! - Adds new helper functions for adapter developers. +- [#10875](https://github.com/withastro/astro/pull/10875) [`b5f95b2`](https://github.com/withastro/astro/commit/b5f95b2fb156152fabf2a22e150037a8255006f9) Thanks [@W1M0R](https://github.com/W1M0R)! - Fixes a typo in a JSDoc annotation - - `Astro.clientAddress` can now be passed directly to the `app.render()` method. +- [#11111](https://github.com/withastro/astro/pull/11111) [`a5d79dd`](https://github.com/withastro/astro/commit/a5d79ddeb2d592de9eb2468471fdcf3eea5ef730) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix unexpected `headers` warning on prerendered routes when using Astro Actions. - ```ts - const response = await app.render(request, { clientAddress: '012.123.23.3' }); - ``` +- [#11081](https://github.com/withastro/astro/pull/11081) [`af42e05`](https://github.com/withastro/astro/commit/af42e0552054b3b4ac784ed78c60f80bfc38d8ca) Thanks [@V3RON](https://github.com/V3RON)! - Correctly position inspection tooltip in RTL mode - - Helper functions for converting Node.js HTTP request and response objects to web-compatible `Request` and `Response` objects are now provided as static methods on the `NodeApp` class. + When RTL mode is turned on, the inspection tooltip tend to overflow the window on the left side. + Additional check has been added to prevent that. - ```ts - http.createServer((nodeReq, nodeRes) => { - const request: Request = NodeApp.createRequest(nodeReq); - const response = await app.render(request); - await NodeApp.writeResponse(response, nodeRes); - }); - ``` +## 4.8.6 - - Cookies added via `Astro.cookies.set()` can now be automatically added to the `Response` object by passing the `addCookieHeader` option to `app.render()`. +### Patch Changes - ```diff - -const response = await app.render(request) - -const setCookieHeaders: Array = Array.from(app.setCookieHeaders(webResponse)); +- [#11084](https://github.com/withastro/astro/pull/11084) [`9637014`](https://github.com/withastro/astro/commit/9637014b1495a5a41cb384c7de4de410348f4cc0) Thanks [@bluwy](https://github.com/bluwy)! - Fixes regression when handling hoisted scripts from content collections - -if (setCookieHeaders.length) { - - for (const setCookieHeader of setCookieHeaders) { - - headers.append('set-cookie', setCookieHeader); - - } - -} - +const response = await app.render(request, { addCookieHeader: true }) - ``` +## 4.8.5 -- [#9638](https://github.com/withastro/astro/pull/9638) [`f1a61268061b8834f39a9b38bca043ae41caed04`](https://github.com/withastro/astro/commit/f1a61268061b8834f39a9b38bca043ae41caed04) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new `i18n.routing` config option `redirectToDefaultLocale` to disable automatic redirects of the root URL (`/`) to the default locale when `prefixDefaultLocale: true` is set. +### Patch Changes - In projects where every route, including the default locale, is prefixed with `/[locale]/` path, this property allows you to control whether or not `src/pages/index.astro` should automatically redirect your site visitors from `/` to `/[defaultLocale]`. +- [#11065](https://github.com/withastro/astro/pull/11065) [`1f988ed`](https://github.com/withastro/astro/commit/1f988ed10f4737b5333c9978115ee531786eb539) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug in the Astro rewrite logic, where rewriting the index with parameters - `next("/?foo=bar")` - didn't work as expected. - You can now opt out of this automatic redirection by setting `redirectToDefaultLocale: false`: +- [#10924](https://github.com/withastro/astro/pull/10924) [`3a0c02a`](https://github.com/withastro/astro/commit/3a0c02ae0357c267881b30454b5320075378894b) Thanks [@Its-Just-Nans](https://github.com/Its-Just-Nans)! - Handle image-size errors by displaying a clearer message - ```js - // astro.config.mjs - export default defineConfig({ - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - routing: { - prefixDefaultLocale: true, - redirectToDefaultLocale: false, - }, - }, - }); - ``` +- [#11058](https://github.com/withastro/astro/pull/11058) [`749a7ac`](https://github.com/withastro/astro/commit/749a7ac967146952450a4173dcb6a5494755460c) Thanks [@matthewp](https://github.com/matthewp)! - Fix streaming in Node.js fast path -- [#9671](https://github.com/withastro/astro/pull/9671) [`8521ff77fbf7e867701cc30d18253856914dbd1b`](https://github.com/withastro/astro/commit/8521ff77fbf7e867701cc30d18253856914dbd1b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Removes the requirement for non-content files and assets inside content collections to be prefixed with an underscore. For files with extensions like `.astro` or `.css`, you can now remove underscores without seeing a warning in the terminal. +- [#11052](https://github.com/withastro/astro/pull/11052) [`a05ca38`](https://github.com/withastro/astro/commit/a05ca38c2cf327ae9130ee1c139a0e510b9da50a) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes a case where rewriting would conflict with the actions internal middleware - ```diff - src/content/blog/ - post.mdx - - _styles.css - - _Component.astro - + styles.css - + Component.astro - ``` +- [#11062](https://github.com/withastro/astro/pull/11062) [`16f12e4`](https://github.com/withastro/astro/commit/16f12e426e5869721313bb771e2ec5b821c5452e) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where `astro build` didn't create custom `404.html` and `500.html` when a certain combination of i18n options was applied - Continue to use underscores in your content collections to exclude individual content files, such as drafts, from the build output. +- [#10965](https://github.com/withastro/astro/pull/10965) [`a8f0372`](https://github.com/withastro/astro/commit/a8f0372ea71479ef80c58e74201dea6a5a2b2ae4) Thanks [@Elias-Chairi](https://github.com/Elias-Chairi)! - Update generator.ts to allow %23 (#) in dynamic urls -- [#9567](https://github.com/withastro/astro/pull/9567) [`3a4d5ec8001ebf95c917fdc0d186d29650533d93`](https://github.com/withastro/astro/commit/3a4d5ec8001ebf95c917fdc0d186d29650533d93) Thanks [@OliverSpeir](https://github.com/OliverSpeir)! - Improves the a11y-missing-content rule and error message for audit feature of dev-overlay. This also fixes an error where this check was falsely reporting accessibility errors. +- [#11069](https://github.com/withastro/astro/pull/11069) [`240a70a`](https://github.com/withastro/astro/commit/240a70a29f8e11d161da021845c208f982d64e5c) Thanks [@ematipico](https://github.com/ematipico)! - Improves debug logging for on-demand pages -- [#9643](https://github.com/withastro/astro/pull/9643) [`e9a72d9a91a3741566866bcaab11172cb0dc7d31`](https://github.com/withastro/astro/commit/e9a72d9a91a3741566866bcaab11172cb0dc7d31) Thanks [@blackmann](https://github.com/blackmann)! - Adds a new `markdown.shikiConfig.transformers` config option. You can use this option to transform the Shikiji hast (AST format of the generated HTML) to customize the final HTML. Also updates Shikiji to the latest stable version. +## 4.8.4 - See [Shikiji's documentation](https://shikiji.netlify.app/guide/transformers) for more details about creating your own custom transformers, and [a list of common transformers](https://shikiji.netlify.app/packages/transformers) you can add directly to your project. +### Patch Changes -- [#9644](https://github.com/withastro/astro/pull/9644) [`a5f1682347e602330246129d4666a9227374c832`](https://github.com/withastro/astro/commit/a5f1682347e602330246129d4666a9227374c832) Thanks [@rossrobino](https://github.com/rossrobino)! - Adds an experimental flag `clientPrerender` to prerender your prefetched pages on the client with the [Speculation Rules API](https://developer.mozilla.org/en-US/docs/Web/API/Speculation_Rules_API). +- [#11026](https://github.com/withastro/astro/pull/11026) [`8dfb1a2`](https://github.com/withastro/astro/commit/8dfb1a23cc5996c410f7e33211d132dac36c9f77) Thanks [@bluwy](https://github.com/bluwy)! - Skips rendering script tags if it's inlined and empty when `experimental.directRenderScript` is enabled - ```js - // astro.config.mjs - { - prefetch: { - prefetchAll: true, - defaultStrategy: 'viewport', - }, - experimental: { - clientPrerender: true, - }, - } - ``` +- [#11043](https://github.com/withastro/astro/pull/11043) [`d0d1710`](https://github.com/withastro/astro/commit/d0d1710439ec281518b17d03126b5d9cd008a102) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fixes minor type issues in actions component example - Enabling this feature overrides the default `prefetch` behavior globally to prerender links on the client according to your `prefetch` configuration. Instead of appending a `` tag to the head of the document or fetching the page with JavaScript, a ` + ``` + +- [#10145](https://github.com/withastro/astro/pull/10145) [`65692fa7b5f4440c644c8cf3dd9bc50103d2c33b`](https://github.com/withastro/astro/commit/65692fa7b5f4440c644c8cf3dd9bc50103d2c33b) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Adds experimental JSON Schema support for content collections. + + This feature will auto-generate a JSON Schema for content collections of `type: 'data'` which can be used as the `$schema` value for TypeScript-style autocompletion/hints in tools like VSCode. + + To enable this feature, add the experimental flag: ```diff - app.render(request) + import { defineConfig } from 'astro/config'; - - app.render(request, routeData) - + app.render(request, { routeData }) + export default defineConfig({ + experimental: { + + contentCollectionJsonSchema: true + } + }); + ``` - - app.render(request, routeData, locals) - + app.render(request, { routeData, locals }) + This experimental implementation requires you to manually reference the schema in each data entry file of the collection: - - app.render(request, undefined, locals) - + app.render(request, { locals }) + ```diff + // src/content/test/entry.json + { + + "$schema": "../../../.astro/collections/test.schema.json", + "test": "test" + } ``` - The current signature is deprecated but will continue to function until next major version. + Alternatively, you can set this in your [VSCode `json.schemas` settings](https://code.visualstudio.com/docs/languages/json#_json-schemas-and-settings): -- [#9212](https://github.com/withastro/astro/pull/9212) [`c0383ea0c`](https://github.com/withastro/astro/commit/c0383ea0c102cb62b7235823c706a090ba08715f) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Removes deprecated `app.match()` option, `matchNotFound` + ```diff + "json.schemas": [ + { + "fileMatch": [ + "/src/content/test/**" + ], + "url": "../../../.astro/collections/test.schema.json" + } + ] + ``` -### Minor Changes + Note that this initial implementation uses a library with [known issues for advanced Zod schemas](https://github.com/StefanTerdell/zod-to-json-schema#known-issues), so you may wish to consult these limitations before enabling the experimental flag. -- [#9115](https://github.com/withastro/astro/pull/9115) [`3b77889b4`](https://github.com/withastro/astro/commit/3b77889b47750ed6e17c7858780dc4aae9201b58) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Adds the `astro preferences` command to manage user preferences. User preferences are specific to individual Astro users, unlike the `astro.config.mjs` file which changes behavior for everyone working on a project. +- [#10130](https://github.com/withastro/astro/pull/10130) [`5a9528741fa98d017b269c7e4f013058028bdc5d`](https://github.com/withastro/astro/commit/5a9528741fa98d017b269c7e4f013058028bdc5d) Thanks [@bluwy](https://github.com/bluwy)! - Migrates `shikiji` to `shiki` 1.0 - User preferences are scoped to the current project by default, stored in a local `.astro/settings.json` file. Using the `--global` flag, user preferences can also be applied to every Astro project on the current machine. Global user preferences are stored in an operating system-specific location. +- [#10268](https://github.com/withastro/astro/pull/10268) [`2013e70bce16366781cc12e52823bb257fe460c0`](https://github.com/withastro/astro/commit/2013e70bce16366781cc12e52823bb257fe460c0) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds support for page mutations to the audits in the dev toolbar. Astro will now rerun the audits whenever elements are added or deleted from the page. - ```sh - # Disable the dev overlay for the current user in the current project - npm run astro preferences disable devOverlay - # Disable the dev overlay for the current user in all Astro projects on this machine - npm run astro preferences --global disable devOverlay +- [#10217](https://github.com/withastro/astro/pull/10217) [`5c7862a9fe69954f8630538ebb7212cd04b8a810`](https://github.com/withastro/astro/commit/5c7862a9fe69954f8630538ebb7212cd04b8a810) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates the UI for dev toolbar audits with new information + +### Patch Changes + +- [#10360](https://github.com/withastro/astro/pull/10360) [`ac766647b0e6156b7c4a0bb9a11981fe168852d7`](https://github.com/withastro/astro/commit/ac766647b0e6156b7c4a0bb9a11981fe168852d7) Thanks [@nmattia](https://github.com/nmattia)! - Fixes an issue where some CLI commands attempted to directly read vite config files. + +- [#10291](https://github.com/withastro/astro/pull/10291) [`8107a2721b6abb07c3120ac90e03c39f2a44ab0c`](https://github.com/withastro/astro/commit/8107a2721b6abb07c3120ac90e03c39f2a44ab0c) Thanks [@bluwy](https://github.com/bluwy)! - Treeshakes unused Astro component scoped styles + +- [#10368](https://github.com/withastro/astro/pull/10368) [`78bafc5d661ff7dd071c241cb1303c4d8a774d21`](https://github.com/withastro/astro/commit/78bafc5d661ff7dd071c241cb1303c4d8a774d21) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates the base `tsconfig.json` preset with `jsx: 'preserve'` in order to fix errors when importing Astro files inside `.js` and `.ts` files. + +- Updated dependencies [[`c081adf998d30419fed97d8fccc11340cdc512e0`](https://github.com/withastro/astro/commit/c081adf998d30419fed97d8fccc11340cdc512e0), [`1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd`](https://github.com/withastro/astro/commit/1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd), [`5a9528741fa98d017b269c7e4f013058028bdc5d`](https://github.com/withastro/astro/commit/5a9528741fa98d017b269c7e4f013058028bdc5d), [`a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18`](https://github.com/withastro/astro/commit/a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18)]: + - @astrojs/markdown-remark@4.3.0 + - @astrojs/internal-helpers@0.3.0 + +## 4.4.15 + +### Patch Changes + +- [#10317](https://github.com/withastro/astro/pull/10317) [`33583e8b31ee8a33e26cf57f30bb422921f4745d`](https://github.com/withastro/astro/commit/33583e8b31ee8a33e26cf57f30bb422921f4745d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where elements slotted within interactive framework components disappeared after hydration. + +## 4.4.14 + +### Patch Changes + +- [#10355](https://github.com/withastro/astro/pull/10355) [`8ce9fffd44b0740621178d61fb1425bf4155c2d7`](https://github.com/withastro/astro/commit/8ce9fffd44b0740621178d61fb1425bf4155c2d7) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a regression where full dynamic routes were prioritized over partial dynamic routes. Now a route like `food-[name].astro` is matched **before** `[name].astro`. - # Check if the dev overlay is enabled for the current user - npm run astro preferences list devOverlay - ``` +- [#10356](https://github.com/withastro/astro/pull/10356) [`d121311a3f4b5345e344e31f75d4e7164d65f729`](https://github.com/withastro/astro/commit/d121311a3f4b5345e344e31f75d4e7164d65f729) Thanks [@mingjunlu](https://github.com/mingjunlu)! - Fixes an issue where `getCollection` might return `undefined` when content collection is empty -- [#9129](https://github.com/withastro/astro/pull/9129) [`8bfc20511`](https://github.com/withastro/astro/commit/8bfc20511918d675202cdc100d4efab293e5cbac) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update error log formatting +- [#10325](https://github.com/withastro/astro/pull/10325) [`f33cce8f6c3a2e17847658cdedb015bd93cc1ee3`](https://github.com/withastro/astro/commit/f33cce8f6c3a2e17847658cdedb015bd93cc1ee3) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where `ctx.site` included the configured `base` in API routes and middleware, unlike `Astro.site` in astro pages. -### Patch Changes +- [#10343](https://github.com/withastro/astro/pull/10343) [`f973aa9110592fa9017bbe84387f22c24a6d7159`](https://github.com/withastro/astro/commit/f973aa9110592fa9017bbe84387f22c24a6d7159) Thanks [@ematipico](https://github.com/ematipico)! - Fixes some false positive in the dev toolbar a11y audits, by adding the `a` element to the list of interactive elements. -- [#9222](https://github.com/withastro/astro/pull/9222) [`279e3c1b3`](https://github.com/withastro/astro/commit/279e3c1b3d06e7b48f01c0ef8285c3719ac74ace) Thanks [@matthewp](https://github.com/matthewp)! - Ensure the dev-overlay-window is anchored to the bottom +- [#10295](https://github.com/withastro/astro/pull/10295) [`fdd5bf277e5c1cfa30c1bd2ca123f4e90e8d09d9`](https://github.com/withastro/astro/commit/fdd5bf277e5c1cfa30c1bd2ca123f4e90e8d09d9) Thanks [@rossrobino](https://github.com/rossrobino)! - Adds a prefetch fallback when using the `experimental.clientPrerender` option. If prerendering fails, which can happen if [Chrome extensions block prerendering](https://developer.chrome.com/blog/speculation-rules-improvements#chrome-limits), it will fallback to prefetching the URL. This works by adding a `prefetch` field to the `speculationrules` script, but does not create an extra request. -- [#9218](https://github.com/withastro/astro/pull/9218) [`f4401c8c1`](https://github.com/withastro/astro/commit/f4401c8c1fa203431b4e7b2e89381a91b4ef1ac6) Thanks [@matthewp](https://github.com/matthewp)! - Improve high contrast mode with the Dev Overlay +## 4.4.13 -- [#9227](https://github.com/withastro/astro/pull/9227) [`4b8a42406`](https://github.com/withastro/astro/commit/4b8a42406bbdcc68604ea4ecc2a926721fbc4d52) Thanks [@matthewp](https://github.com/matthewp)! - Ensure overlay x-ray z-index is higher than the island +### Patch Changes -- [#9214](https://github.com/withastro/astro/pull/9214) [`4fe523b00`](https://github.com/withastro/astro/commit/4fe523b0064b323ee46b2574339d96ea8bdb7b2d) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes a number of small user experience bugs with the dev overlay +- [#10342](https://github.com/withastro/astro/pull/10342) [`a2e9b2b936666b2a4779feb00dcb8ff0ab82c2ec`](https://github.com/withastro/astro/commit/a2e9b2b936666b2a4779feb00dcb8ff0ab82c2ec) Thanks [@matthewp](https://github.com/matthewp)! - Fixes @astrojs/db loading TS in the fixtures -## 4.0.0-beta.1 +## 4.4.12 ### Patch Changes -- [#9118](https://github.com/withastro/astro/pull/9118) [`000e8f465`](https://github.com/withastro/astro/commit/000e8f4654cae9982e21e0a858366c4844139db6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Redesign Dev Overlay main screen to show more information, such as the coolest integrations, your current Astro version and more. +- [#10336](https://github.com/withastro/astro/pull/10336) [`f2e60a96754ed1d86001fe4d5d3a0c0ef657408d`](https://github.com/withastro/astro/commit/f2e60a96754ed1d86001fe4d5d3a0c0ef657408d) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fixes an issue where slotting interactive components within a "client:only" component prevented all component code in the page from running. -- [#9118](https://github.com/withastro/astro/pull/9118) [`000e8f465`](https://github.com/withastro/astro/commit/000e8f4654cae9982e21e0a858366c4844139db6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes an issue where links with the same pathname as the current page, but different search params, were not prefetched. +## 4.4.11 -## 4.0.0-beta.0 +### Patch Changes -### Major Changes +- [#10281](https://github.com/withastro/astro/pull/10281) [`9deb919ff95b1d2ffe5a5f70ec683e32ebfafd05`](https://github.com/withastro/astro/commit/9deb919ff95b1d2ffe5a5f70ec683e32ebfafd05) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where `404.astro` was ignored with `i18n` routing enabled. -- [#9138](https://github.com/withastro/astro/pull/9138) [`abf601233`](https://github.com/withastro/astro/commit/abf601233f8188d118a8cb063c777478d8d9f1a3) Thanks [@bluwy](https://github.com/bluwy)! - Updates the unified, remark, and rehype dependencies to latest. Make sure to update your custom remark and rehype plugins as well to be compatible with the latest versions. +- [#10279](https://github.com/withastro/astro/pull/10279) [`9ba3e2605daee3861e3bf6c5768f1d8bced4709d`](https://github.com/withastro/astro/commit/9ba3e2605daee3861e3bf6c5768f1d8bced4709d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where returning redirect responses resulted in missing files with certain adapters. - **Potentially breaking change:** The default value of `markdown.remarkRehype.footnoteBackLabel` is changed from `"Back to content"` to `"Back to reference 1"`. See the `mdast-util-to-hast` [commit](https://github.com/syntax-tree/mdast-util-to-hast/commit/56c88e45690be138fad9f0bf367b939d09816863) for more information. +- [#10319](https://github.com/withastro/astro/pull/10319) [`19ecccedaab6d8fa0ff23711c88fa7d4fa34df38`](https://github.com/withastro/astro/commit/19ecccedaab6d8fa0ff23711c88fa7d4fa34df38) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where streaming SSR responses sometimes failed with "`iterator.result` is not a function" on node-based adapters. -- [#9181](https://github.com/withastro/astro/pull/9181) [`cdabf6ef0`](https://github.com/withastro/astro/commit/cdabf6ef02be7220fd2b6bdcef924ceca089381e) Thanks [@bluwy](https://github.com/bluwy)! - Removes support for returning simple objects from endpoints (deprecated since Astro 3.0). You should return a `Response` instead. +- [#10302](https://github.com/withastro/astro/pull/10302) [`992537e79f1847b590a2e226aac88a47a6304f68`](https://github.com/withastro/astro/commit/992537e79f1847b590a2e226aac88a47a6304f68) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes an issue that causes static entrypoints build to fail because of the path in certain conditions. Specifically, it failed if the path had an extension (like `.astro`, `.mdx` etc) and such extension would be also within the path (like `./.astro/index.astro`). - `ResponseWithEncoding` is also removed. You can refactor the code to return a response with an array buffer instead, which is encoding agnostic. +- [#10298](https://github.com/withastro/astro/pull/10298) [`819d20a89c0d269333c2d397c1080884f516307a`](https://github.com/withastro/astro/commit/819d20a89c0d269333c2d397c1080884f516307a) Thanks [@Fryuni](https://github.com/Fryuni)! - Fix an incorrect conflict resolution between pages generated from static routes and rest parameters - The types for middlewares have also been revised. To type a middleware function, you should now use `MiddlewareHandler` instead of `MiddlewareResponseHandler`. If you used `defineMiddleware()` to type the function, no changes are needed. +## 4.4.10 -- [#9122](https://github.com/withastro/astro/pull/9122) [`1c48ed286`](https://github.com/withastro/astro/commit/1c48ed286538ab9e354eca4e4dcd7c6385c96721) Thanks [@bluwy](https://github.com/bluwy)! - Adds Vite 5 support. There are no breaking changes from Astro. Check the [Vite migration guide](https://vitejs.dev/guide/migration.html) for details of the breaking changes from Vite instead. +### Patch Changes -- [#9196](https://github.com/withastro/astro/pull/9196) [`37697a2c5`](https://github.com/withastro/astro/commit/37697a2c5511572dc29c0a4ea46f90c2f62be8e6) Thanks [@bluwy](https://github.com/bluwy)! - Removes support for Shiki custom language's `path` property. The language JSON file should be imported and passed to the option instead. +- [#10235](https://github.com/withastro/astro/pull/10235) [`4bc360cd5f25496aca3232f6efb3710424a14a34`](https://github.com/withastro/astro/commit/4bc360cd5f25496aca3232f6efb3710424a14a34) Thanks [@sanman1k98](https://github.com/sanman1k98)! - Fixes jerky scrolling on IOS when using view transitions. - ```diff - // astro.config.js - + import customLang from './custom.tmLanguage.json' +## 4.4.9 - export default defineConfig({ - markdown: { - shikiConfig: { - langs: [ - - { path: './custom.tmLanguage.json' }, - + customLang, - ], - }, - }, - }) - ``` +### Patch Changes -- [#9168](https://github.com/withastro/astro/pull/9168) [`153a5abb9`](https://github.com/withastro/astro/commit/153a5abb905042ac68b712514dc9ec387d3e6b17) Thanks [@bluwy](https://github.com/bluwy)! - Removes deprecated features from Astro 3.0 +- [#10278](https://github.com/withastro/astro/pull/10278) [`a548a3a99c2835c19662fc38636f92b2bda26614`](https://github.com/withastro/astro/commit/a548a3a99c2835c19662fc38636f92b2bda26614) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes original images sometimes being kept / deleted when they shouldn't in both MDX and Markdoc - - Adapters are now required to pass `supportedAstroFeatures` to specify a list of features they support. - - The `build.split` and `build.excludeMiddleware` options are removed. Use `functionPerRoute` and `edgeMiddleware` from adapters instead. - - The `markdown.drafts` option and draft feature is removed. Use content collections instead. - - Lowercase endpoint names are no longer supported. Use uppercase endpoint names instead. - - `getHeaders()` exported from markdown files is removed. Use `getHeadings()` instead. +- [#10280](https://github.com/withastro/astro/pull/10280) [`3488be9b59d1cb65325b0e087c33bcd74aaa4926`](https://github.com/withastro/astro/commit/3488be9b59d1cb65325b0e087c33bcd74aaa4926) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Finalize db API to a shared db/ directory. -### Minor Changes +## 4.4.8 -- [#9105](https://github.com/withastro/astro/pull/9105) [`6201bbe96`](https://github.com/withastro/astro/commit/6201bbe96c2a083fb201e4a43a9bd88499821a3e) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update CLI logging experience +### Patch Changes -- [#9161](https://github.com/withastro/astro/pull/9161) [`bd0c2e9ae`](https://github.com/withastro/astro/commit/bd0c2e9ae3389a9d3085050c1e8134ae98dff299) Thanks [@bluwy](https://github.com/bluwy)! - Renames the `entryPoint` property of the `injectRoute` integrations API to `entrypoint` for consistency. A warning will be shown prompting you to update your code when using the old name. +- [#10275](https://github.com/withastro/astro/pull/10275) [`5e3e74b61daa2ba44c761c9ab5745818661a656e`](https://github.com/withastro/astro/commit/5e3e74b61daa2ba44c761c9ab5745818661a656e) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes dev toolbar warning about using the proper loading attributes on images using `data:` URIs + +## 4.4.7 ### Patch Changes -- [#9149](https://github.com/withastro/astro/pull/9149) [`0fe3a7ed5`](https://github.com/withastro/astro/commit/0fe3a7ed5d7bb1a9fce1623e84ba14104b51223c) Thanks [@bluwy](https://github.com/bluwy)! - Removes vendored Vite's `importMeta.d.ts` file in favour of Vite 5's new `vite/types/import-meta.d.ts` export +- [#10274](https://github.com/withastro/astro/pull/10274) [`e556151603a2f0173059d0f98fdcbec0610b48ff`](https://github.com/withastro/astro/commit/e556151603a2f0173059d0f98fdcbec0610b48ff) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes a regression introduced in v4.4.5 where image optimization did not work in dev mode when a base was configured. -- [#9150](https://github.com/withastro/astro/pull/9150) [`710be505c`](https://github.com/withastro/astro/commit/710be505c9ddf416e77a75343d8cae9c497d72c6) Thanks [@bluwy](https://github.com/bluwy)! - Refactors virtual modules exports. This should not break your project unless you import Astro's internal modules, including: +- [#10263](https://github.com/withastro/astro/pull/10263) [`9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb`](https://github.com/withastro/astro/commit/9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb) Thanks [@martrapp](https://github.com/martrapp)! - Adds auto completion for `astro:` event names when adding or removing event listeners on `document`. - - `astro/middleware/namespace` - - `astro/transitions` - - `astro/transitions/router` - - `astro/transitions/events` - - `astro/transitions/types` - - `astro/prefetch` - - `astro/i18n` +- [#10284](https://github.com/withastro/astro/pull/10284) [`07f89429a1ef5173d3321e0b362a9dc71fc74fe5`](https://github.com/withastro/astro/commit/07f89429a1ef5173d3321e0b362a9dc71fc74fe5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes an issue where in Node SSR, the image endpoint could be used maliciously to reveal unintended information about the underlying system. -- Updated dependencies [[`abf601233`](https://github.com/withastro/astro/commit/abf601233f8188d118a8cb063c777478d8d9f1a3), [`addb57c8e`](https://github.com/withastro/astro/commit/addb57c8e80b7b67ec61224666f3a1db5c44410c), [`c7953645e`](https://github.com/withastro/astro/commit/c7953645eeaaf9e87c6db4494b0023d2c1878ff0)]: - - @astrojs/markdown-remark@4.0.0-beta.0 + Thanks to Google Security Team for reporting this issue. -## 3.6.4 +## 4.4.6 ### Patch Changes -- [#9226](https://github.com/withastro/astro/pull/9226) [`8f8a40e93`](https://github.com/withastro/astro/commit/8f8a40e93d6a0774ba84a6f5db8c42cd81db005e) Thanks [@outofambit](https://github.com/outofambit)! - Fix i18n fallback routing with routing strategy of always-prefix +- [#10247](https://github.com/withastro/astro/pull/10247) [`fb773c9161bf8faa5ebd7e115f3564c3359e56ea`](https://github.com/withastro/astro/commit/fb773c9161bf8faa5ebd7e115f3564c3359e56ea) Thanks [@martrapp](https://github.com/martrapp)! - Fixes an issue where `transition:animate="none"` still allowed the browser-native morph animation. -- [#9179](https://github.com/withastro/astro/pull/9179) [`3f28336d9`](https://github.com/withastro/astro/commit/3f28336d9a52d7e4364d455ee3128d14d10a078a) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where the presence of a slot in a page led to an error. +- [#10248](https://github.com/withastro/astro/pull/10248) [`8ae5d99534fc09d650e10e64a09b61a2807574f2`](https://github.com/withastro/astro/commit/8ae5d99534fc09d650e10e64a09b61a2807574f2) Thanks [@ematipico](https://github.com/ematipico)! - Fixes an issue where multiple injected routes with the same `entrypoint` but different `pattern` were incorrectly cached, causing some of them not being rendered in the dev server. -- [#9219](https://github.com/withastro/astro/pull/9219) [`067a65f5b`](https://github.com/withastro/astro/commit/067a65f5b4d163bf1944cf47e6bf891f0b93553f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix edge case where ` - ``` +## 4.0.0-beta.3 -- [#8170](https://github.com/withastro/astro/pull/8170) [`be6bbd2c8`](https://github.com/withastro/astro/commit/be6bbd2c86b9bf5268e765bb937dda00ff15781a) Thanks [@bluwy](https://github.com/bluwy)! - Remove deprecated config option types, deprecated script/style attributes, and deprecated `image` export from `astro:content` +### Major Changes -- [#8188](https://github.com/withastro/astro/pull/8188) [`7511a4980`](https://github.com/withastro/astro/commit/7511a4980fd36536464c317de33a5190427f430a) Thanks [@ematipico](https://github.com/ematipico)! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of `astro:assets` such as enforcing `alt`, no CLS etc to users +- [#9263](https://github.com/withastro/astro/pull/9263) [`3cbd8ea75`](https://github.com/withastro/astro/commit/3cbd8ea7534910e3beae396dcfa93ce87dcdd91f) Thanks [@bluwy](https://github.com/bluwy)! - Removes additional deprecated APIs: -- [#7979](https://github.com/withastro/astro/pull/7979) [`dbc97b121`](https://github.com/withastro/astro/commit/dbc97b121f42583728f1cdfdbf14575fda943f5b) Thanks [@bluwy](https://github.com/bluwy)! - Export experimental `dev`, `build`, `preview`, and `sync` APIs from `astro`. These APIs allow you to run Astro's commands programmatically, and replaces the previous entry point that runs the Astro CLI. + - The Astro preview server now returns a 404 status instead of a 301 redirect when requesting assets from the public directory without a base. + - Removes special handling when referencing the `astro/client-image` type. You should use the `astro/client` type instead. + - Removes deprecated built-in `rss` support in `getStaticPaths`. You should use `@astrojs/rss` instead. + - Removes deprecated `Astro.request.params` support. You should use `Astro.params` instead. - While these APIs are experimental, the inline config parameter is relatively stable without foreseeable changes. However, the returned results of these APIs are more likely to change in the future. +### Minor Changes - ```ts - import { dev, build, preview, sync, type AstroInlineConfig } from 'astro'; +- [#9200](https://github.com/withastro/astro/pull/9200) [`b4b851f5a`](https://github.com/withastro/astro/commit/b4b851f5a46b32ee531db5dc39ccd2aa7af7bcfd) Thanks [@ematipico](https://github.com/ematipico)! - Adds a new way to configure the `i18n.locales` array. - // Inline Astro config object. - // Provide a path to a configuration file to load or set options directly inline. - const inlineConfig: AstroInlineConfig = { - // Inline-specific options... - configFile: './astro.config.mjs', - logLevel: 'info', - // Standard Astro config options... - site: 'https://example.com', - }; + Developers can now assign a custom URL path prefix that can span multiple language codes: - // Start the Astro dev server - const devServer = await dev(inlineConfig); - await devServer.stop(); + ```js + // astro.config.mjs + export default defineConfig({ + experimental: { + i18n: { + defaultLocale: 'english', + locales: ['de', { path: 'english', codes: ['en', 'en-US'] }, 'fr'], + routingStrategy: 'prefix-always', + }, + }, + }); + ``` - // Build your Astro project - await build(inlineConfig); + With the above configuration, the URL prefix of the default locale will be `/english/`. When computing `Astro.preferredLocale`, Astro will use the `codes`. - // Preview your built project - const previewServer = await preview(inlineConfig); - await previewServer.stop(); +- [#9139](https://github.com/withastro/astro/pull/9139) [`459b26436`](https://github.com/withastro/astro/commit/459b2643666db08dbd29a100ce3d8697b451d3fe) Thanks [@bluwy](https://github.com/bluwy)! - Reworks Vite's logger to use Astro's logger to correctly log HMR messages - // Generate types for your Astro project - await sync(inlineConfig); - ``` +### Patch Changes -- [#8188](https://github.com/withastro/astro/pull/8188) [`7d2f311d4`](https://github.com/withastro/astro/commit/7d2f311d428e3d1c8c13b9bf2a708d6435713fc2) Thanks [@ematipico](https://github.com/ematipico)! - Removed support for old syntax of the API routes. +- [#9252](https://github.com/withastro/astro/pull/9252) [`7b74ec4ba`](https://github.com/withastro/astro/commit/7b74ec4ba48e363a19d20e322212d0d264927f1b) Thanks [@ematipico](https://github.com/ematipico)! - Consistently emit fallback routes in the correct folders, and emit routes that + consider `trailingSlash` -- [#8085](https://github.com/withastro/astro/pull/8085) [`68efd4a8b`](https://github.com/withastro/astro/commit/68efd4a8b29f248397667801465b3152dc98e9a7) Thanks [@bluwy](https://github.com/bluwy)! - Remove exports for `astro/internal/*` and `astro/runtime/server/*` in favour of `astro/runtime/*`. Add new `astro/compiler-runtime` export for compiler-specific runtime code. +- [#9235](https://github.com/withastro/astro/pull/9235) [`9c2342c32`](https://github.com/withastro/astro/commit/9c2342c327a13d2f7d1eb387b743e81f431b9813) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix SVG icons not showing properly in the extended dropdown menu of the dev overlay - These are exports for Astro's internal API and should not affect your project, but if you do use these entrypoints, you can migrate like below: +- [#9254](https://github.com/withastro/astro/pull/9254) [`b750a161e`](https://github.com/withastro/astro/commit/b750a161e0e059de9cf814ce271d5891e4e97cbe) Thanks [@matthewp](https://github.com/matthewp)! - Improve highlight/tooltip positioning when in fixed positions - ```diff - - import 'astro/internal/index.js'; - + import 'astro/runtime/server/index.js'; +- [#9230](https://github.com/withastro/astro/pull/9230) [`60cfa49e4`](https://github.com/withastro/astro/commit/60cfa49e445c926288612a6b1a30113ab988011c) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update the look and feel of the dev overlay - - import 'astro/server/index.js'; - + import 'astro/runtime/server/index.js'; - ``` +- [#9248](https://github.com/withastro/astro/pull/9248) [`43ddb5217`](https://github.com/withastro/astro/commit/43ddb5217691dc4112d8d98ae07511a8be6d4b94) Thanks [@martrapp](https://github.com/martrapp)! - Adds properties of the submit button (name, value) to the form data of a view transition - ```diff - import { transform } from '@astrojs/compiler'; +- [#9255](https://github.com/withastro/astro/pull/9255) [`9ea3e0b94`](https://github.com/withastro/astro/commit/9ea3e0b94f7c4813c52bffd78043f90fd87dffda) Thanks [@matthewp](https://github.com/matthewp)! - Adds instructions on how to hide the dev overlay - const result = await transform(source, { - - internalURL: 'astro/runtime/server/index.js', - + internalURL: 'astro/compiler-runtime', - // ... - }); - ``` +- [#9013](https://github.com/withastro/astro/pull/9013) [`ff8eadb95`](https://github.com/withastro/astro/commit/ff8eadb95d34833baaf3ec7575bf4f293eae97da) Thanks [@bayssmekanique](https://github.com/bayssmekanique)! - Returns the updated config in the integration `astro:config:setup` hook's `updateConfig()` API -- [#7893](https://github.com/withastro/astro/pull/7893) [`7bd1b86f8`](https://github.com/withastro/astro/commit/7bd1b86f85c06fdde0a1ed9146d01bac69990671) Thanks [@ematipico](https://github.com/ematipico)! - Implements a new scope style strategy called `"attribute"`. When enabled, styles are applied using `data-*` attributes. +## 4.0.0-beta.2 - The **default** value of `scopedStyleStrategy` is `"attribute"`. +### Major Changes - If you want to use the previous behaviour, you have to use the `"where"` option: +- [#9225](https://github.com/withastro/astro/pull/9225) [`c421a3d17`](https://github.com/withastro/astro/commit/c421a3d17911aeda29b5204f6d568ae87e329eaf) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Removes the opt-in `handleForms` property for ``. Form submissions are now handled by default and can be disabled by setting `data-astro-reload` on relevant `
` elements. - ```diff - import { defineConfig } from 'astro/config'; +- [#9199](https://github.com/withastro/astro/pull/9199) [`49aa215a0`](https://github.com/withastro/astro/commit/49aa215a01ee1c4805316c85bb0aea6cfbc25a31) Thanks [@lilnasy](https://github.com/lilnasy)! - This change only affects maintainers of third-party adapters. In the Integration API, the `app.render()` method of the `App` class has been simplified. - export default defineConfig({ - + scopedStyleStrategy: 'where', - }); - ``` + Instead of two optional arguments, it now takes a single optional argument that is an object with two optional properties: `routeData` and `locals`. -- [#7924](https://github.com/withastro/astro/pull/7924) [`519a1c4e8`](https://github.com/withastro/astro/commit/519a1c4e8407c7abcb8d879b67a9f4b960652cae) Thanks [@matthewp](https://github.com/matthewp)! - Astro's JSX handling has been refactored with better support for each framework. + ```diff + app.render(request) - Previously, Astro automatically scanned your components to determine which framework-specific transformations should be used. In practice, supporting advanced features like Fast Refresh with this approach proved difficult. + - app.render(request, routeData) + + app.render(request, { routeData }) - Now, Astro determines which framework to use with `include` and `exclude` config options where you can specify files and folders on a per-framework basis. When using multiple JSX frameworks in the same project, users should manually control which files belong to each framework using the `include` and `exclude` options. + - app.render(request, routeData, locals) + + app.render(request, { routeData, locals }) - ```js - export default defineConfig({ - // The `include` config is only needed in projects that use multiple JSX frameworks; - // if only using one no extra config is needed. - integrations: [ - preact({ - include: ['**/preact/*'], - }), - react({ - include: ['**/react/*'], - }), - solid({ - include: ['**/solid/*'], - }), - ], - }); + - app.render(request, undefined, locals) + + app.render(request, { locals }) ``` -- [#8030](https://github.com/withastro/astro/pull/8030) [`5208a3c8f`](https://github.com/withastro/astro/commit/5208a3c8fefcec7694857fb344af351f4631fc34) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Removed duplicate `astro/dist/jsx` export. Please use the `astro/jsx` export instead + The current signature is deprecated but will continue to function until next major version. -- [#8188](https://github.com/withastro/astro/pull/8188) [`84af8ed9d`](https://github.com/withastro/astro/commit/84af8ed9d1e6401c6ebc9c60fe8cddb44d5044b0) Thanks [@ematipico](https://github.com/ematipico)! - Remove MDX plugin re-ordering hack +- [#9212](https://github.com/withastro/astro/pull/9212) [`c0383ea0c`](https://github.com/withastro/astro/commit/c0383ea0c102cb62b7235823c706a090ba08715f) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Removes deprecated `app.match()` option, `matchNotFound` -- [#8180](https://github.com/withastro/astro/pull/8180) [`f003e7364`](https://github.com/withastro/astro/commit/f003e7364317cafdb8589913b26b28e928dd07c9) Thanks [@ematipico](https://github.com/ematipico)! - The scoped hash created by the Astro compiler is now **lowercase**. +### Minor Changes -- [#7878](https://github.com/withastro/astro/pull/7878) [`0f637c71e`](https://github.com/withastro/astro/commit/0f637c71e511cb4c51712128d217a26c8eee4d40) Thanks [@bluwy](https://github.com/bluwy)! - The value of `import.meta.env.BASE_URL`, which is derived from the `base` option, will no longer have a trailing slash added by default or when `trailingSlash: "ignore"` is set. The existing behavior of `base` in combination with `trailingSlash: "always"` or `trailingSlash: "never"` is unchanged. +- [#9115](https://github.com/withastro/astro/pull/9115) [`3b77889b4`](https://github.com/withastro/astro/commit/3b77889b47750ed6e17c7858780dc4aae9201b58) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Adds the `astro preferences` command to manage user preferences. User preferences are specific to individual Astro users, unlike the `astro.config.mjs` file which changes behavior for everyone working on a project. - If your `base` already has a trailing slash, no change is needed. + User preferences are scoped to the current project by default, stored in a local `.astro/settings.json` file. Using the `--global` flag, user preferences can also be applied to every Astro project on the current machine. Global user preferences are stored in an operating system-specific location. - If your `base` does not have a trailing slash, add one to preserve the previous behaviour: + ```sh + # Disable the dev overlay for the current user in the current project + npm run astro preferences disable devOverlay + # Disable the dev overlay for the current user in all Astro projects on this machine + npm run astro preferences --global disable devOverlay - ```diff - // astro.config.mjs - - base: 'my-base', - + base: 'my-base/', + # Check if the dev overlay is enabled for the current user + npm run astro preferences list devOverlay ``` -- [#8118](https://github.com/withastro/astro/pull/8118) [`8a5b0c1f3`](https://github.com/withastro/astro/commit/8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59) Thanks [@lilnasy](https://github.com/lilnasy)! - Astro is smarter about CSS! Small stylesheets are now inlined by default, and no longer incur the cost of additional requests to your server. Your visitors will have to wait less before they see your pages, especially those in remote locations or in a subway. +- [#9129](https://github.com/withastro/astro/pull/9129) [`8bfc20511`](https://github.com/withastro/astro/commit/8bfc20511918d675202cdc100d4efab293e5cbac) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update error log formatting - This may not be news to you if you had opted-in via the `build.inlineStylesheets` configuration. Stabilized in Astro 2.6 and set to "auto" by default for Starlight, this configuration allows you to reduce the number of requests for stylesheets by inlining them into - ``` +- [#8823](https://github.com/withastro/astro/pull/8823) [`8946f2a25`](https://github.com/withastro/astro/commit/8946f2a256edf1aca6a7bb0db1f6ea9ce9493253) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix duplicate images being created in some cases when using densities and/or widths -- [#7893](https://github.com/withastro/astro/pull/7893) [`7bd1b86f8`](https://github.com/withastro/astro/commit/7bd1b86f85c06fdde0a1ed9146d01bac69990671) Thanks [@ematipico](https://github.com/ematipico)! - Implements a new scope style strategy called `"attribute"`. When enabled, styles are applied using `data-*` attributes. +- [#8842](https://github.com/withastro/astro/pull/8842) [`b405b039a`](https://github.com/withastro/astro/commit/b405b039a6824590e4ad63605f19f0925b4b88ce) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes Picture component not taking into account the fallback format specified - The **default** value of `scopedStyleStrategy` is `"attribute"`. +- [#8827](https://github.com/withastro/astro/pull/8827) [`ce3025cfa`](https://github.com/withastro/astro/commit/ce3025cfa27a38199f81fb783a68fe1190c1d09e) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - better error handling there whenever we don't get a normal 200 response - If you want to use the previous behaviour, you have to use the `"where"` option: +- [#8817](https://github.com/withastro/astro/pull/8817) [`f8de1983b`](https://github.com/withastro/astro/commit/f8de1983bde3ecfed3ab61abf0aa9f967b0d86ce) Thanks [@bluwy](https://github.com/bluwy)! - Fix error overlay syntax highlighting - ```diff - import { defineConfig } from 'astro/config'; +- [#8838](https://github.com/withastro/astro/pull/8838) [`2f9e2083d`](https://github.com/withastro/astro/commit/2f9e2083d5783c9980cd8b9d69165128f0a5ae19) Thanks [@dominikg](https://github.com/dominikg)! - deps: unpin and update tsconfck from `3.0.0-next.9` to `^3.0.0` - export default defineConfig({ - + scopedStyleStrategy: 'where', - }); - ``` +- [#8823](https://github.com/withastro/astro/pull/8823) [`8946f2a25`](https://github.com/withastro/astro/commit/8946f2a256edf1aca6a7bb0db1f6ea9ce9493253) Thanks [@Princesseuh](https://github.com/Princesseuh)! - fix remote srcset images not being resized -- [#7924](https://github.com/withastro/astro/pull/7924) [`519a1c4e8`](https://github.com/withastro/astro/commit/519a1c4e8407c7abcb8d879b67a9f4b960652cae) Thanks [@matthewp](https://github.com/matthewp)! - Astro's JSX handling has been refactored with better support for each framework. +## 3.3.0 - Previously, Astro automatically scanned your components to determine which framework-specific transformations should be used. In practice, supporting advanced features like Fast Refresh with this approach proved difficult. +### Minor Changes - Now, Astro determines which framework to use with `include` and `exclude` config options where you can specify files and folders on a per-framework basis. When using multiple JSX frameworks in the same project, users should manually control which files belong to each framework using the `include` and `exclude` options. +- [#8808](https://github.com/withastro/astro/pull/8808) [`2993055be`](https://github.com/withastro/astro/commit/2993055bed2764c31ff4b4f55b81ab6b1ae6b401) Thanks [@delucis](https://github.com/delucis)! - Adds support for an `--outDir` CLI flag to `astro build` - ```js - export default defineConfig({ - // The `include` config is only needed in projects that use multiple JSX frameworks; - // if only using one no extra config is needed. - integrations: [ - preact({ - include: ['**/preact/*'], - }), - react({ - include: ['**/react/*'], - }), - solid({ - include: ['**/solid/*'], - }), - ], - }); - ``` +- [#8502](https://github.com/withastro/astro/pull/8502) [`c4270e476`](https://github.com/withastro/astro/commit/c4270e47681ee2453f3fea07fed7b238645fd6ea) Thanks [@bluwy](https://github.com/bluwy)! - Updates the internal `shiki` syntax highlighter to `shikiji`, an ESM-focused alternative that simplifies bundling and maintenance. -- [#7878](https://github.com/withastro/astro/pull/7878) [`0f637c71e`](https://github.com/withastro/astro/commit/0f637c71e511cb4c51712128d217a26c8eee4d40) Thanks [@bluwy](https://github.com/bluwy)! - The value of `import.meta.env.BASE_URL`, which is derived from the `base` option, will no longer have a trailing slash added by default or when `trailingSlash: "ignore"` is set. The existing behavior of `base` in combination with `trailingSlash: "always"` or `trailingSlash: "never"` is unchanged. + There are no new options and no changes to how you author code blocks and syntax highlighting. - If your `base` already has a trailing slash, no change is needed. + **Potentially breaking change:** While this refactor should be transparent for most projects, the transition to `shikiji` now produces a smaller HTML markup by attaching a fallback `color` style to the `pre` or `code` element, instead of to the line `span` directly. For example: - If your `base` does not have a trailing slash, add one to preserve the previous behaviour: + Before: - ```diff - // astro.config.mjs - - base: 'my-base', - + base: 'my-base/', + ```html + +
+      my code
+    
+
``` -### Minor Changes + After: -- [#8012](https://github.com/withastro/astro/pull/8012) [`866ed4098`](https://github.com/withastro/astro/commit/866ed4098edffb052239cdb26e076cf8db61b1d9) Thanks [@ematipico](https://github.com/ematipico)! - Add a new `astro/errors` module. Developers can import `AstroUserError`, and provide a `message` and an optional `hint` + ```html + +
+      my code
+    
+
+ ``` -### Patch Changes + This does not affect the colors as the `span` will inherit the `color` from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles. -- [#7998](https://github.com/withastro/astro/pull/7998) [`65c354969`](https://github.com/withastro/astro/commit/65c354969e6fe0ef6d622e8f4c545e2f717ce8c6) Thanks [@bluwy](https://github.com/bluwy)! - Call `astro sync` once before calling `astro check` +- [#8798](https://github.com/withastro/astro/pull/8798) [`f369fa250`](https://github.com/withastro/astro/commit/f369fa25055a3497ebaf61c88fb0e8af56c73212) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixed `tsconfig.json`'s new array format for `extends` not working. This was done by migrating Astro to use [`tsconfck`](https://github.com/dominikg/tsconfck) instead of [`tsconfig-resolver`](https://github.com/ifiokjr/tsconfig-resolver) to find and parse `tsconfig.json` files. -- [#7952](https://github.com/withastro/astro/pull/7952) [`70f34f5a3`](https://github.com/withastro/astro/commit/70f34f5a355f42526ee9e5355f3de8e510002ea2) Thanks [@astrobot-houston](https://github.com/astrobot-houston)! - Remove StreamingCompatibleResponse polyfill +- [#8620](https://github.com/withastro/astro/pull/8620) [`b2ae9ee0c`](https://github.com/withastro/astro/commit/b2ae9ee0c42b11ffc1d3f070d1d5ac881aef84ed) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds experimental support for generating `srcset` attributes and a new `` component. -- [#8011](https://github.com/withastro/astro/pull/8011) [`5b1e39ef6`](https://github.com/withastro/astro/commit/5b1e39ef6ec6dcebea96584f95d9530bd9aa715d) Thanks [@bluwy](https://github.com/bluwy)! - Move hoisted script analysis optimization behind the `experimental.optimizeHoistedScript` option + ## `srcset` support -- Updated dependencies [[`b675acb2a`](https://github.com/withastro/astro/commit/b675acb2aa820448e9c0d363339a37fbac873215)]: - - @astrojs/telemetry@3.0.0-beta.1 + Two new properties have been added to `Image` and `getImage()`: `densities` and `widths`. -## 3.0.0-beta.0 + These properties can be used to generate a `srcset` attribute, either based on absolute widths in pixels (e.g. [300, 600, 900]) or pixel density descriptors (e.g. `["2x"]` or `[1.5, 2]`). -### Major Changes + ```astro + --- + import { Image } from 'astro'; + import myImage from './my-image.jpg'; + --- -- [`1eae2e3f7`](https://github.com/withastro/astro/commit/1eae2e3f7d693c9dfe91c8ccfbe606d32bf2fb81) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023. + My cool image + ``` -- [`76ddef19c`](https://github.com/withastro/astro/commit/76ddef19ccab6e5f7d3a5740cd41acf10e334b38) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Removed automatic flattening of `getStaticPaths` result. `.flatMap` and `.flat` should now be used to ensure that you're returning a flat array. + ```html + My cool image + ``` -- [`3fdf509b2`](https://github.com/withastro/astro/commit/3fdf509b2731a9b2f972d89291e57cf78d62c769) Thanks [@ematipico](https://github.com/ematipico)! - The `build.split` and `build.excludeMiddleware` configuration options are deprecated and have been replaced by options in the adapter config. + ## Picture component - If your config includes the `build.excludeMiddleware` option, replace it with `edgeMiddleware` in your adapter options: + The experimental `` component can be used to generate a `` element with multiple `` elements. - ```diff - import { defineConfig } from "astro/config"; - import netlify from "@astrojs/netlify/functions"; + The example below uses the `format` property to generate a `` in each of the specified image formats: - export default defineConfig({ - build: { - - excludeMiddleware: true - }, - adapter: netlify({ - + edgeMiddleware: true - }), - }); - ``` + ```astro + --- + import { Picture } from 'astro:assets'; + import myImage from './my-image.jpg'; + --- - If your config includes the `build.split` option, replace it with `functionPerRoute` in your adapter options: + + ``` - ```diff - import { defineConfig } from "astro/config"; - import netlify from "@astrojs/netlify/functions"; + The above code will generate the following HTML, and allow the browser to determine the best image to display: - export default defineConfig({ - build: { - - split: true - }, - adapter: netlify({ - + functionPerRoute: true - }), - }); + ```html + + + + My super image in multiple formats! + ``` -- [`2f951cd40`](https://github.com/withastro/astro/commit/2f951cd403dfcc2c3ca6aae618ae3e1409516e32) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Sharp is now the default image service used for `astro:assets`. If you would prefer to still use Squoosh, you can update your config with the following: + The `Picture` component takes all the same props as the `Image` component, including the new `densities` and `widths` properties. + +### Patch Changes + +- [#8771](https://github.com/withastro/astro/pull/8771) [`bd5aa1cd3`](https://github.com/withastro/astro/commit/bd5aa1cd35ecbd2784f30dd836ff814684fee02b) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where the transitions router did not work within framework components. - ```ts - import { defineConfig, squooshImageService } from 'astro/config'; +- [#8800](https://github.com/withastro/astro/pull/8800) [`391729686`](https://github.com/withastro/astro/commit/391729686bcc8404a7dd48c5987ee380daf3200f) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where attempting to assign a variable onto locals threw an error. - // https://astro.build/config - export default defineConfig({ - image: { - service: squooshImageService(), - }, - }); - ``` +- [#8795](https://github.com/withastro/astro/pull/8795) [`f999365b8`](https://github.com/withastro/astro/commit/f999365b8248b8b14f3743e68a42d450d06acff3) Thanks [@bluwy](https://github.com/bluwy)! - Fix markdown page charset to be utf-8 by default (same as Astro 2) - However, not only do we recommend using Sharp as it is faster and more reliable, it is also highly likely that the Squoosh service will be removed in a future release. +- [#8810](https://github.com/withastro/astro/pull/8810) [`0abff97fe`](https://github.com/withastro/astro/commit/0abff97fed3db14be3c75ff9ece3aab67c4ba783) Thanks [@jacobthesheep](https://github.com/jacobthesheep)! - Remove `network-information-types` package since TypeScript supports Network Information API natively. -- [`c022a4217`](https://github.com/withastro/astro/commit/c022a4217a805d223c1494e9eda4e48bbf810388) Thanks [@Princesseuh](https://github.com/Princesseuh)! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of `astro:assets` such as enforcing `alt`, no CLS etc to users +- [#8813](https://github.com/withastro/astro/pull/8813) [`3bef32f81`](https://github.com/withastro/astro/commit/3bef32f81c56bc600ca307f1bd40787e23e625a5) Thanks [@martrapp](https://github.com/martrapp)! - Save and restore focus for persisted input elements during view transitions -- [`67becaa58`](https://github.com/withastro/astro/commit/67becaa580b8f787df58de66b7008b7098f1209c) Thanks [@ematipico](https://github.com/ematipico)! - Removed support for old syntax of the API routes. +- Updated dependencies [[`c4270e476`](https://github.com/withastro/astro/commit/c4270e47681ee2453f3fea07fed7b238645fd6ea)]: + - @astrojs/markdown-remark@3.3.0 -- [`dfc2d93e3`](https://github.com/withastro/astro/commit/dfc2d93e3c645995379358fabbdfa9aab99f43d8) Thanks [@bluwy](https://github.com/bluwy)! - Remove MDX plugin re-ordering hack +## 3.2.4 -- [`3dc1ca2fa`](https://github.com/withastro/astro/commit/3dc1ca2fac8d9965cc5085a5d09e72ed87b4281a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Reduced the amount of polyfills provided by Astro. Astro will no longer provide (no-op) polyfills for several web apis such as HTMLElement, Image or Document. If you need access to those APIs on the server, we recommend using more proper polyfills available on npm. +### Patch Changes -- [`1be84dfee`](https://github.com/withastro/astro/commit/1be84dfee3ce8e6f5cc624f99aec4e980f6fde37) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update `tsconfig.json` presets with `moduleResolution: 'bundler'` and other new options from TypeScript 5.0. Astro now assumes that you use TypeScript 5.0 (March 2023), or that your editor includes it, ex: VS Code 1.77 +- [#8638](https://github.com/withastro/astro/pull/8638) [`160d1cd75`](https://github.com/withastro/astro/commit/160d1cd755e70af1d8ec294d01dd2cb32d60db50) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - The `@astrojs/tailwind` integration now creates a `tailwind.config.mjs` file by default -- [`35f01df79`](https://github.com/withastro/astro/commit/35f01df797d23315f2bee2fc3fd795adb0559c58) Thanks [@Princesseuh](https://github.com/Princesseuh)! - The `astro check` command now requires an external package `@astrojs/check` and an install of `typescript` in your project. This was done in order to make the main `astro` package smaller and give more flexibility to users in regard to the version of TypeScript they use. +- [#8767](https://github.com/withastro/astro/pull/8767) [`30de32436`](https://github.com/withastro/astro/commit/30de324361bc261956eb9fc08fe60a82ff602a9b) Thanks [@martrapp](https://github.com/martrapp)! - Revert fix #8472 -- [`3fdf509b2`](https://github.com/withastro/astro/commit/3fdf509b2731a9b2f972d89291e57cf78d62c769) Thanks [@ematipico](https://github.com/ematipico)! - The `build.split` and `build.excludeMiddleware` configuration options are deprecated and have been replaced by options in the adapter config. + [#8472](https://github.com/withastro/astro/pull/8472) caused some style files from previous pages to not be cleanly deleted on view transitions. For a discussion of a future fix for the original issue [#8144](https://github.com/withastro/astro/issues/8114) see [#8745](https://github.com/withastro/astro/pull/8745). - If your config includes the `build.excludeMiddleware` option, replace it with `edgeMiddleware` in your adapter options: +- [#8741](https://github.com/withastro/astro/pull/8741) [`c4a7ec425`](https://github.com/withastro/astro/commit/c4a7ec4255e7acb9555cb8bb74ea13c5fbb2ac17) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue on Windows where lowercase drive letters in current working directory led to missing scripts and styles. - ```diff - import { defineConfig } from "astro/config"; - import vercel from "@astrojs/vercel/serverless"; +- [#8772](https://github.com/withastro/astro/pull/8772) [`c24f70d91`](https://github.com/withastro/astro/commit/c24f70d91601dd3a6b5a84f04d61824e775e9b44) Thanks [@martrapp](https://github.com/martrapp)! - Fix flickering during view transitions - export default defineConfig({ - build: { - - excludeMiddleware: true - }, - adapter: vercel({ - + edgeMiddleware: true - }), - }); - ``` +- [#8754](https://github.com/withastro/astro/pull/8754) [`93b092266`](https://github.com/withastro/astro/commit/93b092266febfad16a48575f8eee12d5910bf071) Thanks [@bluwy](https://github.com/bluwy)! - Make CSS chunk names less confusing - If your config includes the `build.split` option, replace it with `functionPerRoute` in your adapter options: +- [#8776](https://github.com/withastro/astro/pull/8776) [`29cdfa024`](https://github.com/withastro/astro/commit/29cdfa024886dd581cb207586f7dfec6966bdd4e) Thanks [@martrapp](https://github.com/martrapp)! - Fix transition attributes on islands - ```diff - import { defineConfig } from "astro/config"; - import vercel from "@astrojs/vercel/serverless"; +- [#8773](https://github.com/withastro/astro/pull/8773) [`eaed844ea`](https://github.com/withastro/astro/commit/eaed844ea8f2f52e0c9caa40bb3ec7377e10595f) Thanks [@sumimakito](https://github.com/sumimakito)! - Fix an issue where HTML attributes do not render if getHTMLAttributes in an image service returns a Promise - export default defineConfig({ - build: { - - split: true - }, - adapter: vercel({ - + functionPerRoute: true - }), - }); - ``` +## 3.2.3 -- [`78de801f2`](https://github.com/withastro/astro/commit/78de801f21fd4ca1653950027d953bf08614566b) Thanks [@ematipico](https://github.com/ematipico)! - Lowercase names for endpoint functions are now deprecated. +### Patch Changes - Rename functions to their uppercase equivalent: +- [#8737](https://github.com/withastro/astro/pull/8737) [`6f60da805`](https://github.com/withastro/astro/commit/6f60da805e0014bc50dd07bef972e91c73560c3c) Thanks [@ematipico](https://github.com/ematipico)! - Add provenance statement when publishing the library from CI - ```diff - - export function get() { - + export function GET() { - return new Response(JSON.stringify({ "title": "Bob's blog" })); - } +- [#8747](https://github.com/withastro/astro/pull/8747) [`d78806dfe`](https://github.com/withastro/astro/commit/d78806dfe0301ea7ffe6c7c1f783bd415ac7cda9) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve error message when user attempts to render a dynamic component reference - - export function post() { - + export function POST() { - return new Response(JSON.stringify({ "title": "Bob's blog" })); - } +- [#8736](https://github.com/withastro/astro/pull/8736) [`d1c75fe15`](https://github.com/withastro/astro/commit/d1c75fe158839699c59728cf3a83888e8c72a459) Thanks [@bluwy](https://github.com/bluwy)! - Fix `tsconfig.json` update causing the server to crash - - export function put() { - + export function PUT() { - return new Response(JSON.stringify({ "title": "Bob's blog" })); - } +- [#8743](https://github.com/withastro/astro/pull/8743) [`aa265d730`](https://github.com/withastro/astro/commit/aa265d73024422967c1b1c68ad268c419c6c798f) Thanks [@bluwy](https://github.com/bluwy)! - Remove unused CSS output files when inlined - - export function all() { - + export function ALL() { - return new Response(JSON.stringify({ "title": "Bob's blog" })); - } +- [#8700](https://github.com/withastro/astro/pull/8700) [`78adbc443`](https://github.com/withastro/astro/commit/78adbc4433208458291e36713909762e148e1e5d) Thanks [@jacobthesheep](https://github.com/jacobthesheep)! - Update link for Netlify SSR - // you can use the whole word "DELETE" - - export function del() { - + export function DELETE() { - return new Response(JSON.stringify({ "title": "Bob's blog" })); - } - ``` +- [#8729](https://github.com/withastro/astro/pull/8729) [`21e0757ea`](https://github.com/withastro/astro/commit/21e0757ea22a57d344c934045ca19db93b684436) Thanks [@lilnasy](https://github.com/lilnasy)! - Node-based adapters now create less server-side javascript -- [`59d6e569f`](https://github.com/withastro/astro/commit/59d6e569f63e175c97e82e94aa7974febfb76f7c) Thanks [@matthewp](https://github.com/matthewp)! - Astro.cookies.get(key) returns undefined if cookie doesn't exist +- [#8730](https://github.com/withastro/astro/pull/8730) [`357270f2a`](https://github.com/withastro/astro/commit/357270f2a3d0bf2aa634ba7e52e9d17618eff4a7) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve `astro info` copy to clipboard compatability - With this change, Astro.cookies.get(key) no longer always returns a `AstroCookie` object. Instead it now returns `undefined` if the cookie does not exist. +- Updated dependencies [[`21f482657`](https://github.com/withastro/astro/commit/21f4826576c2c812a1604e18717799da3470decd), [`6f60da805`](https://github.com/withastro/astro/commit/6f60da805e0014bc50dd07bef972e91c73560c3c), [`21e0757ea`](https://github.com/withastro/astro/commit/21e0757ea22a57d344c934045ca19db93b684436)]: + - @astrojs/markdown-remark@3.2.1 + - @astrojs/internal-helpers@0.2.1 + - @astrojs/telemetry@3.0.3 - You should update your code if you assume that all calls to `get()` return a value. When using with `has()` you still need to assert the value, like so: +## 3.2.2 - ```astro - --- - if (Astro.cookies.has(id)) { - const id = Astro.cookies.get(id)!; - } - --- - ``` +### Patch Changes -- [`7723c4cc9`](https://github.com/withastro/astro/commit/7723c4cc93298c2e6530e55da7afda048f22cf81) Thanks [@ematipico](https://github.com/ematipico)! - The property `compressHTML` is now `true` by default. Setting this value to `true` is no longer required. +- [#8724](https://github.com/withastro/astro/pull/8724) [`455af3235`](https://github.com/withastro/astro/commit/455af3235b3268852e6988accecc796f03f6d16e) Thanks [@bluwy](https://github.com/bluwy)! - Fix CSS styles on Windows - If you do not want to minify your HTML output, you must set this value to `false` in `astro.config.mjs`. +- [#8710](https://github.com/withastro/astro/pull/8710) [`4c2bec681`](https://github.com/withastro/astro/commit/4c2bec681b0752e7215b8a32bd2d44bf477adac1) Thanks [@matthewp](https://github.com/matthewp)! - Fixes View transition styles being missing when component used multiple times - ```diff - import {defineConfig} from "astro/config"; - export default defineConfig({ - + compressHTML: false - }) - ``` +## 3.2.1 -- [`fb5cd6b56`](https://github.com/withastro/astro/commit/fb5cd6b56dc27a71366ed5e1ab8bfe9b8f96bac5) Thanks [@ematipico](https://github.com/ematipico)! - Astro's default port when running the dev or preview server is now `4321`. +### Patch Changes - This will reduce conflicts with ports used by other tools. +- [#8680](https://github.com/withastro/astro/pull/8680) [`31c59ad8b`](https://github.com/withastro/astro/commit/31c59ad8b6a72f95c98a306ecf92d198c03110b4) Thanks [@bluwy](https://github.com/bluwy)! - Fix hydration on slow connection -- [`631b9c410`](https://github.com/withastro/astro/commit/631b9c410d5d66fa384674027ba95d69ebb5063f) Thanks [@bluwy](https://github.com/bluwy)! - Remove MDX special `components` export handling +- [#8698](https://github.com/withastro/astro/pull/8698) [`47ea310f0`](https://github.com/withastro/astro/commit/47ea310f01d06ed1562c790bec348718a2fa8277) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Use a Node-specific image endpoint to resolve images in dev and Node SSR. This should fix many issues related to getting 404 from the \_image endpoint under certain configurations + +- [#8706](https://github.com/withastro/astro/pull/8706) [`345808170`](https://github.com/withastro/astro/commit/345808170fce783ddd3c9a4035a91fa64dcc5f46) Thanks [@bluwy](https://github.com/bluwy)! - Fix duplicated Astro and Vite injected styles + +## 3.2.0 ### Minor Changes -- [`9b4f70a62`](https://github.com/withastro/astro/commit/9b4f70a629f55e461759ba46f68af7097a2e9215) Thanks [@ematipico](https://github.com/ematipico)! - Introduced the concept of feature map. A feature map is a list of features that are built-in in Astro, and an Adapter - can tell Astro if it can support it. +- [#8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@matthewp](https://github.com/matthewp)! - Support adding integrations dynamically + + Astro integrations can now themselves dynamically add and configure additional integrations during set-up. This makes it possible for integration authors to bundle integrations more intelligently for their users. + + In the following example, a custom integration checks whether `@astrojs/sitemap` is already configured. If not, the integration adds Astro’s sitemap integration, passing any desired configuration options: ```ts - import { AstroIntegration } from './astro'; + import sitemap from '@astrojs/sitemap'; + import type { AstroIntegration } from 'astro'; - function myIntegration(): AstroIntegration { + const MyIntegration = (): AstroIntegration => { return { - name: 'astro-awesome-list', - // new feature map - supportedAstroFeatures: { - hybridOutput: 'experimental', - staticOutput: 'stable', - serverOutput: 'stable', - assets: { - supportKind: 'stable', - isSharpCompatible: false, - isSquooshCompatible: false, - }, + name: 'my-integration', + + 'astro:config:setup': ({ config, updateConfig }) => { + // Look for sitemap in user-configured integrations. + const userSitemap = config.integrations.find( + ({ name }) => name === '@astrojs/sitemap' + ); + + if (!userSitemap) { + // If sitemap wasn’t found, add it. + updateConfig({ + integrations: [sitemap({ /* opts */ }], + }); + } }, }; - } + }; ``` -- [`bc37331d8`](https://github.com/withastro/astro/commit/bc37331d8154e3e95a8df9131e4e014e78a7a9e7) Thanks [@ematipico](https://github.com/ematipico)! - Integrations can now log messages using Astro’s built-in logger. +- [#8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@matthewp](https://github.com/matthewp)! - View transitions can now be triggered from JavaScript! - The logger is available to all hooks as an additional parameter: + Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation: - ```ts - import { AstroIntegration } from './astro'; + ```js + import { navigate } from 'astro:transitions/client'; - // integration.js - export function myIntegration(): AstroIntegration { - return { - name: 'my-integration', - hooks: { - 'astro:config:done': ({ logger }) => { - logger.info('Configure integration...'); - }, - }, - }; - } + // Navigate to the selected option automatically. + document.querySelector('select').onchange = (ev) => { + let href = ev.target.value; + navigate(href); + }; ``` -### Patch Changes +- [#8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@matthewp](https://github.com/matthewp)! - Route Announcer in `` -- Updated dependencies [[`1eae2e3f7`](https://github.com/withastro/astro/commit/1eae2e3f7d693c9dfe91c8ccfbe606d32bf2fb81)]: - - @astrojs/telemetry@3.0.0-beta.0 - - @astrojs/internal-helpers@0.2.0-beta.0 - - @astrojs/markdown-remark@3.0.0-beta.0 + The View Transitions router now does route announcement. When transitioning between pages with a traditional MPA approach, assistive technologies will announce the page title when the page finishes loading. This does not automatically happen during client-side routing, so visitors relying on these technologies to announce routes are not aware when a page has changed. -## 2.10.14 + The view transitions route announcer runs after the `astro:page-load` event, looking for the page `` to announce. If one cannot be found, the announcer falls back to the first `<h1>` it finds, or otherwise announces the pathname. We recommend you always include a `<title>` in each page for accessibility. + + See the [View Transitions docs](https://docs.astro.build/en/guides/view-transitions/) for more on how accessibility is handled. ### Patch Changes -- [#8206](https://github.com/withastro/astro/pull/8206) [`52606a390`](https://github.com/withastro/astro/commit/52606a3909f9de5ced9b9ba3ba25832f73a8689e) Thanks [@martrapp](https://github.com/martrapp)! - fix: View Transition: swap attributes of document's root element +- [#8647](https://github.com/withastro/astro/pull/8647) [`408b50c5e`](https://github.com/withastro/astro/commit/408b50c5ea5aba66252424f54788557274a58571) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where configured redirects with dynamic routes did not work in dev mode. -## 2.10.13 +- [#8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@matthewp](https://github.com/matthewp)! - Fix logLevel passed to Vite build + +- [#8696](https://github.com/withastro/astro/pull/8696) [`2167ffd72`](https://github.com/withastro/astro/commit/2167ffd72f58904f449ffc6e53581a2d8faf7317) Thanks [@matthewp](https://github.com/matthewp)! - Fix NoImageMetadata image path error message + +- [#8670](https://github.com/withastro/astro/pull/8670) [`e797b6816`](https://github.com/withastro/astro/commit/e797b6816072f63f38d9a91dd2a66765c558d46c) Thanks [@MichailiK](https://github.com/MichailiK)! - Fix asset optimization failing when outDir is outside the project directory + +- [#8684](https://github.com/withastro/astro/pull/8684) [`824dd4670`](https://github.com/withastro/astro/commit/824dd4670a145c47337eff84a5ae412bf7443117) Thanks [@matthewp](https://github.com/matthewp)! - Support content collections with % in filename + +- [#8648](https://github.com/withastro/astro/pull/8648) [`cfd895d87`](https://github.com/withastro/astro/commit/cfd895d877fdb7fc69e745665a374fc32cb3ef7d) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where a response with status code 404 led to an endless loop of implicit rerouting in dev mode. + +## 3.1.4 ### Patch Changes -- [#8152](https://github.com/withastro/astro/pull/8152) [`582132328`](https://github.com/withastro/astro/commit/5821323285646aee7ff9194a505f708028e4db57) Thanks [@andremralves](https://github.com/andremralves)! - Displays a new config error if `outDir` is placed within `publicDir`. +- [#8646](https://github.com/withastro/astro/pull/8646) [`69fbf95b2`](https://github.com/withastro/astro/commit/69fbf95b22c0fb0d8e7e5fef9ec61e26cac9767f) Thanks [@matthewp](https://github.com/matthewp)! - Fix cases of head propagation not occuring in dev server -- [#8166](https://github.com/withastro/astro/pull/8166) [`fddd4dc71`](https://github.com/withastro/astro/commit/fddd4dc71af321bd6b4d01bb4b1b955284846e60) Thanks [@martrapp](https://github.com/martrapp)! - ViewTransitions: Fixes in the client-side router +## 3.1.3 -- [#8182](https://github.com/withastro/astro/pull/8182) [`cfc465dde`](https://github.com/withastro/astro/commit/cfc465ddebcc58d20f29ecffaa857a77525435a9) Thanks [@martrapp](https://github.com/martrapp)! - View Transitions: self link (`href=""`) does not trigger page reload +### Patch Changes -- [#8171](https://github.com/withastro/astro/pull/8171) [`95120efbe`](https://github.com/withastro/astro/commit/95120efbe817163663492181cbeb225849354493) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix missing type for `imageConfig` export from `astro:assets` +- [#8591](https://github.com/withastro/astro/pull/8591) [`863f5171e`](https://github.com/withastro/astro/commit/863f5171e8e7516c9d72f2e48ea7db1dea71c4f5) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - add site url to the location of redirect -- [#8187](https://github.com/withastro/astro/pull/8187) [`273335cb0`](https://github.com/withastro/astro/commit/273335cb01615c3c06d46c02464f4496a81f8d0b) Thanks [@bluwy](https://github.com/bluwy)! - Fix Astro components parent-child render order +- [#8633](https://github.com/withastro/astro/pull/8633) [`63141f3f3`](https://github.com/withastro/astro/commit/63141f3f3e4a57d2f55ccfebd7e506ea1033a1ab) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix build not working when having multiple images in the same Markdown file -- [#8184](https://github.com/withastro/astro/pull/8184) [`9142178b1`](https://github.com/withastro/astro/commit/9142178b113443749b87c1d259859b42a3d7a9c4) Thanks [@martrapp](https://github.com/martrapp)! - Fix: The scrolling behavior of ViewTransitions is now more similar to the expected browser behavior +- [#8636](https://github.com/withastro/astro/pull/8636) [`974d5117a`](https://github.com/withastro/astro/commit/974d5117abc8b47f8225e455b9285c88e305272f) Thanks [@martrapp](https://github.com/martrapp)! - fix: no deletion of scripts during view transition -- [#8163](https://github.com/withastro/astro/pull/8163) [`179796405`](https://github.com/withastro/astro/commit/179796405e053b559d83f84507e5a465861a029a) Thanks [@delucis](https://github.com/delucis)! - Make typing of `defineCollection` more permissive to support advanced union and intersection types +- [#8645](https://github.com/withastro/astro/pull/8645) [`cb838b84b`](https://github.com/withastro/astro/commit/cb838b84b457041b0442996f7611b04aa940a620) Thanks [@matthewp](https://github.com/matthewp)! - Fix getDataEntryById to lookup by basename -## 2.10.12 +- [#8640](https://github.com/withastro/astro/pull/8640) [`f36c4295b`](https://github.com/withastro/astro/commit/f36c4295be1ef2bcfa4aecb3c59551388419c53d) Thanks [@matthewp](https://github.com/matthewp)! - Warn on empty content collections + +- [#8615](https://github.com/withastro/astro/pull/8615) [`4c4ad9d16`](https://github.com/withastro/astro/commit/4c4ad9d167e8d15ff2c15e3336ede8ca22f646b2) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Improve the logging of assets for adapters that do not support image optimization + +## 3.1.2 ### Patch Changes -- [#8144](https://github.com/withastro/astro/pull/8144) [`04caa99c4`](https://github.com/withastro/astro/commit/04caa99c48ce604ca3b90302ff0df8dcdbeee650) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where data entries' id included backslashes instead of forward slashes on Windows. +- [#8612](https://github.com/withastro/astro/pull/8612) [`bcad715ce`](https://github.com/withastro/astro/commit/bcad715ce67bc73a7927c941d1e7f02a82d638c2) Thanks [@matthewp](https://github.com/matthewp)! - Ensure cookies are attached when middleware changes the Response -## 2.10.11 +- [#8598](https://github.com/withastro/astro/pull/8598) [`bdd267d08`](https://github.com/withastro/astro/commit/bdd267d08937611984d074a2872af11ecf3e1a12) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix relative images in Markdown breaking the build process in certain circumstances -### Patch Changes +- [#8382](https://github.com/withastro/astro/pull/8382) [`e522a5eb4`](https://github.com/withastro/astro/commit/e522a5eb41c7df1e62c307c84cd14d53777439ff) Thanks [@DerTimonius](https://github.com/DerTimonius)! - Do not throw an error for an empty collection directory. + +- [#8600](https://github.com/withastro/astro/pull/8600) [`ed54d4644`](https://github.com/withastro/astro/commit/ed54d46449accc99ad117d6b0d50a8905e4d65d7) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Improve config info telemetry + +- [#8592](https://github.com/withastro/astro/pull/8592) [`70f2a8003`](https://github.com/withastro/astro/commit/70f2a80039d232731f63ea735e896997ec0eac7a) Thanks [@bluwy](https://github.com/bluwy)! - Fix alias plugin causing CSS ordering issue + +- [#8614](https://github.com/withastro/astro/pull/8614) [`4398e9298`](https://github.com/withastro/astro/commit/4398e929877dfadd2067af28413284afdfde9d8b) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where spaces and unicode characters in project path prevented middleware from running. + +- [#8603](https://github.com/withastro/astro/pull/8603) [`8f8b9069d`](https://github.com/withastro/astro/commit/8f8b9069ddd21cf57d37955ab3a92710492226f5) Thanks [@matthewp](https://github.com/matthewp)! - Prevent body scripts from re-executing on navigation + +- [#8609](https://github.com/withastro/astro/pull/8609) [`5a988eaf6`](https://github.com/withastro/astro/commit/5a988eaf609ddc1b9609acb0cdc2dda43d10a5c2) Thanks [@bluwy](https://github.com/bluwy)! - Fix Astro HMR from a CSS dependency -- [#8136](https://github.com/withastro/astro/pull/8136) [`97c8760d7`](https://github.com/withastro/astro/commit/97c8760d78ffd172149f7776442725861576fba7) Thanks [@andremralves](https://github.com/andremralves)! - Fix 404 response leading to an infinite loop when there is no 404 page. +- Updated dependencies [[`ed54d4644`](https://github.com/withastro/astro/commit/ed54d46449accc99ad117d6b0d50a8905e4d65d7)]: + - @astrojs/telemetry@3.0.2 -## 2.10.10 +## 3.1.1 ### Patch Changes -- [#8127](https://github.com/withastro/astro/pull/8127) [`b12c8471f`](https://github.com/withastro/astro/commit/b12c8471f413c0291de4a9c444bfe3079a192034) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Do not throw Error when users pass an object with a "type" property +- [#8580](https://github.com/withastro/astro/pull/8580) [`8d361169b`](https://github.com/withastro/astro/commit/8d361169b8e487933d671ce347f0ce74922c80cc) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - add hide to style & script generated for island -- [#8092](https://github.com/withastro/astro/pull/8092) [`7177f7579`](https://github.com/withastro/astro/commit/7177f7579b6e866f0fd895b3fd079d8ba330b1a9) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure dotfiles are cleaned during static builds +- [#8568](https://github.com/withastro/astro/pull/8568) [`95b5f6280`](https://github.com/withastro/astro/commit/95b5f6280d124f8d6f866dc3286406c272ee91bf) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix small types issues related to `astro:assets`'s AVIF support and `getImage` -- [#8122](https://github.com/withastro/astro/pull/8122) [`fa6b68a77`](https://github.com/withastro/astro/commit/fa6b68a776c5b3cc8167fc042b7d305234ebcff9) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve fidelity of time stats when running `astro build` +- [#8579](https://github.com/withastro/astro/pull/8579) [`0586e20e8`](https://github.com/withastro/astro/commit/0586e20e8338e077b8eb1a3a96bdd19f5950c22f) Thanks [@rishi-raj-jain](https://github.com/rishi-raj-jain)! - show redirect symbol as of the page -- [#8070](https://github.com/withastro/astro/pull/8070) [`097a8e4e9`](https://github.com/withastro/astro/commit/097a8e4e916c7df18eafdaa6c8d6ce2991c17ab6) Thanks [@lilnasy](https://github.com/lilnasy)! - Fix a handful of edge cases with prerendered 404/500 pages +## 3.1.0 -- [#8123](https://github.com/withastro/astro/pull/8123) [`1f6497c33`](https://github.com/withastro/astro/commit/1f6497c3341231ee76fc4538cfe7624cf4721d56) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Open to configured `base` when `astro dev --open` runs +### Minor Changes -- [#8105](https://github.com/withastro/astro/pull/8105) [`0e0fa605d`](https://github.com/withastro/astro/commit/0e0fa605d109cc91e08a1ae1cc560ea240fe631b) Thanks [@martrapp](https://github.com/martrapp)! - ViewTransition: bug fix for lost scroll position in browser history +- [#8467](https://github.com/withastro/astro/pull/8467) [`ecc65abbf`](https://github.com/withastro/astro/commit/ecc65abbf9e086c5bbd1973cd4a820082b4e0dc5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add a new `image.endpoint` setting to allow using a custom endpoint in dev and SSR -- [#8116](https://github.com/withastro/astro/pull/8116) [`b290f0a99`](https://github.com/withastro/astro/commit/b290f0a99778a9b9c1045f3cd06b6aee934d7c03) Thanks [@martrapp](https://github.com/martrapp)! - On back navigation only animate view transitions that were animated going forward. +- [#8518](https://github.com/withastro/astro/pull/8518) [`2c4fc878b`](https://github.com/withastro/astro/commit/2c4fc878bece36b7fcf1470419c7ce6f1e1e95d0) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds support for using AVIF (`.avif`) files with the Image component. Importing an AVIF file will now correctly return the same object shape as other image file types. See the [Image docs](https://docs.astro.build/en/guides/images/#update-existing-img-tags) for more information on the different properties available on the returned object. -- [#7778](https://github.com/withastro/astro/pull/7778) [`d6b494376`](https://github.com/withastro/astro/commit/d6b4943764989c0e89df2d6875cd19691566dfb3) Thanks [@y-nk](https://github.com/y-nk)! - Added support for optimizing remote images from authorized sources when using `astro:assets`. This comes with two new parameters to specify which domains (`image.domains`) and host patterns (`image.remotePatterns`) are authorized for remote images. +- [#8464](https://github.com/withastro/astro/pull/8464) [`c92e0acd7`](https://github.com/withastro/astro/commit/c92e0acd715171b3f4c3294099780e21576648c8) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add types for the object syntax for `style` (ex: `style={{color: 'red'}}`) - For example, the following configuration will only allow remote images from `astro.build` to be optimized: +### Patch Changes - ```ts - // astro.config.mjs - export default defineConfig({ - image: { - domains: ['astro.build'], - }, - }); - ``` +- [#8532](https://github.com/withastro/astro/pull/8532) [`7522bb491`](https://github.com/withastro/astro/commit/7522bb4914f2f9e8b8f3c743bc9c941fd3aca644) Thanks [@bluwy](https://github.com/bluwy)! - Improve markdown rendering performance by sharing processor instance - The following configuration will only allow remote images from HTTPS hosts: +- [#8537](https://github.com/withastro/astro/pull/8537) [`f95febf96`](https://github.com/withastro/astro/commit/f95febf96bb97babb28d78994332f5e47f5f637d) Thanks [@martrapp](https://github.com/martrapp)! - bugfix checking media-type in client-side router - ```ts - // astro.config.mjs - export default defineConfig({ - image: { - remotePatterns: [{ protocol: 'https' }], - }, - }); - ``` +- [#8536](https://github.com/withastro/astro/pull/8536) [`b85c8a78a`](https://github.com/withastro/astro/commit/b85c8a78a116dbbddc901438bc0b7a1917dc0238) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Improved error messages around `astro:assets` -- [#8109](https://github.com/withastro/astro/pull/8109) [`da6e3da1c`](https://github.com/withastro/astro/commit/da6e3da1ce00bed625fc568cfe4693713448e93f) Thanks [@martrapp](https://github.com/martrapp)! - fix: reinsert attribute to specify direction of ViewTransition (forward / back) +- [#7607](https://github.com/withastro/astro/pull/7607) [`45364c345`](https://github.com/withastro/astro/commit/45364c345267429e400baecd1fbc290503f8b13a) Thanks [@FineWolf](https://github.com/FineWolf)! - Add `CollectionKey`, `ContentCollectionKey`, and `DataCollectionKey` exports to `astro:content` -## 2.10.9 +- Updated dependencies [[`d93987824`](https://github.com/withastro/astro/commit/d93987824d3d6b4f58267be21ab8466ee8d5d5f8), [`7522bb491`](https://github.com/withastro/astro/commit/7522bb4914f2f9e8b8f3c743bc9c941fd3aca644)]: + - @astrojs/markdown-remark@3.2.0 + +## 3.0.13 ### Patch Changes -- [#8091](https://github.com/withastro/astro/pull/8091) [`56e7c5177`](https://github.com/withastro/astro/commit/56e7c5177bd61b404978dc9b82e2d34d76a4b2f9) Thanks [@martrapp](https://github.com/martrapp)! - Handle `<noscript>` tags in `<head>` during ViewTransitions +- [#8484](https://github.com/withastro/astro/pull/8484) [`78b82bb39`](https://github.com/withastro/astro/commit/78b82bb3929bee5d8d9bd32d65374956ddb05859) Thanks [@bb010g](https://github.com/bb010g)! - fix(astro): add support for `src/content/config.mts` files -## 2.10.8 +- [#8504](https://github.com/withastro/astro/pull/8504) [`5e1099f68`](https://github.com/withastro/astro/commit/5e1099f686abcc7026bd4fa74727f3b311c6d6d6) Thanks [@ematipico](https://github.com/ematipico)! - Minify the HTML of the redicts emitted during the build. -### Patch Changes +- [#8480](https://github.com/withastro/astro/pull/8480) [`644825845`](https://github.com/withastro/astro/commit/644825845c11c8d100a9b0d16b69a23c165c529e) Thanks [@yamanoku](https://github.com/yamanoku)! - Do not add type="text/css" to inline style tag -- [#7702](https://github.com/withastro/astro/pull/7702) [`c19987df0`](https://github.com/withastro/astro/commit/c19987df0be3520cf774476cea270c03edd08354) Thanks [@shishkin](https://github.com/shishkin)! - Fix AstroConfigSchema type export +- [#8472](https://github.com/withastro/astro/pull/8472) [`fa77fa63d`](https://github.com/withastro/astro/commit/fa77fa63d944f709a37f08be93f0d14fe1d91188) Thanks [@matthewp](https://github.com/matthewp)! - Prevent client:only styles from being removed in dev (View Transitions) -- [#8084](https://github.com/withastro/astro/pull/8084) [`560e45924`](https://github.com/withastro/astro/commit/560e45924622141206ff5b47d134cb343d6d2a71) Thanks [@hbgl](https://github.com/hbgl)! - Stream request body instead of buffering it in memory. +- [#8506](https://github.com/withastro/astro/pull/8506) [`23f9536de`](https://github.com/withastro/astro/commit/23f9536de0456ed2ddc9a77f7aef773ab6a8e73c) Thanks [@mascii](https://github.com/mascii)! - chore: correct description of `attribute` option in `scopedStyleStrategy` -- [#8066](https://github.com/withastro/astro/pull/8066) [`afc45af20`](https://github.com/withastro/astro/commit/afc45af2022f7c43fbb6c5c04983695f3819e47e) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Add support for non-awaited imports to the Image component and `getImage` +- [#8505](https://github.com/withastro/astro/pull/8505) [`2db9762eb`](https://github.com/withastro/astro/commit/2db9762eb06d8a95021556c64e0cbb56c61352d5) Thanks [@martrapp](https://github.com/martrapp)! - Restore horizontal scroll position on history navigation (view transitions) -- [#7866](https://github.com/withastro/astro/pull/7866) [`d1f7143f9`](https://github.com/withastro/astro/commit/d1f7143f9caf2ffa0e87cc55c0e05339d3501db3) Thanks [@43081j](https://github.com/43081j)! - Add second type argument to the AstroGlobal type to type Astro.self. This change will ultimately allow our editor tooling to provide props completions and intellisense for `<Astro.self />` +- [#8461](https://github.com/withastro/astro/pull/8461) [`435b10549`](https://github.com/withastro/astro/commit/435b10549878281ad2bb60207cb86f312a4a809f) Thanks [@rdwz](https://github.com/rdwz)! - Fix lang unspecified code blocks (markdownlint MD040) -- [#8032](https://github.com/withastro/astro/pull/8032) [`3e46634fd`](https://github.com/withastro/astro/commit/3e46634fd540e5b967d2e5c9abd6235452cee2f2) Thanks [@natemoo-re](https://github.com/natemoo-re)! - `astro add` now passes down `--save-prod`, `--save-dev`, `--save-exact`, and `--no-save` flags for installation +- [#8492](https://github.com/withastro/astro/pull/8492) [`a6a516d94`](https://github.com/withastro/astro/commit/a6a516d9446a50cc32fbd7201b243c63b3a4db43) Thanks [@xiBread](https://github.com/xiBread)! - fix(types): make `image.service` optional -- [#8035](https://github.com/withastro/astro/pull/8035) [`a12027b6a`](https://github.com/withastro/astro/commit/a12027b6af411be39700919ca47e240a335e9887) Thanks [@fyndor](https://github.com/fyndor)! - Removed extra double quotes from computed style in shiki code component +- [#8522](https://github.com/withastro/astro/pull/8522) [`43bc5f2a5`](https://github.com/withastro/astro/commit/43bc5f2a55173218bcfeec50242b72ae999930e2) Thanks [@martrapp](https://github.com/martrapp)! - let view transitions handle same origin redirects -## 2.10.7 +- [#8491](https://github.com/withastro/astro/pull/8491) [`0ca332ba4`](https://github.com/withastro/astro/commit/0ca332ba4ab82cc04872776398952867b0f43d33) Thanks [@martrapp](https://github.com/martrapp)! - Bugfixes for back navigation in the view transition client-side router + +## 3.0.12 ### Patch Changes -- [#8042](https://github.com/withastro/astro/pull/8042) [`4a145c4c7`](https://github.com/withastro/astro/commit/4a145c4c7d176a3fb56342844690c6999e880069) Thanks [@matthewp](https://github.com/matthewp)! - Treat same pathname with different search params as different page +- [#8449](https://github.com/withastro/astro/pull/8449) [`7eea37a07`](https://github.com/withastro/astro/commit/7eea37a075c6abb1de715de76d1911ff41e8ab13) Thanks [@matthewp](https://github.com/matthewp)! - Fix multi-layout head injection -## 2.10.6 +## 3.0.11 ### Patch Changes -- [#8027](https://github.com/withastro/astro/pull/8027) [`1b8d30209`](https://github.com/withastro/astro/commit/1b8d3020990130dabfaaf753db73a32c6e0c896a) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure dev server restarts respect when `base` is removed - -- [#8033](https://github.com/withastro/astro/pull/8033) [`405913cdf`](https://github.com/withastro/astro/commit/405913cdf20b26407aa351c090f0a0859a4e6f54) Thanks [@matthewp](https://github.com/matthewp)! - Prevent script re-evaluation on page transition - -- [#8036](https://github.com/withastro/astro/pull/8036) [`87d4b1843`](https://github.com/withastro/astro/commit/87d4b18437c7565c48cad4bea81831c2a244ebb8) Thanks [@ematipico](https://github.com/ematipico)! - Fix a bug where the middleware entry point was passed to integrations even though the configuration `build.excludeMiddleware` was set to `false`. +- [#8441](https://github.com/withastro/astro/pull/8441) [`f66053a1e`](https://github.com/withastro/astro/commit/f66053a1ea0a4e3bdb0b0df12bb1bf56e1ea2618) Thanks [@martrapp](https://github.com/martrapp)! - Only transition between pages where both have ViewTransitions enabled -- [#8022](https://github.com/withastro/astro/pull/8022) [`c23377caa`](https://github.com/withastro/astro/commit/c23377caafbc75deb91c33b9678c1b6868ad40ea) Thanks [@bluwy](https://github.com/bluwy)! - Always return a new array instance from `getCollection` in prod +- [#8443](https://github.com/withastro/astro/pull/8443) [`0fa483283`](https://github.com/withastro/astro/commit/0fa483283e54c94f173838cd558dc0dbdd11e699) Thanks [@the-dijkstra](https://github.com/the-dijkstra)! - Fix "Cannot read properties of null" error in CLI code -- [#8013](https://github.com/withastro/astro/pull/8013) [`86bee2812`](https://github.com/withastro/astro/commit/86bee2812185df6e14025e5962a335f51853587b) Thanks [@martrapp](https://github.com/martrapp)! - Links with hash marks now trigger view transitions if they lead to a different page. Links to the same page do not trigger view transitions. +- Updated dependencies [[`f3f62a5a2`](https://github.com/withastro/astro/commit/f3f62a5a20f4881bb04f65f192df8e1ccf7fb601)]: + - @astrojs/markdown-remark@3.1.0 -## 2.10.5 +## 3.0.10 ### Patch Changes -- [#8011](https://github.com/withastro/astro/pull/8011) [`5b1e39ef6`](https://github.com/withastro/astro/commit/5b1e39ef6ec6dcebea96584f95d9530bd9aa715d) Thanks [@bluwy](https://github.com/bluwy)! - Move hoisted script analysis optimization behind the `experimental.optimizeHoistedScript` option +- [#8437](https://github.com/withastro/astro/pull/8437) [`b3cf1b327`](https://github.com/withastro/astro/commit/b3cf1b32765c76cfc90e497a68280ad52f02cb1f) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix imports of images with uppercased file extensions not working -## 2.10.4 +- [#8440](https://github.com/withastro/astro/pull/8440) [`b92d066b7`](https://github.com/withastro/astro/commit/b92d066b737f64f08a9cf293bd07c9263ef8f32d) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix issue where `renderToFinalDestination` would throw in internal Astro code + +## 3.0.9 ### Patch Changes -- [#8003](https://github.com/withastro/astro/pull/8003) [`16161afb2`](https://github.com/withastro/astro/commit/16161afb2b3a04ca7605fcd16de06efe3fabdef2) Thanks [@JuanM04](https://github.com/JuanM04)! - Fixed `EndpointOutput` types with `{ encoding: 'binary' }` +- [#8351](https://github.com/withastro/astro/pull/8351) [`7d95bd9ba`](https://github.com/withastro/astro/commit/7d95bd9baaf755239fd7d35e4813861b2dbccf42) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed a case where dynamic imports tried to preload inlined stylesheets. -- [#7995](https://github.com/withastro/astro/pull/7995) [`79376f842`](https://github.com/withastro/astro/commit/79376f842d25edfe4dc2948548e99b59e1c4d24f) Thanks [@belluzj](https://github.com/belluzj)! - Fix quadratic quote escaping in nested data in island props +- [#8353](https://github.com/withastro/astro/pull/8353) [`1947ef7a9`](https://github.com/withastro/astro/commit/1947ef7a99ce3d1d6ea797842edd31d5edffa5de) Thanks [@elevatebart](https://github.com/elevatebart)! - Astro will now skip asset optimization when there is a query in the import. Instead, it will let vite deal with it using plugins. -- [#8007](https://github.com/withastro/astro/pull/8007) [`58b121d42`](https://github.com/withastro/astro/commit/58b121d42a9f58a5a992f0c378b036f37e9715fc) Thanks [@paperdave](https://github.com/paperdave)! - Support Bun by adjusting how `@babel/plugin-transform-react-jsx` is imported. + ```vue + <script> + // This will not return an optimized asset + import Component from './Component.vue?component'; + </script> + ``` -## 2.10.3 +- [#8424](https://github.com/withastro/astro/pull/8424) [`61ad70fdc`](https://github.com/withastro/astro/commit/61ad70fdc52035964c43ecdb4cf7468f6c2b61e7) Thanks [@itsmatteomanf](https://github.com/itsmatteomanf)! - Fixes remote assets caching logic to not use expired assets -### Patch Changes +- [#8306](https://github.com/withastro/astro/pull/8306) [`d2f2a11cd`](https://github.com/withastro/astro/commit/d2f2a11cdb42b0de79be21c798eda8e7e7b2a277) Thanks [@jacobthesheep](https://github.com/jacobthesheep)! - Support detecting Bun when logging messages with package manager information. -- [#7986](https://github.com/withastro/astro/pull/7986) [`8e5a27b48`](https://github.com/withastro/astro/commit/8e5a27b488b326c1f9be6f02c191a2fb0dafac56) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure injectRoute is properly handled in `build` as well as `dev` +- [#8414](https://github.com/withastro/astro/pull/8414) [`5126c6a40`](https://github.com/withastro/astro/commit/5126c6a40f88bff66ee5d3c3a21eea8c4a44ce7a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix missing type for `imageConfig` export from `astro:assets` -## 2.10.2 +- [#8416](https://github.com/withastro/astro/pull/8416) [`48ff7855b`](https://github.com/withastro/astro/commit/48ff7855b238536a3df17cb29335c90029fc41a4) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Installing will no longer fail when Sharp can't be installed -### Patch Changes +- [#8418](https://github.com/withastro/astro/pull/8418) [`923a443cb`](https://github.com/withastro/astro/commit/923a443cb060a0e936a0e1cc87c0360232f77914) Thanks [@bluwy](https://github.com/bluwy)! - Fix markdown page HMR -- [#7945](https://github.com/withastro/astro/pull/7945) [`a00cfb894`](https://github.com/withastro/astro/commit/a00cfb89429003b6e1ad28ec8cc6d46ab4ed244b) Thanks [@matthewp](https://github.com/matthewp)! - Fix race condition when performing swap for fallback +- [#8332](https://github.com/withastro/astro/pull/8332) [`8935b3b46`](https://github.com/withastro/astro/commit/8935b3b4672d6c54c7b79e6c4575298f75eeb9f4) Thanks [@martrapp](https://github.com/martrapp)! - Fix scroll position when navigating back from page w/o ViewTransitions -- [#7983](https://github.com/withastro/astro/pull/7983) [`6cd7290d2`](https://github.com/withastro/astro/commit/6cd7290d2c8380bdf4d7e36f3296948d10d5bc25) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix filename generation for `.astro` pages +## 3.0.8 -- [#7946](https://github.com/withastro/astro/pull/7946) [`9d0070095`](https://github.com/withastro/astro/commit/9d0070095e90d4cbc31f5f9a1c6dd48a0dbeb379) Thanks [@andremralves](https://github.com/andremralves)! - Fix: missing CSS import when 404 server Response redirects to a custom 404 page. +### Patch Changes -- [#7977](https://github.com/withastro/astro/pull/7977) [`a4a637c8f`](https://github.com/withastro/astro/commit/a4a637c8f79fbbb8cc451e9155ef7b3b02c6a6d0) Thanks [@bluwy](https://github.com/bluwy)! - Fix inline root resolve logic +- [#8388](https://github.com/withastro/astro/pull/8388) [`362491b8d`](https://github.com/withastro/astro/commit/362491b8da33317c9a1116fbd5a648184b9b3c7f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Properly handle `BEFORE_HYDRATION_SCRIPT` generation, fixing MIME type error on hydration. -- [#7943](https://github.com/withastro/astro/pull/7943) [`c2682a17c`](https://github.com/withastro/astro/commit/c2682a17c05360bc80705032637159920be1f156) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure that injected routes from `node_modules` are properly detected +- [#8370](https://github.com/withastro/astro/pull/8370) [`06e7256b5`](https://github.com/withastro/astro/commit/06e7256b58682064cf7410f72658ce44507f639e) Thanks [@itsmatteomanf](https://github.com/itsmatteomanf)! - Removed extra curly brace. -## 2.10.1 +## 3.0.7 ### Patch Changes -- [#7935](https://github.com/withastro/astro/pull/7935) [`6035bb35f`](https://github.com/withastro/astro/commit/6035bb35f222fc6a80b418f13998b21c59da85b6) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Properly handle routing when multiple slashes are present in the request by collapsing them to a single `/` +- [#8366](https://github.com/withastro/astro/pull/8366) [`c5633434f`](https://github.com/withastro/astro/commit/c5633434f02cc477ee8da380e22efaccfa55d459) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update `chunkFileNames` to avoid emitting invalid characters -- [#7936](https://github.com/withastro/astro/pull/7936) [`4b6deda36`](https://github.com/withastro/astro/commit/4b6deda360b2ba47d03427c377d5982b24ee894c) Thanks [@matthewp](https://github.com/matthewp)! - Export createTransitionScope for the runtime +- [#8367](https://github.com/withastro/astro/pull/8367) [`405ad9501`](https://github.com/withastro/astro/commit/405ad950173dadddc519cf1c2e7f2523bf5326a8) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `tsc` complaining about imports of `.astro` files in specific cases -- Updated dependencies [[`6035bb35f`](https://github.com/withastro/astro/commit/6035bb35f222fc6a80b418f13998b21c59da85b6)]: - - @astrojs/internal-helpers@0.1.2 +- [#8357](https://github.com/withastro/astro/pull/8357) [`6b1e79814`](https://github.com/withastro/astro/commit/6b1e7981469d30aa4c3658487abed6ffea94797f) Thanks [@itsmatteomanf](https://github.com/itsmatteomanf)! - Added counter to show progress for assets image generation. + Fixed small unit of measurement error. +- Updated dependencies [[`0ce0720c7`](https://github.com/withastro/astro/commit/0ce0720c7f2c7ba21dddfea0b75d1e9b39c6a274)]: + - @astrojs/telemetry@3.0.1 -## 2.10.0 +## 3.0.6 -### Minor Changes +### Patch Changes -- [#7861](https://github.com/withastro/astro/pull/7861) [`41afb8405`](https://github.com/withastro/astro/commit/41afb84057f606b0e7f9a73c1e40487068e43948) Thanks [@matthewp](https://github.com/matthewp)! - Persistent DOM and Islands in Experimental View Transitions +- [#8276](https://github.com/withastro/astro/pull/8276) [`d3a6f9f83`](https://github.com/withastro/astro/commit/d3a6f9f836e35932a950e40ba69eff63d7db7eed) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Sanitize route params for leading and trailing slashes - With `viewTransitions: true` enabled in your Astro config's experimental section, pages using the `<ViewTransition />` routing component can now access a new `transition:persist` directive. +- [#8339](https://github.com/withastro/astro/pull/8339) [`f21599671`](https://github.com/withastro/astro/commit/f21599671a90c3327307eb6d2f4d5c02e9137207) Thanks [@martrapp](https://github.com/martrapp)! - Respect the download attribute in links when using view transitions - With this directive, you can keep the state of DOM elements and islands on the old page when transitioning to the new page. +## 3.0.5 - For example, to keep a video playing across page navigation, add `transition:persist` to the element: +### Patch Changes - ```astro - <video controls="" autoplay="" transition:persist> - <source - src="https://ia804502.us.archive.org/33/items/GoldenGa1939_3/GoldenGa1939_3_512kb.mp4" - type="video/mp4" - /> - </video> - ``` +- [#8327](https://github.com/withastro/astro/pull/8327) [`5f3a44aee`](https://github.com/withastro/astro/commit/5f3a44aeeff3c5f31a8063b6005abb90343a817e) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve `astro info` command formatting, allow users to copy info automatically - This `<video>` element, with its current state, will be moved over to the next page (if the video also exists on that page). +- [#8320](https://github.com/withastro/astro/pull/8320) [`b21038c19`](https://github.com/withastro/astro/commit/b21038c193fd30351235a1b241a4a0aaf4e692f2) Thanks [@ematipico](https://github.com/ematipico)! - Exclude redirects from split entry points - Likewise, this feature works with any client-side framework component island. In this example, a counter's state is preserved and moved to the new page: +- [#8331](https://github.com/withastro/astro/pull/8331) [`7a894eec3`](https://github.com/withastro/astro/commit/7a894eec3e6d2670632ca8cdb592cf5649a22d3e) Thanks [@matthewp](https://github.com/matthewp)! - Prevent View Transition fallback from waiting on looping animations - ```astro - <Counter count={5} client:load transition:persist /> - ``` +- [#8231](https://github.com/withastro/astro/pull/8231) [`af41b03d0`](https://github.com/withastro/astro/commit/af41b03d05f8a561990de42ccc93663343da2c0d) Thanks [@justinbeaty](https://github.com/justinbeaty)! - Fixes scroll behavior when using View Transitions by enabling `manual` scroll restoration - See our [View Transitions Guide](https://docs.astro.build/en/guides/view-transitions/#maintaining-state) to learn more on usage. +## 3.0.4 ### Patch Changes -- [#7821](https://github.com/withastro/astro/pull/7821) [`c00b6f0c4`](https://github.com/withastro/astro/commit/c00b6f0c49027125ea3026e89b21fef84380d187) Thanks [@ottomated](https://github.com/ottomated)! - Fixes an issue that prevents importing `'astro/app'` +- [#8324](https://github.com/withastro/astro/pull/8324) [`0752cf368`](https://github.com/withastro/astro/commit/0752cf3688eaac535ceda1ebcd22ccaf20b2171f) Thanks [@matthewp](https://github.com/matthewp)! - Prevent React hook call warnings when used with MDX -- [#7917](https://github.com/withastro/astro/pull/7917) [`1f0ee494a`](https://github.com/withastro/astro/commit/1f0ee494a5190356d130282f1f51ba2a5e6ea63f) Thanks [@bluwy](https://github.com/bluwy)! - Prevent integration hooks from re-triggering if the server restarts on config change, but the config fails to load. + When React and MDX are used in the same project, if the MDX integration is added before React, previously you'd get a warning about hook calls. -- [#7901](https://github.com/withastro/astro/pull/7901) [`00cb28f49`](https://github.com/withastro/astro/commit/00cb28f4964a60bc609770108d491acc277997b9) Thanks [@bluwy](https://github.com/bluwy)! - Improve sourcemap generation and performance + This makes it so that the MDX integration's JSX renderer is last in order. -- [#7911](https://github.com/withastro/astro/pull/7911) [`c264be349`](https://github.com/withastro/astro/commit/c264be3497db4aa8b3bcce0d2f79a26e35b8e91e) Thanks [@martrapp](https://github.com/martrapp)! - fix for #7882 by setting state in page navigation (view transitions) +## 3.0.3 -- [#7909](https://github.com/withastro/astro/pull/7909) [`e1e958a75`](https://github.com/withastro/astro/commit/e1e958a75860292688569e82b4617fc141056202) Thanks [@tonydangblog](https://github.com/tonydangblog)! - Fix: ignore `.json` files nested in subdirectories within content collection directories starting with an `_` underscore. +### Patch Changes -## 2.9.7 +- [#8300](https://github.com/withastro/astro/pull/8300) [`d4a6ab733`](https://github.com/withastro/astro/commit/d4a6ab7339043042fd62dffd30ba078edae55f86) Thanks [@ematipico](https://github.com/ematipico)! - Correctly retrive middleware when using it in SSR enviroments. + +## 3.0.2 ### Patch Changes -- [#7754](https://github.com/withastro/astro/pull/7754) [`298dbb89f`](https://github.com/withastro/astro/commit/298dbb89f2963a547370b6e65cafd2650fdb1b27) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Refactor `404` and `500` route handling for consistency and improved prerendering support +- [#8293](https://github.com/withastro/astro/pull/8293) [`d9bd7cf5c`](https://github.com/withastro/astro/commit/d9bd7cf5ce4086d9dd59e372ca25d4c4cfdb05f6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `tsc` errors inside `astro/components/index.ts` -- [#7885](https://github.com/withastro/astro/pull/7885) [`9e2203847`](https://github.com/withastro/astro/commit/9e22038472c8be05ed7a72620534b88324dce793) Thanks [@andremralves](https://github.com/andremralves)! - Fix incorrect build path logging for 404.astro pages. +## 3.0.1 -- [#7887](https://github.com/withastro/astro/pull/7887) [`5c5da8d2f`](https://github.com/withastro/astro/commit/5c5da8d2fbb37830f3ee81830d4c9afcd2c1a3e3) Thanks [@ffxsam](https://github.com/ffxsam)! - Add logging for when JSON.parse fails within hydrate func +### Patch Changes -- [#7895](https://github.com/withastro/astro/pull/7895) [`0b8375fe8`](https://github.com/withastro/astro/commit/0b8375fe82a15bfff3f517f98de6454adb2779f1) Thanks [@bluwy](https://github.com/bluwy)! - Fix streaming Astro components +- [#8290](https://github.com/withastro/astro/pull/8290) [`ef37f9e29`](https://github.com/withastro/astro/commit/ef37f9e290d0e61403261b2a2195f127dc031654) Thanks [@matthewp](https://github.com/matthewp)! - Remove "experimental" text from the image config options, for docs and editor etc. text displayed. -- [#7876](https://github.com/withastro/astro/pull/7876) [`89d015db6`](https://github.com/withastro/astro/commit/89d015db6ce4d15b5b1140f0eb6bfbef187d6ad7) Thanks [@ematipico](https://github.com/ematipico)! - Check for `getStaticPaths` only if the file has the `.astro` extension. +- [#8290](https://github.com/withastro/astro/pull/8290) [`ef37f9e29`](https://github.com/withastro/astro/commit/ef37f9e290d0e61403261b2a2195f127dc031654) Thanks [@matthewp](https://github.com/matthewp)! - Prevent astro check cache issues -- [#7879](https://github.com/withastro/astro/pull/7879) [`ebf7ebbf7`](https://github.com/withastro/astro/commit/ebf7ebbf7ae767625d736fad327954cfb853837e) Thanks [@bluwy](https://github.com/bluwy)! - Refactor and improve Astro config loading flow + `astro check` hits cache issues in 3.0 causing it never to work on the first try. -## 2.9.6 +- [#8283](https://github.com/withastro/astro/pull/8283) [`c32f52a62`](https://github.com/withastro/astro/commit/c32f52a6246a0f929238f7d47bfc870899729fb4) Thanks [@ematipico](https://github.com/ematipico)! - Add useful warning when deprecated options are still used. -### Patch Changes +## 3.0.0 -- [#7856](https://github.com/withastro/astro/pull/7856) [`861f10eaf`](https://github.com/withastro/astro/commit/861f10eafd4bf4fa08b8e943d64adec51a4c9c1d) Thanks [@matthewp](https://github.com/matthewp)! - Properly serialize redirect config for SSR +### Major Changes -## 2.9.5 +- [#8188](https://github.com/withastro/astro/pull/8188) [`d0679a666`](https://github.com/withastro/astro/commit/d0679a666f37da0fca396d42b9b32bbb25d29312) Thanks [@ematipico](https://github.com/ematipico)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023. -### Patch Changes +- [#8188](https://github.com/withastro/astro/pull/8188) [`364d861bd`](https://github.com/withastro/astro/commit/364d861bd527b8511968e2837728148f090bedef) Thanks [@ematipico](https://github.com/ematipico)! - Removed automatic flattening of `getStaticPaths` result. `.flatMap` and `.flat` should now be used to ensure that you're returning a flat array. -- [#7838](https://github.com/withastro/astro/pull/7838) [`e50f64675`](https://github.com/withastro/astro/commit/e50f646758f5a48e836523d1976d62e18e2893a4) Thanks [@bluwy](https://github.com/bluwy)! - Fix head propagation for MDX components +- [#8113](https://github.com/withastro/astro/pull/8113) [`2484dc408`](https://github.com/withastro/astro/commit/2484dc4080e5cd84b9a53648a1de426d7c907be2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - This import alias is no longer included by default with astro:assets. If you were using this alias with experimental assets, you must convert them to relative file paths, or create your own [import aliases](https://docs.astro.build/en/guides/aliases/). -- [#7841](https://github.com/withastro/astro/pull/7841) [`2275c7d56`](https://github.com/withastro/astro/commit/2275c7d56b2b54e75ca1dbd1df5c7901cf358d52) Thanks [@ematipico](https://github.com/ematipico)! - Allow to return a redirect in dev mode when the original route is not present in the file system. + ```diff + --- + // src/pages/posts/post-1.astro + - import rocket from '~/assets/rocket.png' + + import rocket from '../../assets/rocket.png'; + --- + ``` -- [#7800](https://github.com/withastro/astro/pull/7800) [`49a4b2820`](https://github.com/withastro/astro/commit/49a4b28202cfc571897bcc74042b873a2ceecba4) Thanks [@matthewp](https://github.com/matthewp)! - Scroll position restoration with ViewTransitions router +- [#8142](https://github.com/withastro/astro/pull/8142) [`81545197a`](https://github.com/withastro/astro/commit/81545197a32fd015d763fc386c8b67e0e08b7393) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes for the `class:list` directive -## 2.9.4 + - Previously, `class:list` would ocassionally not be merged the `class` prop when passed to Astro components. Now, `class:list` is always converted to a `class` prop (as a string value). + - Previously, `class:list` diverged from [`clsx`](https://github.com/lukeed/clsx) in a few edge cases. Now, `class:list` uses [`clsx`](https://github.com/lukeed/clsx) directly. + - `class:list` used to deduplicate matching values, but it no longer does + - `class:list` used to sort individual values, but it no longer does + - `class:list` used to support `Set` and other iterables, but it no longer does -### Patch Changes +- [#8179](https://github.com/withastro/astro/pull/8179) [`6011d52d3`](https://github.com/withastro/astro/commit/6011d52d38e43c3e3d52bc3bc41a60e36061b7b7) Thanks [@matthewp](https://github.com/matthewp)! - Astro 3.0 Release Candidate -- [#7826](https://github.com/withastro/astro/pull/7826) [`31c4031ba`](https://github.com/withastro/astro/commit/31c4031ba7aea132a861f2465f38a83741f0cd05) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `astro:assets` not working on Windows in build when using Squoosh +- [#8188](https://github.com/withastro/astro/pull/8188) [`80f1494cd`](https://github.com/withastro/astro/commit/80f1494cdaf72e58a420adb4f7c712d4089e1923) Thanks [@ematipico](https://github.com/ematipico)! - The `build.split` and `build.excludeMiddleware` configuration options are deprecated and have been replaced by options in the adapter config. -- [#7823](https://github.com/withastro/astro/pull/7823) [`5161cf919`](https://github.com/withastro/astro/commit/5161cf919c81bd3681af221def0abab7d25abec0) Thanks [@matthewp](https://github.com/matthewp)! - Adds an `astro:beforeload` event for the dark mode use-case + If your config includes the `build.excludeMiddleware` option, replace it with `edgeMiddleware` in your adapter options: -- [#7836](https://github.com/withastro/astro/pull/7836) [`59b556232`](https://github.com/withastro/astro/commit/59b556232696d3aba3c2263ea104cd9922085fd2) Thanks [@matthewp](https://github.com/matthewp)! - Upgrade compiler to bring in Image view transition support + ```diff + import { defineConfig } from "astro/config"; + import netlify from "@astrojs/netlify/functions"; -- [#7824](https://github.com/withastro/astro/pull/7824) [`267487e63`](https://github.com/withastro/astro/commit/267487e63ea0a4cfcb771c667a088afb16c62ba6) Thanks [@matthewp](https://github.com/matthewp)! - Prevent navigation on hash change + export default defineConfig({ + build: { + - excludeMiddleware: true + }, + adapter: netlify({ + + edgeMiddleware: true + }), + }); + ``` -- [#7829](https://github.com/withastro/astro/pull/7829) [`b063a2d8a`](https://github.com/withastro/astro/commit/b063a2d8aeaed18550d148511bfb68f9ba3cdb09) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `astro:assets` endpoint not working in dev and SSR if `experimental.assets` was enabled by an integration (such as Starlight) + If your config includes the `build.split` option, replace it with `functionPerRoute` in your adapter options: -- [#7734](https://github.com/withastro/astro/pull/7734) [`d5f526b33`](https://github.com/withastro/astro/commit/d5f526b3397cf24aa06353de2de91b2ba08cd4eb) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix some global state related to `astro:assets` not getting cleaned out properly in SSR with no pre-rendered pages + ```diff + import { defineConfig } from "astro/config"; + import netlify from "@astrojs/netlify/functions"; -- [#7843](https://github.com/withastro/astro/pull/7843) [`7dbcbc86b`](https://github.com/withastro/astro/commit/7dbcbc86b3bd7e5458570906745364c9399d1a46) Thanks [@matthewp](https://github.com/matthewp)! - Fixes head propagation regression + export default defineConfig({ + build: { + - split: true + }, + adapter: netlify({ + + functionPerRoute: true + }), + }); + ``` -## 2.9.3 +- [#8207](https://github.com/withastro/astro/pull/8207) [`e45f30293`](https://github.com/withastro/astro/commit/e45f3029340db718b6ed7e91b5d14f5cf14cd71d) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Change the [View Transition built-in animation](https://docs.astro.build/en/guides/view-transitions/#built-in-animation-directives) options. -### Patch Changes + The `transition:animate` value `morph` has been renamed to `initial`. Also, this is no longer the default animation. -- [#7782](https://github.com/withastro/astro/pull/7782) [`0f677c009`](https://github.com/withastro/astro/commit/0f677c009d102bc12232a966634136be58f34739) Thanks [@bluwy](https://github.com/bluwy)! - Refactor Astro rendering to write results directly. This improves the rendering performance for all Astro files. + If no `transition:animate` directive is specified, your animations will now default to `fade`. -- [#7786](https://github.com/withastro/astro/pull/7786) [`188eeddd4`](https://github.com/withastro/astro/commit/188eeddd47a61e04639670496924c37866180749) Thanks [@matthewp](https://github.com/matthewp)! - Execute scripts when navigating to a new page. + Astro also supports a new `transition:animate` value, `none`. This value can be used on a page's `<html>` element to disable animated full-page transitions on an entire page. - When navigating to an new page with client-side navigation, scripts are executed (and re-executed) so that any new scripts on the incoming page are run and the DOM can be updated. +- [#8188](https://github.com/withastro/astro/pull/8188) [`c0de7a7b0`](https://github.com/withastro/astro/commit/c0de7a7b0f042cd49cbea4f4ac1b2ab6f9fef644) Thanks [@ematipico](https://github.com/ematipico)! - Sharp is now the default image service used for `astro:assets`. If you would prefer to still use Squoosh, you can update your config with the following: - However, `type=module` scripts never re-execute in Astro, and will not do so in client-side routing. To support cases where you want to modify the DOM, a new `astro:load` event listener been added: + ```ts + import { defineConfig, squooshImageService } from 'astro/config'; - ```js - document.addEventListener('astro:load', () => { - updateTheDOMSomehow(); + // https://astro.build/config + export default defineConfig({ + image: { + service: squooshImageService(), + }, }); ``` -## 2.9.2 + However, not only do we recommend using Sharp as it is faster and more reliable, it is also highly likely that the Squoosh service will be removed in a future release. -### Patch Changes +- [#8188](https://github.com/withastro/astro/pull/8188) [`3c3100851`](https://github.com/withastro/astro/commit/3c31008519ce68b5b1b1cb23b71fbe0a2d506882) Thanks [@ematipico](https://github.com/ematipico)! - Remove support for `Astro.__renderMarkdown` which is used by `@astrojs/markdown-component`. -- [#7777](https://github.com/withastro/astro/pull/7777) [`3567afac4`](https://github.com/withastro/astro/commit/3567afac4411c1054a5e999dd692e6d079825b4a) Thanks [@bluwy](https://github.com/bluwy)! - Fix rendering TextEncoder encoding error regression + The `<Markdown />` component was deprecated in Astro v1 and is completely removed in v3. This integration must now be removed from your project. -- [#7759](https://github.com/withastro/astro/pull/7759) [`1792737da`](https://github.com/withastro/astro/commit/1792737dae1b24e3d678f8c4780f3cd17710944f) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix SharedImageService's types not properly reflecting that image services hooks can be async + As an alternative, you can use community packages that provide a similar component like https://github.com/natemoo-re/astro-remote instead. -- [#7766](https://github.com/withastro/astro/pull/7766) [`da7f1128b`](https://github.com/withastro/astro/commit/da7f1128bf749dab1d9bd43e50c29a67e8271746) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix missing `referrerpolicy` on ScriptHTMLAttributes +- [#8019](https://github.com/withastro/astro/pull/8019) [`34cb20021`](https://github.com/withastro/astro/commit/34cb2002161ba88df6bcb72fecfd12ed867c134b) Thanks [@bluwy](https://github.com/bluwy)! - Remove backwards-compatible kebab-case transform for camelCase CSS variable names passed to the `style` attribute. If you were relying on the kebab-case transform in your styles, make sure to use the camelCase version to prevent missing styles. For example: -- [#7746](https://github.com/withastro/astro/pull/7746) [`0c9959704`](https://github.com/withastro/astro/commit/0c9959704fff703417eb4602965c668c7f7a3001) Thanks [@birkskyum](https://github.com/birkskyum)! - Update Vite to 4.4 + ```astro + --- + const myValue = 'red'; + --- -## 2.9.1 + <!-- input --> + <div style={{ '--myValue': myValue }}></div> -### Patch Changes + <!-- output (before) --> + <div style="--my-value:var(--myValue);--myValue:red"></div> -- [#7756](https://github.com/withastro/astro/pull/7756) [`274e67532`](https://github.com/withastro/astro/commit/274e6753281edde72fcb4af1cf8a9f892ee46127) Thanks [@matthewp](https://github.com/matthewp)! - Fixes case where there is FOUC caused by stylesheets not loaded + <!-- output (after) --> + <div style="--myValue:red"></div> + ``` -- [#7742](https://github.com/withastro/astro/pull/7742) [`e52852628`](https://github.com/withastro/astro/commit/e528526289dd9fba98e254743ded47a5c6d418a8) Thanks [@andersk](https://github.com/andersk)! - Fix parsing image assets from a Markdown line along with other markup. + ```diff + <style> + div { + - color: var(--my-value); + + color: var(--myValue); + } + </style> + ``` -- [#7757](https://github.com/withastro/astro/pull/7757) [`c2d6cfd0c`](https://github.com/withastro/astro/commit/c2d6cfd0c26f4ebb81c715389347de1c3bf5f3e6) Thanks [@matthewp](https://github.com/matthewp)! - Prevent animations when prefers-reduced-motion +- [#8170](https://github.com/withastro/astro/pull/8170) [`be6bbd2c8`](https://github.com/withastro/astro/commit/be6bbd2c86b9bf5268e765bb937dda00ff15781a) Thanks [@bluwy](https://github.com/bluwy)! - Remove deprecated config option types, deprecated script/style attributes, and deprecated `image` export from `astro:content` -- [#7750](https://github.com/withastro/astro/pull/7750) [`201d32dcf`](https://github.com/withastro/astro/commit/201d32dcfc58ca82468ac9be43b07cdc60abad88) Thanks [@matthewp](https://github.com/matthewp)! - Trigger full page refresh on back nav from page without VT enabled +- [#8188](https://github.com/withastro/astro/pull/8188) [`7511a4980`](https://github.com/withastro/astro/commit/7511a4980fd36536464c317de33a5190427f430a) Thanks [@ematipico](https://github.com/ematipico)! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of `astro:assets` such as enforcing `alt`, no CLS etc to users -## 2.9.0 +- [#7979](https://github.com/withastro/astro/pull/7979) [`dbc97b121`](https://github.com/withastro/astro/commit/dbc97b121f42583728f1cdfdbf14575fda943f5b) Thanks [@bluwy](https://github.com/bluwy)! - Export experimental `dev`, `build`, `preview`, and `sync` APIs from `astro`. These APIs allow you to run Astro's commands programmatically, and replaces the previous entry point that runs the Astro CLI. -### Minor Changes + While these APIs are experimental, the inline config parameter is relatively stable without foreseeable changes. However, the returned results of these APIs are more likely to change in the future. -- [#7686](https://github.com/withastro/astro/pull/7686) [`ec745d689`](https://github.com/withastro/astro/commit/ec745d689abc79d27bc24477589533481f077ddb) Thanks [@matthewp](https://github.com/matthewp)! - Redirects configuration + ```ts + import { dev, build, preview, sync, type AstroInlineConfig } from 'astro'; - This change moves the `redirects` configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag: + // Inline Astro config object. + // Provide a path to a configuration file to load or set options directly inline. + const inlineConfig: AstroInlineConfig = { + // Inline-specific options... + configFile: './astro.config.mjs', + logLevel: 'info', + // Standard Astro config options... + site: 'https://example.com', + }; - ```js - experimental: { - redirects: true, - } - ``` + // Start the Astro dev server + const devServer = await dev(inlineConfig); + await devServer.stop(); - If you have been waiting for stabilization before using redirects, now you can do so. Check out [the docs on redirects](https://docs.astro.build/en/core-concepts/routing/#redirects) to learn how to use this built-in feature. + // Build your Astro project + await build(inlineConfig); -- [#7707](https://github.com/withastro/astro/pull/7707) [`3a6e42e19`](https://github.com/withastro/astro/commit/3a6e42e190421c2e172d5c408c0a7592653fccef) Thanks [@ottomated](https://github.com/ottomated)! - Improved hoisted script bundling + // Preview your built project + const previewServer = await preview(inlineConfig); + await previewServer.stop(); - Astro's static analysis to determine which `<script>` tags to bundle together just got a little smarter! + // Generate types for your Astro project + await sync(inlineConfig); + ``` - Astro create bundles that optimize script usage between pages and place them in the head of the document so that they are downloaded as early as possible. One limitation to Astro's existing approach has been that you could not dynamically use hoisted scripts. Each page received the same, all-inclusive bundle whether or not every script was needed on that page. +- [#8188](https://github.com/withastro/astro/pull/8188) [`7d2f311d4`](https://github.com/withastro/astro/commit/7d2f311d428e3d1c8c13b9bf2a708d6435713fc2) Thanks [@ematipico](https://github.com/ematipico)! - Removed support for old syntax of the API routes. - Now, Astro has improved the static analysis to take into account the actual imports used. +- [#8085](https://github.com/withastro/astro/pull/8085) [`68efd4a8b`](https://github.com/withastro/astro/commit/68efd4a8b29f248397667801465b3152dc98e9a7) Thanks [@bluwy](https://github.com/bluwy)! - Remove exports for `astro/internal/*` and `astro/runtime/server/*` in favour of `astro/runtime/*`. Add new `astro/compiler-runtime` export for compiler-specific runtime code. - For example, Astro would previously bundle the `<script>`s from both the `<Tab>` and `<Accordian>` component for the following library that re-exports multiple components: + These are exports for Astro's internal API and should not affect your project, but if you do use these entrypoints, you can migrate like below: - **@matthewp/my-astro-lib** + ```diff + - import 'astro/internal/index.js'; + + import 'astro/runtime/server/index.js'; - ```js - export { default as Tabs } from './Tabs.astro'; - export { default as Accordion } from './Accordion.astro'; + - import 'astro/server/index.js'; + + import 'astro/runtime/server/index.js'; ``` - Now, when an Astro page only uses a single component, Astro will send only the necessary script to the page. A page that only imports the `<Accordian>` component will not receive any `<Tab>` component's scripts: + ```diff + import { transform } from '@astrojs/compiler'; - ```astro - --- - import { Accordion } from '@matthewp/my-astro-lib'; - --- + const result = await transform(source, { + - internalURL: 'astro/runtime/server/index.js', + + internalURL: 'astro/compiler-runtime', + // ... + }); ``` - You should now see more efficient performance with Astro now supporting this common library re-export pattern. - -- [#7511](https://github.com/withastro/astro/pull/7511) [`6a12fcecb`](https://github.com/withastro/astro/commit/6a12fcecb076623769eb017da9d4a17cfb0815d3) Thanks [@matthewp](https://github.com/matthewp)! - Built-in View Transitions Support (experimental) +- [#7893](https://github.com/withastro/astro/pull/7893) [`7bd1b86f8`](https://github.com/withastro/astro/commit/7bd1b86f85c06fdde0a1ed9146d01bac69990671) Thanks [@ematipico](https://github.com/ematipico)! - Implements a new scope style strategy called `"attribute"`. When enabled, styles are applied using `data-*` attributes. - Astro now supports [view transitions](https://developer.chrome.com/docs/web-platform/view-transitions/) through the new `<ViewTransitions />` component and the `transition:animate` (and associated) directives. View transitions are a great fit for content-oriented sites, and we see it as the best path to get the benefits of client-side routing (smoother transitions) without sacrificing the more simple mental model of MPAs. + The **default** value of `scopedStyleStrategy` is `"attribute"`. - Enable support for view transitions in Astro 2.9 by adding the experimental flag to your config: + If you want to use the previous behaviour, you have to use the `"where"` option: - ```js + ```diff import { defineConfig } from 'astro/config'; export default defineConfig({ - experimental: { - viewTransitions: true, - }, + + scopedStyleStrategy: 'where', }); ``` - This enables you to use the new APIs added. +- [#7924](https://github.com/withastro/astro/pull/7924) [`519a1c4e8`](https://github.com/withastro/astro/commit/519a1c4e8407c7abcb8d879b67a9f4b960652cae) Thanks [@matthewp](https://github.com/matthewp)! - Astro's JSX handling has been refactored with better support for each framework. - #### <ViewTransitions /> + Previously, Astro automatically scanned your components to determine which framework-specific transformations should be used. In practice, supporting advanced features like Fast Refresh with this approach proved difficult. - This is a component which acts as the _router_ for transitions between pages. Add it to the `<head>` section of each individual page where transitions should occur _in the client_ as you navigate away to another page, instead of causing a full page browser refresh. To enable support throughout your entire app, add the component in some common layout or component that targets the `<head>` of every page. + Now, Astro determines which framework to use with `include` and `exclude` config options where you can specify files and folders on a per-framework basis. When using multiple JSX frameworks in the same project, users should manually control which files belong to each framework using the `include` and `exclude` options. - **CommonHead.astro** + ```js + export default defineConfig({ + // The `include` config is only needed in projects that use multiple JSX frameworks; + // if only using one no extra config is needed. + integrations: [ + preact({ + include: ['**/preact/*'], + }), + react({ + include: ['**/react/*'], + }), + solid({ + include: ['**/solid/*'], + }), + ], + }); + ``` - ```astro - --- - import { ViewTransitions } from 'astro:transitions'; - --- +- [#8030](https://github.com/withastro/astro/pull/8030) [`5208a3c8f`](https://github.com/withastro/astro/commit/5208a3c8fefcec7694857fb344af351f4631fc34) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Removed duplicate `astro/dist/jsx` export. Please use the `astro/jsx` export instead - <meta charset="utf-8" /> - <title>{Astro.props.title} - - ``` +- [#8188](https://github.com/withastro/astro/pull/8188) [`84af8ed9d`](https://github.com/withastro/astro/commit/84af8ed9d1e6401c6ebc9c60fe8cddb44d5044b0) Thanks [@ematipico](https://github.com/ematipico)! - Remove MDX plugin re-ordering hack - With only this change, your app will now route completely in-client. You can then add transitions to individual elements using the `transition:animate` directive. +- [#8180](https://github.com/withastro/astro/pull/8180) [`f003e7364`](https://github.com/withastro/astro/commit/f003e7364317cafdb8589913b26b28e928dd07c9) Thanks [@ematipico](https://github.com/ematipico)! - The scoped hash created by the Astro compiler is now **lowercase**. - #### Animations +- [#7878](https://github.com/withastro/astro/pull/7878) [`0f637c71e`](https://github.com/withastro/astro/commit/0f637c71e511cb4c51712128d217a26c8eee4d40) Thanks [@bluwy](https://github.com/bluwy)! - The value of `import.meta.env.BASE_URL`, which is derived from the `base` option, will no longer have a trailing slash added by default or when `trailingSlash: "ignore"` is set. The existing behavior of `base` in combination with `trailingSlash: "always"` or `trailingSlash: "never"` is unchanged. - Add `transition:animate` to any element to use Astro's built-in animations. + If your `base` already has a trailing slash, no change is needed. - ```astro -
- ``` + If your `base` does not have a trailing slash, add one to preserve the previous behaviour: - In the above, Astro's `slide` animation will cause the `
` element to slide out to the left, and then slide in from the right when you navigate away from the page. + ```diff + // astro.config.mjs + - base: 'my-base', + + base: 'my-base/', + ``` - You can also customize these animations using any CSS animation properties, for example, by specifying a duration: +- [#8118](https://github.com/withastro/astro/pull/8118) [`8a5b0c1f3`](https://github.com/withastro/astro/commit/8a5b0c1f3a4be6bb62db66ec70144109ff5b4c59) Thanks [@lilnasy](https://github.com/lilnasy)! - Astro is smarter about CSS! Small stylesheets are now inlined by default, and no longer incur the cost of additional requests to your server. Your visitors will have to wait less before they see your pages, especially those in remote locations or in a subway. - ```astro - --- - import { slide } from 'astro:transition'; - --- + This may not be news to you if you had opted-in via the `build.inlineStylesheets` configuration. Stabilized in Astro 2.6 and set to "auto" by default for Starlight, this configuration allows you to reduce the number of requests for stylesheets by inlining them into + ``` - This change introduces a new flag that renderers can add called `supportsAstroStaticSlot`. What this does is let Astro know that the render is sending `` as placeholder values for static (non-hydrated) slots which Astro will then remove. +- [#7893](https://github.com/withastro/astro/pull/7893) [`7bd1b86f8`](https://github.com/withastro/astro/commit/7bd1b86f85c06fdde0a1ed9146d01bac69990671) Thanks [@ematipico](https://github.com/ematipico)! - Implements a new scope style strategy called `"attribute"`. When enabled, styles are applied using `data-*` attributes. - This change is completely backwards compatible, but fixes bugs caused by combining ssr-only and client-side framework components like so: + The **default** value of `scopedStyleStrategy` is `"attribute"`. - ```astro - -
- - Nested - -
-
- ``` + If you want to use the previous behaviour, you have to use the `"where"` option: -### Patch Changes + ```diff + import { defineConfig } from 'astro/config'; -- [#7102](https://github.com/withastro/astro/pull/7102) [`4516d7b22`](https://github.com/withastro/astro/commit/4516d7b22c5979cde4537f196b53ae2826ba9561) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix image services not being usable on Edge runtimes + export default defineConfig({ + + scopedStyleStrategy: 'where', + }); + ``` -- [#7044](https://github.com/withastro/astro/pull/7044) [`914c439bc`](https://github.com/withastro/astro/commit/914c439bccee9fec002c6d92beaa501c398e62ac) Thanks [@Steffan153](https://github.com/Steffan153)! - Escape closing script tag with `define:vars` +- [#7924](https://github.com/withastro/astro/pull/7924) [`519a1c4e8`](https://github.com/withastro/astro/commit/519a1c4e8407c7abcb8d879b67a9f4b960652cae) Thanks [@matthewp](https://github.com/matthewp)! - Astro's JSX handling has been refactored with better support for each framework. -- [#6851](https://github.com/withastro/astro/pull/6851) [`e9fc2c221`](https://github.com/withastro/astro/commit/e9fc2c2213036d47cd30a47a6cdad5633481a0f8) Thanks [@timozander](https://github.com/timozander)! - Added warning message when using unsupported file extensions in pages/ + Previously, Astro automatically scanned your components to determine which framework-specific transformations should be used. In practice, supporting advanced features like Fast Refresh with this approach proved difficult. -- [#7106](https://github.com/withastro/astro/pull/7106) [`075eee08f`](https://github.com/withastro/astro/commit/075eee08f2e2b0baea008b97f3523f2cb937ee44) Thanks [@ematipico](https://github.com/ematipico)! - Fix middleware for API endpoints that use `Response`, and log a warning for endpoints that don't use `Response`. + Now, Astro determines which framework to use with `include` and `exclude` config options where you can specify files and folders on a per-framework basis. When using multiple JSX frameworks in the same project, users should manually control which files belong to each framework using the `include` and `exclude` options. -- [#7110](https://github.com/withastro/astro/pull/7110) [`fc52681ba`](https://github.com/withastro/astro/commit/fc52681ba2f8fe8bcd92eeedf3c6a52fd86a390e) Thanks [@delucis](https://github.com/delucis)! - Fix formatting in the `NoMatchingRenderer` error message. + ```js + export default defineConfig({ + // The `include` config is only needed in projects that use multiple JSX frameworks; + // if only using one no extra config is needed. + integrations: [ + preact({ + include: ['**/preact/*'], + }), + react({ + include: ['**/react/*'], + }), + solid({ + include: ['**/solid/*'], + }), + ], + }); + ``` -- [#7095](https://github.com/withastro/astro/pull/7095) [`fb84622af`](https://github.com/withastro/astro/commit/fb84622af04f795de8d17f24192de105f70fe910) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Generate heading `id`s and populate the `headings` property for all Markdoc files +- [#7878](https://github.com/withastro/astro/pull/7878) [`0f637c71e`](https://github.com/withastro/astro/commit/0f637c71e511cb4c51712128d217a26c8eee4d40) Thanks [@bluwy](https://github.com/bluwy)! - The value of `import.meta.env.BASE_URL`, which is derived from the `base` option, will no longer have a trailing slash added by default or when `trailingSlash: "ignore"` is set. The existing behavior of `base` in combination with `trailingSlash: "always"` or `trailingSlash: "never"` is unchanged. -- [#7011](https://github.com/withastro/astro/pull/7011) [`cada10a46`](https://github.com/withastro/astro/commit/cada10a466f81f8edb0aa664f9cffdb6b5b8f307) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Throw an error when unknown experimental keys are present + If your `base` already has a trailing slash, no change is needed. -- [#7091](https://github.com/withastro/astro/pull/7091) [`cd410c5eb`](https://github.com/withastro/astro/commit/cd410c5eb71f825259279c27c4c39d0ad282c3f0) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Fix double prepended forward slash in SSR + If your `base` does not have a trailing slash, add one to preserve the previous behaviour: -- [#7108](https://github.com/withastro/astro/pull/7108) [`410428672`](https://github.com/withastro/astro/commit/410428672ed97bba7ca0b3352c1a7ee564921462) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix imports using ?raw and ?url not working when `experimental.assets` is enabled + ```diff + // astro.config.mjs + - base: 'my-base', + + base: 'my-base/', + ``` -- Updated dependencies [[`826e02890`](https://github.com/withastro/astro/commit/826e0289005f645b902375b98d5549c6a95ccafa)]: - - @astrojs/markdown-remark@2.2.1 +### Minor Changes -## 2.4.5 +- [#8012](https://github.com/withastro/astro/pull/8012) [`866ed4098`](https://github.com/withastro/astro/commit/866ed4098edffb052239cdb26e076cf8db61b1d9) Thanks [@ematipico](https://github.com/ematipico)! - Add a new `astro/errors` module. Developers can import `AstroUserError`, and provide a `message` and an optional `hint` ### Patch Changes -- [#7000](https://github.com/withastro/astro/pull/7000) [`c87d42e76`](https://github.com/withastro/astro/commit/c87d42e766d02db5352671cbf074dd637bdb23e0) Thanks [@craigjennings11](https://github.com/craigjennings11)! - Remove 'paths' requirement for tsconfig path aliasing +- [#7998](https://github.com/withastro/astro/pull/7998) [`65c354969`](https://github.com/withastro/astro/commit/65c354969e6fe0ef6d622e8f4c545e2f717ce8c6) Thanks [@bluwy](https://github.com/bluwy)! - Call `astro sync` once before calling `astro check` -- [#7055](https://github.com/withastro/astro/pull/7055) [`4f1073a6a`](https://github.com/withastro/astro/commit/4f1073a6a4f3e5a4fc9df96a2ae59f2e929703fe) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix astro:assets interfering with SSR query params ending with image extensions +- [#7952](https://github.com/withastro/astro/pull/7952) [`70f34f5a3`](https://github.com/withastro/astro/commit/70f34f5a355f42526ee9e5355f3de8e510002ea2) Thanks [@astrobot-houston](https://github.com/astrobot-houston)! - Remove StreamingCompatibleResponse polyfill -## 2.4.4 +- [#8011](https://github.com/withastro/astro/pull/8011) [`5b1e39ef6`](https://github.com/withastro/astro/commit/5b1e39ef6ec6dcebea96584f95d9530bd9aa715d) Thanks [@bluwy](https://github.com/bluwy)! - Move hoisted script analysis optimization behind the `experimental.optimizeHoistedScript` option -### Patch Changes +- Updated dependencies [[`b675acb2a`](https://github.com/withastro/astro/commit/b675acb2aa820448e9c0d363339a37fbac873215)]: + - @astrojs/telemetry@3.0.0-beta.1 -- [#7047](https://github.com/withastro/astro/pull/7047) [`48395c815`](https://github.com/withastro/astro/commit/48395c81522f7527126699c4f185f7b4488a4b9a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `/_image` endpoint not being prefixed with the `base` path in build SSR +## 3.0.0-beta.0 -- [#6916](https://github.com/withastro/astro/pull/6916) [`630f8c8ef`](https://github.com/withastro/astro/commit/630f8c8ef68fedfa393899c13a072e50145895e8) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add fast lookups for content collection entries when using `getEntryBySlug()`. This generates a lookup map to ensure O(1) retrieval. +### Major Changes -## 2.4.3 +- [`1eae2e3f7`](https://github.com/withastro/astro/commit/1eae2e3f7d693c9dfe91c8ccfbe606d32bf2fb81) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023. -### Patch Changes +- [`76ddef19c`](https://github.com/withastro/astro/commit/76ddef19ccab6e5f7d3a5740cd41acf10e334b38) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Removed automatic flattening of `getStaticPaths` result. `.flatMap` and `.flat` should now be used to ensure that you're returning a flat array. -- [#7034](https://github.com/withastro/astro/pull/7034) [`c00997033`](https://github.com/withastro/astro/commit/c0099703338cf81e2b381e6e754c73b442db4eab) Thanks [@bluwy](https://github.com/bluwy)! - Fix `astro:assets` SSR error +- [`3fdf509b2`](https://github.com/withastro/astro/commit/3fdf509b2731a9b2f972d89291e57cf78d62c769) Thanks [@ematipico](https://github.com/ematipico)! - The `build.split` and `build.excludeMiddleware` configuration options are deprecated and have been replaced by options in the adapter config. -- [#7032](https://github.com/withastro/astro/pull/7032) [`157357e1f`](https://github.com/withastro/astro/commit/157357e1fb6ff2c14a717230cc485fb76a3fea03) Thanks [@raulfdm](https://github.com/raulfdm)! - fix middleware typing export for "moduleResolution: node" + If your config includes the `build.excludeMiddleware` option, replace it with `edgeMiddleware` in your adapter options: -## 2.4.2 + ```diff + import { defineConfig } from "astro/config"; + import netlify from "@astrojs/netlify/functions"; -### Patch Changes + export default defineConfig({ + build: { + - excludeMiddleware: true + }, + adapter: netlify({ + + edgeMiddleware: true + }), + }); + ``` -- [#7009](https://github.com/withastro/astro/pull/7009) [`1d4db68e6`](https://github.com/withastro/astro/commit/1d4db68e64b7c3faf8863bf67f8332aa28e2f34b) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix types from `astro/client` not working properly due to `client-base.d.ts` being an non-ambient declaration file + If your config includes the `build.split` option, replace it with `functionPerRoute` in your adapter options: -- [#7010](https://github.com/withastro/astro/pull/7010) [`e9f0dd9b4`](https://github.com/withastro/astro/commit/e9f0dd9b473c4793c958a6c81e743fd9b02b4f64) Thanks [@ematipico](https://github.com/ematipico)! - Call `next()` without return anything should work, with a warning + ```diff + import { defineConfig } from "astro/config"; + import netlify from "@astrojs/netlify/functions"; -## 2.4.1 + export default defineConfig({ + build: { + - split: true + }, + adapter: netlify({ + + functionPerRoute: true + }), + }); + ``` -### Patch Changes +- [`2f951cd40`](https://github.com/withastro/astro/commit/2f951cd403dfcc2c3ca6aae618ae3e1409516e32) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Sharp is now the default image service used for `astro:assets`. If you would prefer to still use Squoosh, you can update your config with the following: -- [#6995](https://github.com/withastro/astro/pull/6995) [`71332cf96`](https://github.com/withastro/astro/commit/71332cf9697755884e5e2e63d6d2499cc2c5edd1) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Move sharpImageService and squooshImageService functions to `astro/config` so they can be imported + ```ts + import { defineConfig, squooshImageService } from 'astro/config'; -## 2.4.0 + // https://astro.build/config + export default defineConfig({ + image: { + service: squooshImageService(), + }, + }); + ``` -### Minor Changes + However, not only do we recommend using Sharp as it is faster and more reliable, it is also highly likely that the Squoosh service will be removed in a future release. -- [#6990](https://github.com/withastro/astro/pull/6990) [`818252acd`](https://github.com/withastro/astro/commit/818252acda3c00499cea51ffa0f26d4c2ccd3a02) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Generated optimized images are now cached inside the `node_modules/.astro/assets` folder. The cached images will be used to avoid doing extra work and speed up subsequent builds. +- [`c022a4217`](https://github.com/withastro/astro/commit/c022a4217a805d223c1494e9eda4e48bbf810388) Thanks [@Princesseuh](https://github.com/Princesseuh)! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of `astro:assets` such as enforcing `alt`, no CLS etc to users -- [#6659](https://github.com/withastro/astro/pull/6659) [`80e3d4d3d`](https://github.com/withastro/astro/commit/80e3d4d3d0f7719d8eae5435bba3805503057511) Thanks [@lilnasy](https://github.com/lilnasy)! - Implement Inline Stylesheets RFC as experimental +- [`67becaa58`](https://github.com/withastro/astro/commit/67becaa580b8f787df58de66b7008b7098f1209c) Thanks [@ematipico](https://github.com/ematipico)! - Removed support for old syntax of the API routes. -- [#6771](https://github.com/withastro/astro/pull/6771) [`3326492b9`](https://github.com/withastro/astro/commit/3326492b94f76ed2b0154dd9b9a1a9eb883c1e31) Thanks [@matthewp](https://github.com/matthewp)! - Implements a new class-based scoping strategy +- [`dfc2d93e3`](https://github.com/withastro/astro/commit/dfc2d93e3c645995379358fabbdfa9aab99f43d8) Thanks [@bluwy](https://github.com/bluwy)! - Remove MDX plugin re-ordering hack - This implements the [Scoping RFC](https://github.com/withastro/roadmap/pull/543), providing a way to opt in to increased style specificity for Astro component styles. +- [`3dc1ca2fa`](https://github.com/withastro/astro/commit/3dc1ca2fac8d9965cc5085a5d09e72ed87b4281a) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Reduced the amount of polyfills provided by Astro. Astro will no longer provide (no-op) polyfills for several web apis such as HTMLElement, Image or Document. If you need access to those APIs on the server, we recommend using more proper polyfills available on npm. - This prevents bugs where global styles override Astro component styles due to CSS ordering and the use of element selectors. +- [`1be84dfee`](https://github.com/withastro/astro/commit/1be84dfee3ce8e6f5cc624f99aec4e980f6fde37) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update `tsconfig.json` presets with `moduleResolution: 'bundler'` and other new options from TypeScript 5.0. Astro now assumes that you use TypeScript 5.0 (March 2023), or that your editor includes it, ex: VS Code 1.77 - To enable class-based scoping, you can set it in your config: +- [`35f01df79`](https://github.com/withastro/astro/commit/35f01df797d23315f2bee2fc3fd795adb0559c58) Thanks [@Princesseuh](https://github.com/Princesseuh)! - The `astro check` command now requires an external package `@astrojs/check` and an install of `typescript` in your project. This was done in order to make the main `astro` package smaller and give more flexibility to users in regard to the version of TypeScript they use. - ```js - import { defineConfig } from 'astro/config'; +- [`3fdf509b2`](https://github.com/withastro/astro/commit/3fdf509b2731a9b2f972d89291e57cf78d62c769) Thanks [@ematipico](https://github.com/ematipico)! - The `build.split` and `build.excludeMiddleware` configuration options are deprecated and have been replaced by options in the adapter config. + + If your config includes the `build.excludeMiddleware` option, replace it with `edgeMiddleware` in your adapter options: + + ```diff + import { defineConfig } from "astro/config"; + import vercel from "@astrojs/vercel/serverless"; export default defineConfig({ - scopedStyleStrategy: 'class', + build: { + - excludeMiddleware: true + }, + adapter: vercel({ + + edgeMiddleware: true + }), }); ``` - Note that the 0-specificity `:where` pseudo-selector is still the default strategy. The intent is to change `'class'` to be the default in 3.0. - -- [#6959](https://github.com/withastro/astro/pull/6959) [`cac4a321e`](https://github.com/withastro/astro/commit/cac4a321e814fb805eb0e3ced469e25261a50885) Thanks [@bluwy](https://github.com/bluwy)! - Support `` to output inline code HTML (no `pre` tag) - -- [#6721](https://github.com/withastro/astro/pull/6721) [`831b67cdb`](https://github.com/withastro/astro/commit/831b67cdb8250f93f66e3b171fab024652bf80f2) Thanks [@ematipico](https://github.com/ematipico)! - Implements a new experimental middleware in Astro. + If your config includes the `build.split` option, replace it with `functionPerRoute` in your adapter options: - The middleware is available under the following experimental flag: + ```diff + import { defineConfig } from "astro/config"; + import vercel from "@astrojs/vercel/serverless"; - ```js export default defineConfig({ - experimental: { - middleware: true, - }, + build: { + - split: true + }, + adapter: vercel({ + + functionPerRoute: true + }), }); ``` - Or via CLI, using the new argument `--experimental-middleware`. - - Create a file called `middleware.{js,ts}` inside the `src` folder, and - export a `onRequest` function. +- [`78de801f2`](https://github.com/withastro/astro/commit/78de801f21fd4ca1653950027d953bf08614566b) Thanks [@ematipico](https://github.com/ematipico)! - Lowercase names for endpoint functions are now deprecated. - From `astro/middleware`, use the `defineMiddleware` utility to take advantage of type-safety, and use - the `sequence` utility to chain multiple middleware functions. + Rename functions to their uppercase equivalent: - Example: + ```diff + - export function get() { + + export function GET() { + return new Response(JSON.stringify({ "title": "Bob's blog" })); + } - ```ts - import { defineMiddleware, sequence } from 'astro/middleware'; + - export function post() { + + export function POST() { + return new Response(JSON.stringify({ "title": "Bob's blog" })); + } - const redirects = defineMiddleware((context, next) => { - if (context.request.url.endsWith('/old-url')) { - return context.redirect('/new-url'); - } - return next(); - }); + - export function put() { + + export function PUT() { + return new Response(JSON.stringify({ "title": "Bob's blog" })); + } - const minify = defineMiddleware(async (context, next) => { - const repsonse = await next(); - const minifiedHtml = await minifyHtml(response.text()); - return new Response(minifiedHtml, { - status: 200, - headers: response.headers, - }); - }); + - export function all() { + + export function ALL() { + return new Response(JSON.stringify({ "title": "Bob's blog" })); + } - export const onRequest = sequence(redirects, minify); + // you can use the whole word "DELETE" + - export function del() { + + export function DELETE() { + return new Response(JSON.stringify({ "title": "Bob's blog" })); + } ``` -- [#6932](https://github.com/withastro/astro/pull/6932) [`49514e4ce`](https://github.com/withastro/astro/commit/49514e4ce40fedb39bf7decd2c296258efbdafc7) Thanks [@bluwy](https://github.com/bluwy)! - Upgrade shiki to v0.14.1. This updates the shiki theme colors and adds the theme name to the `pre` tag, e.g. `
`.
-
-### Patch Changes
-
-- [#6973](https://github.com/withastro/astro/pull/6973) [`0883fd487`](https://github.com/withastro/astro/commit/0883fd4875548a613df122f0b87a1ca8b7a7cf7d) Thanks [@matthewp](https://github.com/matthewp)! - Ensure multiple cookies set in dev result in multiple set-cookie headers
-
-- Updated dependencies [[`49514e4ce`](https://github.com/withastro/astro/commit/49514e4ce40fedb39bf7decd2c296258efbdafc7)]:
-  - @astrojs/markdown-remark@2.2.0
+- [`59d6e569f`](https://github.com/withastro/astro/commit/59d6e569f63e175c97e82e94aa7974febfb76f7c) Thanks [@matthewp](https://github.com/matthewp)! - Astro.cookies.get(key) returns undefined if cookie doesn't exist
 
-## 2.3.4
+  With this change, Astro.cookies.get(key) no longer always returns a `AstroCookie` object. Instead it now returns `undefined` if the cookie does not exist.
 
-### Patch Changes
+  You should update your code if you assume that all calls to `get()` return a value. When using with `has()` you still need to assert the value, like so:
 
-- [#6967](https://github.com/withastro/astro/pull/6967) [`a8a319aef`](https://github.com/withastro/astro/commit/a8a319aef744a64647ee16c7d558d74de6864c6c) Thanks [@bluwy](https://github.com/bluwy)! - Fix `astro-entry` error on build with multiple JSX frameworks
+  ```astro
+  ---
+  if (Astro.cookies.has(id)) {
+    const id = Astro.cookies.get(id)!;
+  }
+  ---
+  ```
 
-- [#6961](https://github.com/withastro/astro/pull/6961) [`a695e44ae`](https://github.com/withastro/astro/commit/a695e44aed6e2f5d32cb950d4237be6e5657ba98) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix getImage type
+- [`7723c4cc9`](https://github.com/withastro/astro/commit/7723c4cc93298c2e6530e55da7afda048f22cf81) Thanks [@ematipico](https://github.com/ematipico)! - The property `compressHTML` is now `true` by default. Setting this value to `true` is no longer required.
 
-- [#6956](https://github.com/withastro/astro/pull/6956) [`367e61776`](https://github.com/withastro/astro/commit/367e61776196a17d61c28daa4dfbabb6244e040c) Thanks [@lilnasy](https://github.com/lilnasy)! - Changed where various parts of the build pipeline look to decide if a page should be prerendered. They now exclusively consider PageBuildData, allowing integrations to participate in the decision.
+  If you do not want to minify your HTML output, you must set this value to `false` in `astro.config.mjs`.
 
-- [#6969](https://github.com/withastro/astro/pull/6969) [`77270cc2c`](https://github.com/withastro/astro/commit/77270cc2cd06c942d7abf1d882e36d9163edafa5) Thanks [@bluwy](https://github.com/bluwy)! - Avoid removing leading slash for `build.assetsPrefix` value in the build output
+  ```diff
+  import {defineConfig} from "astro/config";
+  export default defineConfig({
+  +  compressHTML: false
+  })
+  ```
 
-- [#6910](https://github.com/withastro/astro/pull/6910) [`895fa07d8`](https://github.com/withastro/astro/commit/895fa07d8b4b8359984e048daca5437e40f44390) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Inline `process.env` boolean values (`0`, `1`, `true`, `false`) during the build. This helps with DCE and allows for better `export const prerender` detection.
+- [`fb5cd6b56`](https://github.com/withastro/astro/commit/fb5cd6b56dc27a71366ed5e1ab8bfe9b8f96bac5) Thanks [@ematipico](https://github.com/ematipico)! - Astro's default port when running the dev or preview server is now `4321`.
 
-- [#6958](https://github.com/withastro/astro/pull/6958) [`72c6bf01f`](https://github.com/withastro/astro/commit/72c6bf01fe49b331ca8ad9206a7506b15caf5b8d) Thanks [@bluwy](https://github.com/bluwy)! - Fix content render imports flow
+  This will reduce conflicts with ports used by other tools.
 
-- [#6952](https://github.com/withastro/astro/pull/6952) [`e5bd084c0`](https://github.com/withastro/astro/commit/e5bd084c01e4f60a157969b50c05ce002f7b63d2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update allowed Sharp versions to support 0.32.0
+- [`631b9c410`](https://github.com/withastro/astro/commit/631b9c410d5d66fa384674027ba95d69ebb5063f) Thanks [@bluwy](https://github.com/bluwy)! - Remove MDX special `components` export handling
 
-## 2.3.3
+### Minor Changes
 
-### Patch Changes
+- [`9b4f70a62`](https://github.com/withastro/astro/commit/9b4f70a629f55e461759ba46f68af7097a2e9215) Thanks [@ematipico](https://github.com/ematipico)! - Introduced the concept of feature map. A feature map is a list of features that are built-in in Astro, and an Adapter
+  can tell Astro if it can support it.
 
-- [#6940](https://github.com/withastro/astro/pull/6940) [`a98df9374`](https://github.com/withastro/astro/commit/a98df9374dec65c678fa47319cb1481b1af123e2) Thanks [@delucis](https://github.com/delucis)! - Support custom 404s added via `injectRoute` or as `src/pages/404.html`
+  ```ts
+  import { AstroIntegration } from './astro';
 
-- [#6948](https://github.com/withastro/astro/pull/6948) [`50975f2ea`](https://github.com/withastro/astro/commit/50975f2ea3a59f9e023cc631a9372c0c7986eec9) Thanks [@imchell](https://github.com/imchell)! - Placeholders for slots are cleaned in HTML String that is rendered
+  function myIntegration(): AstroIntegration {
+    return {
+      name: 'astro-awesome-list',
+      // new feature map
+      supportedAstroFeatures: {
+        hybridOutput: 'experimental',
+        staticOutput: 'stable',
+        serverOutput: 'stable',
+        assets: {
+          supportKind: 'stable',
+          isSharpCompatible: false,
+          isSquooshCompatible: false,
+        },
+      },
+    };
+  }
+  ```
 
-- [#6848](https://github.com/withastro/astro/pull/6848) [`ebae1eaf8`](https://github.com/withastro/astro/commit/ebae1eaf87f49399036033c673b513338f7d9c42) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update `experimental.assets`'s `image.service` configuration to allow for a config option in addition to an entrypoint
+- [`bc37331d8`](https://github.com/withastro/astro/commit/bc37331d8154e3e95a8df9131e4e014e78a7a9e7) Thanks [@ematipico](https://github.com/ematipico)! - Integrations can now log messages using Astro’s built-in logger.
 
-- [#6953](https://github.com/withastro/astro/pull/6953) [`dc062f669`](https://github.com/withastro/astro/commit/dc062f6695ce577dc569781fc0678c903012c336) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Update `astro check` to use version 1.0.0 of the Astro language server
+  The logger is available to all hooks as an additional parameter:
 
-- Updated dependencies [[`ac57b5549`](https://github.com/withastro/astro/commit/ac57b5549f828a17bdbebdaca7ace075307a3c9d)]:
-  - @astrojs/telemetry@2.1.1
-  - @astrojs/webapi@2.1.1
+  ```ts
+  import { AstroIntegration } from './astro';
 
-## 2.3.2
+  // integration.js
+  export function myIntegration(): AstroIntegration {
+    return {
+      name: 'my-integration',
+      hooks: {
+        'astro:config:done': ({ logger }) => {
+          logger.info('Configure integration...');
+        },
+      },
+    };
+  }
+  ```
 
 ### Patch Changes
 
-- [#6920](https://github.com/withastro/astro/pull/6920) [`b89042553`](https://github.com/withastro/astro/commit/b89042553ec45d5f6bc71747e0f3470ba969e679) Thanks [@bluwy](https://github.com/bluwy)! - Fix tsconfig alias baseUrl handling for "." and ".." imports
+- Updated dependencies [[`1eae2e3f7`](https://github.com/withastro/astro/commit/1eae2e3f7d693c9dfe91c8ccfbe606d32bf2fb81)]:
+  - @astrojs/telemetry@3.0.0-beta.0
+  - @astrojs/internal-helpers@0.2.0-beta.0
+  - @astrojs/markdown-remark@3.0.0-beta.0
 
-## 2.3.1
+## 2.10.14
 
 ### Patch Changes
 
-- [#6859](https://github.com/withastro/astro/pull/6859) [`4c7ba4da0`](https://github.com/withastro/astro/commit/4c7ba4da084d7508df91cbac03c2b099a8301e2b) Thanks [@andremralves](https://github.com/andremralves)! - Fix Astro.params does not contain path parameter from URL with non-English characters.
-
-- [#6872](https://github.com/withastro/astro/pull/6872) [`b6154d2d5`](https://github.com/withastro/astro/commit/b6154d2d57bfb77767a3ccf9e91c1ae4051c81bc) Thanks [@bluwy](https://github.com/bluwy)! - Fix hoisted scripts path for linked package Astro components
-
-- [#6862](https://github.com/withastro/astro/pull/6862) [`1f2699461`](https://github.com/withastro/astro/commit/1f2699461d4cdcc8007ae47ebff74ace62eee058) Thanks [@jcdogo](https://github.com/jcdogo)! - Fixes bug with assetsPrefix not being prepended to component-url and renderer-url in astro islands when using SSR mode.
+- [#8206](https://github.com/withastro/astro/pull/8206) [`52606a390`](https://github.com/withastro/astro/commit/52606a3909f9de5ced9b9ba3ba25832f73a8689e) Thanks [@martrapp](https://github.com/martrapp)! - fix: View Transition: swap attributes of document's root element
 
-- [#6877](https://github.com/withastro/astro/pull/6877) [`edabf01b4`](https://github.com/withastro/astro/commit/edabf01b44d8c99da160973cd0f779e0a0b93cd7) Thanks [@bluwy](https://github.com/bluwy)! - Upgrade to Vite 4.3
+## 2.10.13
 
-- [#6902](https://github.com/withastro/astro/pull/6902) [`0afff3274`](https://github.com/withastro/astro/commit/0afff32741247bc4c6709a30fc83787f58ec02b7) Thanks [@bluwy](https://github.com/bluwy)! - Disable Vite optimizer for sync and config loading. Improve first page load time for warm server startup.
+### Patch Changes
 
-## 2.3.0
+- [#8152](https://github.com/withastro/astro/pull/8152) [`582132328`](https://github.com/withastro/astro/commit/5821323285646aee7ff9194a505f708028e4db57) Thanks [@andremralves](https://github.com/andremralves)! - Displays a new config error if `outDir` is placed within `publicDir`.
 
-### Minor Changes
+- [#8166](https://github.com/withastro/astro/pull/8166) [`fddd4dc71`](https://github.com/withastro/astro/commit/fddd4dc71af321bd6b4d01bb4b1b955284846e60) Thanks [@martrapp](https://github.com/martrapp)! - ViewTransitions: Fixes in the client-side router
 
-- [#6816](https://github.com/withastro/astro/pull/6816) [`8539eb164`](https://github.com/withastro/astro/commit/8539eb1643864ae7e0f5a080915cd75535f7101b) Thanks [@bluwy](https://github.com/bluwy)! - Support tsconfig aliases in CSS `@import`
+- [#8182](https://github.com/withastro/astro/pull/8182) [`cfc465dde`](https://github.com/withastro/astro/commit/cfc465ddebcc58d20f29ecffaa857a77525435a9) Thanks [@martrapp](https://github.com/martrapp)! - View Transitions: self link (`href=""`) does not trigger page reload
 
-### Patch Changes
+- [#8171](https://github.com/withastro/astro/pull/8171) [`95120efbe`](https://github.com/withastro/astro/commit/95120efbe817163663492181cbeb225849354493) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix missing type for `imageConfig` export from `astro:assets`
 
-- [#6544](https://github.com/withastro/astro/pull/6544) [`a9c22994e`](https://github.com/withastro/astro/commit/a9c22994e41f92a586d8946988d29e3c62148778) Thanks [@wulinsheng123](https://github.com/wulinsheng123)! - Correctly generate directories for assets when users customise the output via rollup options.
+- [#8187](https://github.com/withastro/astro/pull/8187) [`273335cb0`](https://github.com/withastro/astro/commit/273335cb01615c3c06d46c02464f4496a81f8d0b) Thanks [@bluwy](https://github.com/bluwy)! - Fix Astro components parent-child render order
 
-- [#6825](https://github.com/withastro/astro/pull/6825) [`948a6d7be`](https://github.com/withastro/astro/commit/948a6d7be0c76fd1dd8550270bd29821075f799c) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix unnecessary warning when using images inside the `src/content` folder with `experimental.assets`
+- [#8184](https://github.com/withastro/astro/pull/8184) [`9142178b1`](https://github.com/withastro/astro/commit/9142178b113443749b87c1d259859b42a3d7a9c4) Thanks [@martrapp](https://github.com/martrapp)! - Fix: The scrolling behavior of ViewTransitions is now more similar to the expected browser behavior
 
-- Updated dependencies [[`2511d58d5`](https://github.com/withastro/astro/commit/2511d58d586af080a78e5ef8a63020b3e17770db)]:
-  - @astrojs/markdown-remark@2.1.4
+- [#8163](https://github.com/withastro/astro/pull/8163) [`179796405`](https://github.com/withastro/astro/commit/179796405e053b559d83f84507e5a465861a029a) Thanks [@delucis](https://github.com/delucis)! - Make typing of `defineCollection` more permissive to support advanced union and intersection types
 
-## 2.2.3
+## 2.10.12
 
 ### Patch Changes
 
-- [#6765](https://github.com/withastro/astro/pull/6765) [`6c09ac03b`](https://github.com/withastro/astro/commit/6c09ac03bf8f77ca9c1279dce570e0dcf3d439e3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Properly include the needed WASM files for the Squoosh service for Netlify and Vercel in SSR
-
-- [#6817](https://github.com/withastro/astro/pull/6817) [`f882bc163`](https://github.com/withastro/astro/commit/f882bc1636d5ce1c3b8faae47df36b4dc758045a) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix sourcemap warnings when using Content Collections and MDX with the `vite.build.sourcemap` option
-
-- [#6819](https://github.com/withastro/astro/pull/6819) [`76dd53e3f`](https://github.com/withastro/astro/commit/76dd53e3f69d596754795710a457a1e570a3bad4) Thanks [@MoustaphaDev](https://github.com/MoustaphaDev)! - Fix fallback content showing unexpectedly in some cases
-
-- [#6582](https://github.com/withastro/astro/pull/6582) [`7653cf9e9`](https://github.com/withastro/astro/commit/7653cf9e9fedc6edc6038603248351e276191c3a) Thanks [@bluwy](https://github.com/bluwy)! - Fix CSS chunking and deduping between multiple Astro files and framework components
+- [#8144](https://github.com/withastro/astro/pull/8144) [`04caa99c4`](https://github.com/withastro/astro/commit/04caa99c48ce604ca3b90302ff0df8dcdbeee650) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixed an issue where data entries' id included backslashes instead of forward slashes on Windows.
 
-## 2.2.2
+## 2.10.11
 
 ### Patch Changes
 
-- [#6811](https://github.com/withastro/astro/pull/6811) [`60c16db6f`](https://github.com/withastro/astro/commit/60c16db6ff583b0656bc1937814c8bbf06831294) Thanks [@bluwy](https://github.com/bluwy)! - Fix check CLI fs load fallback behaviour
-
-- [#6782](https://github.com/withastro/astro/pull/6782) [`c12ca5ece`](https://github.com/withastro/astro/commit/c12ca5ece34beef0fb53f911515a7c752cc2f3ad) Thanks [@amirhhashemi](https://github.com/amirhhashemi)! - Force error overlay direction to be LTR
+- [#8136](https://github.com/withastro/astro/pull/8136) [`97c8760d7`](https://github.com/withastro/astro/commit/97c8760d78ffd172149f7776442725861576fba7) Thanks [@andremralves](https://github.com/andremralves)! - Fix 404 response leading to an infinite loop when there is no 404 page.
 
-## 2.2.1
+## 2.10.10
 
 ### Patch Changes
 
-- [#6766](https://github.com/withastro/astro/pull/6766) [`72fed684a`](https://github.com/withastro/astro/commit/72fed684a35f00d80c69bcf6e8af297fed0294fe) Thanks [@Xetera](https://github.com/Xetera)! - Exporting the ImageFunction in astro:content and grouping it under a SchemaContext
-
-- [#6772](https://github.com/withastro/astro/pull/6772) [`45bff6fcc`](https://github.com/withastro/astro/commit/45bff6fccb3f5c71ff24c1ceb48cd532196c90f6) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Allow `import.meta.env` values of `0`, `1`, `true`, and `false` to be used for `export const prerender` statements
+- [#8127](https://github.com/withastro/astro/pull/8127) [`b12c8471f`](https://github.com/withastro/astro/commit/b12c8471f413c0291de4a9c444bfe3079a192034) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Do not throw Error when users pass an object with a "type" property
 
-- [#6770](https://github.com/withastro/astro/pull/6770) [`52d7a4a01`](https://github.com/withastro/astro/commit/52d7a4a011a3bb722b522fffd88c5fe9a519a196) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updated types to match newer Vite versions
+- [#8092](https://github.com/withastro/astro/pull/8092) [`7177f7579`](https://github.com/withastro/astro/commit/7177f7579b6e866f0fd895b3fd079d8ba330b1a9) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure dotfiles are cleaned during static builds
 
-- [#6774](https://github.com/withastro/astro/pull/6774) [`9e88e0f23`](https://github.com/withastro/astro/commit/9e88e0f23c5913c07f7e3e96fa0555219ef710dc) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: remove old `slug()` type from `defineCollection()` helper
+- [#8122](https://github.com/withastro/astro/pull/8122) [`fa6b68a77`](https://github.com/withastro/astro/commit/fa6b68a776c5b3cc8167fc042b7d305234ebcff9) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Improve fidelity of time stats when running `astro build`
 
-- [#6775](https://github.com/withastro/astro/pull/6775) [`fa84f1a7d`](https://github.com/withastro/astro/commit/fa84f1a7d2c290479c75199f16e8de489036d7ea) Thanks [@matthewp](https://github.com/matthewp)! - Support streaming inside of slots
+- [#8070](https://github.com/withastro/astro/pull/8070) [`097a8e4e9`](https://github.com/withastro/astro/commit/097a8e4e916c7df18eafdaa6c8d6ce2991c17ab6) Thanks [@lilnasy](https://github.com/lilnasy)! - Fix a handful of edge cases with prerendered 404/500 pages
 
-- [#6779](https://github.com/withastro/astro/pull/6779) [`a98f6f418`](https://github.com/withastro/astro/commit/a98f6f418c92261a06ef79624a8c86e288c21eab) Thanks [@matthewp](https://github.com/matthewp)! - Prevent body head content injection in MDX when using layout
+- [#8123](https://github.com/withastro/astro/pull/8123) [`1f6497c33`](https://github.com/withastro/astro/commit/1f6497c3341231ee76fc4538cfe7624cf4721d56) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Open to configured `base` when `astro dev --open` runs
 
-- [#6781](https://github.com/withastro/astro/pull/6781) [`7f74326b7`](https://github.com/withastro/astro/commit/7f74326b762bfc174ebe8e37ae03733563e4214f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix `astro:server:setup` middlewares not applying. This resolves an issue with the Partytown integration in dev.
+- [#8105](https://github.com/withastro/astro/pull/8105) [`0e0fa605d`](https://github.com/withastro/astro/commit/0e0fa605d109cc91e08a1ae1cc560ea240fe631b) Thanks [@martrapp](https://github.com/martrapp)! - ViewTransition: bug fix for lost scroll position in browser history
 
-## 2.2.0
+- [#8116](https://github.com/withastro/astro/pull/8116) [`b290f0a99`](https://github.com/withastro/astro/commit/b290f0a99778a9b9c1045f3cd06b6aee934d7c03) Thanks [@martrapp](https://github.com/martrapp)! - On back navigation only animate view transitions that were animated going forward.
 
-### Minor Changes
+- [#7778](https://github.com/withastro/astro/pull/7778) [`d6b494376`](https://github.com/withastro/astro/commit/d6b4943764989c0e89df2d6875cd19691566dfb3) Thanks [@y-nk](https://github.com/y-nk)! - Added support for optimizing remote images from authorized sources when using `astro:assets`. This comes with two new parameters to specify which domains (`image.domains`) and host patterns (`image.remotePatterns`) are authorized for remote images.
 
-- [#6703](https://github.com/withastro/astro/pull/6703) [`a1108e037`](https://github.com/withastro/astro/commit/a1108e037115cdb67d03505286c7d3a4fc2a1ff5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Move `image()` to come from `schema` instead to fix it not working with refine and inside complex types
+  For example, the following configuration will only allow remote images from `astro.build` to be optimized:
 
-  **Migration**:
+  ```ts
+  // astro.config.mjs
+  export default defineConfig({
+    image: {
+      domains: ['astro.build'],
+    },
+  });
+  ```
 
-  Remove the `image` import from `astro:content`, and instead use a function to generate your schema, like such:
+  The following configuration will only allow remote images from HTTPS hosts:
 
   ```ts
-  import { defineCollection, z } from 'astro:content';
-
-  defineCollection({
-    schema: ({ image }) =>
-      z.object({
-        image: image().refine((img) => img.width >= 200, {
-          message: 'image too small',
-        }),
-      }),
+  // astro.config.mjs
+  export default defineConfig({
+    image: {
+      remotePatterns: [{ protocol: 'https' }],
+    },
   });
   ```
 
-- [#6714](https://github.com/withastro/astro/pull/6714) [`ff0430786`](https://github.com/withastro/astro/commit/ff043078630e678348ae4f4757b3015b3b862c16) Thanks [@bluwy](https://github.com/bluwy)! - Add `build.assetsPrefix` option for CDN support. If set, all Astro-generated asset links will be prefixed with it. For example, setting it to `https://cdn.example.com` would generate `https://cdn.example.com/_astro/penguin.123456.png` links.
+- [#8109](https://github.com/withastro/astro/pull/8109) [`da6e3da1c`](https://github.com/withastro/astro/commit/da6e3da1ce00bed625fc568cfe4693713448e93f) Thanks [@martrapp](https://github.com/martrapp)! - fix: reinsert attribute to specify direction of ViewTransition (forward / back)
 
-  Also adds `import.meta.env.ASSETS_PREFIX` environment variable that can be used to manually create asset links not handled by Astro.
+## 2.10.9
 
 ### Patch Changes
 
-- [#6753](https://github.com/withastro/astro/pull/6753) [`489dd8d69`](https://github.com/withastro/astro/commit/489dd8d69cdd9d7c243cf8bec96051a914984b9c) Thanks [@bluwy](https://github.com/bluwy)! - Fix `getViteConfig` return type
-
-- [#6744](https://github.com/withastro/astro/pull/6744) [`a1a4f45b5`](https://github.com/withastro/astro/commit/a1a4f45b51a80215fa7598da83bd0d9c5acd20d2) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix remote images in Markdown throwing errors when using `experimental.assets`
+- [#8091](https://github.com/withastro/astro/pull/8091) [`56e7c5177`](https://github.com/withastro/astro/commit/56e7c5177bd61b404978dc9b82e2d34d76a4b2f9) Thanks [@martrapp](https://github.com/martrapp)! - Handle `