diff --git a/.eslintrc.json b/.eslintrc.json index f7b8503..7076ad9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,11 +5,8 @@ "node": true, "es2021": true }, - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended" - ], - "ignorePatterns": ["dist", "types", "package-lock.json", "react-example"], + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + "ignorePatterns": ["dist", "package-lock.json", "react-example"], "overrides": [ { "files": ["**/*.ts", "**/*.tsx"], @@ -24,10 +21,7 @@ }, "plugins": ["@typescript-eslint"], "rules": { - "quotes": [ - "error", - "single" - ] + "quotes": ["error", "single"] } } ], @@ -36,31 +30,23 @@ "ecmaVersion": "latest", "sourceType": "module" }, - "plugins": [ - "@typescript-eslint", - "sort-imports-es6-autofix" - ], + "plugins": ["@typescript-eslint", "sort-imports-es6-autofix"], "rules": { - "indent": [ - "error", - 2 - ], - "linebreak-style": [ - "error", - "unix" - ], - "semi": [ - "error", - "never" - ], + "indent": ["error", 2], + "linebreak-style": ["error", "unix"], + "semi": ["error", "never"], + "no-multi-spaces": ["error"], "no-unused-vars": "error", "comma-dangle": "error", "object-curly-spacing": ["error", "never"], - "sort-imports-es6-autofix/sort-imports-es6": [2, { - "ignoreCase": false, - "ignoreMemberSort": false, - "memberSyntaxSortOrder": ["none", "all", "multiple", "single"] - }], + "sort-imports-es6-autofix/sort-imports-es6": [ + 2, + { + "ignoreCase": false, + "ignoreMemberSort": false, + "memberSyntaxSortOrder": ["none", "all", "multiple", "single"] + } + ], "max-len": ["error", {"code": 120}] } } diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96b1b35..b8d88ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,18 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/checkout@v3 - - name: 'Install Node' - uses: actions/setup-node@v3 - with: - node-version: '20.x' - - uses: pnpm/action-setup@v2 - name: Install pnpm - with: - version: 8 - run_install: true - - name: Run ESLint - run: pnpm run lint + - uses: actions/checkout@v3 + - name: 'Install Node' + uses: actions/setup-node@v3 + with: + node-version: '20.x' + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: true + - name: Run ESLint + run: pnpm run lint test: name: Test Code Base runs-on: ubuntu-latest @@ -30,34 +30,34 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/checkout@v3 - - name: 'Install Node' - uses: actions/setup-node@v3 - with: - node-version: '20.x' - - name: Install xsel - run: sudo apt-get install -y xsel - - uses: pnpm/action-setup@v2 - name: Install pnpm - with: - version: 8 - run_install: true - - name: 'Test' - run: pnpm run turbo:coverage - - name: 'Report Core Coverage' - if: always() # Also generate the report if tests are failing - uses: davelosert/vitest-coverage-report-action@v1 - with: - json-summary-path: './coverage/coverage-summary.json' - json-final-path: './coverage/coverage-final.json' - vite-config-path: './configs/vitest/vitest.config.ts' - - name: 'Report CLI Coverage' - if: always() # Also generate the report if tests are failing - uses: davelosert/vitest-coverage-report-action@v1 - with: - json-summary-path: './packages/cli/coverage/coverage-summary.json' - json-final-path: './packages/cli/coverage/coverage-final.json' - vite-config-path: './packages/cli/vitest.config.ts' + - uses: actions/checkout@v3 + - name: 'Install Node' + uses: actions/setup-node@v3 + with: + node-version: '20.x' + - name: Install xsel + run: sudo apt-get install -y xsel + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: true + - name: 'Test' + run: pnpm run turbo:coverage + - name: 'Report Core Coverage' + if: always() # Also generate the report if tests are failing + uses: davelosert/vitest-coverage-report-action@v1 + with: + json-summary-path: './coverage/coverage-summary.json' + json-final-path: './coverage/coverage-final.json' + vite-config-path: './configs/vitest/vitest.config.ts' + - name: 'Report CLI Coverage' + if: always() # Also generate the report if tests are failing + uses: davelosert/vitest-coverage-report-action@v1 + with: + json-summary-path: './packages/cli/coverage/coverage-summary.json' + json-final-path: './packages/cli/coverage/coverage-final.json' + vite-config-path: './packages/cli/vitest.config.ts' design-request: name: Test Design Request Creation runs-on: ubuntu-latest @@ -66,19 +66,19 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 - - name: 'Install Node' - uses: actions/setup-node@v3 - with: - node-version: '20.x' - - uses: pnpm/action-setup@v2 - name: Install pnpm - with: - version: 8 - run_install: false - - name: 'Install Deps' - run: cd packages/cli && pnpm install && pnpm run setup:dev - - name: 'Setup CLI' - run: cd packages/cli/dist && node index.mjs config --api-host ${{vars.API_HOST}} --ws-host ${{vars.WEBSOCKET_HOST}} --api-key ${{secrets.API_KEY}} --user-id GITHUB-ACTIONS - - name: 'Test' - run: cd packages/cli/dist && node index.mjs mb-client design-request new --title $(date +'%Y-%m-%d') --subtitle ${GITHUB_REF##*/} --occasion baby --style 6117 --book-size 8x8 --cover-type sc --page-type sp --image-density low --image-filtering-level best --embellishment-level lots --text-sticker-level few --image-set 00-nice-and-rome + - uses: actions/checkout@v3 + - name: 'Install Node' + uses: actions/setup-node@v3 + with: + node-version: '20.x' + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: false + - name: 'Install Deps' + run: cd packages/cli && pnpm install && pnpm run setup:dev + - name: 'Setup CLI' + run: cd packages/cli/dist && node index.mjs config --api-host ${{vars.API_HOST}} --ws-host ${{vars.WEBSOCKET_HOST}} --api-key ${{secrets.API_KEY}} --user-id GITHUB-ACTIONS + - name: 'Test' + run: cd packages/cli/dist && node index.mjs mb-client design-request new --title $(date +'%Y-%m-%d') --subtitle ${GITHUB_REF##*/} --occasion baby --style 6117 --book-size 8x8 --cover-type sc --page-type sp --image-density low --image-filtering-level best --embellishment-level lots --text-sticker-level few --image-set 00-nice-and-rome diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..eabff42 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,7 @@ +.next/ +_next/ +__tmp__/ +dist/ +node_modules/ +.strapi/ +pnpm-lock.yaml diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..942e95d --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,14 @@ +{ + "printWidth": 120, + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true, + "quoteProps": "as-needed", + "jsxSingleQuote": true, + "trailingComma": "none", + "bracketSpacing": false, + "bracketSameLine": false, + "arrowParens": "always", + "singleAttributePerLine": true +} diff --git a/README.md b/README.md index 81b3979..2bdf208 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,21 @@ - ![GitHub CI](https://github.com/magiclabs-ai/mb-client/actions/workflows/ci.yml/badge.svg) [![npm version](https://img.shields.io/npm/v/@magiclabs.ai/magicbook-client.svg)](https://www.npmjs.com/package/@magiclabs.ai/magicbook-client) # mb-client + TypeScript monorepo that contains `@magiclabs.ai/magicbook-cli` and `@magiclabs.ai/magicbook-client` ## Usage + You can run the coverage for all the packages at once using the following command + ```bash pnpm run turbo:coverage ``` ## Deploy + You can deploy all the packages at once using the command + ```bash pnpm run pub:release ``` diff --git a/configs/tsconfigs/tsconfig.base.json b/configs/tsconfigs/tsconfig.base.json index 45c310c..ef7eb4e 100644 --- a/configs/tsconfigs/tsconfig.base.json +++ b/configs/tsconfigs/tsconfig.base.json @@ -3,10 +3,7 @@ "target": "ESNext", "useDefineForClassFields": true, "module": "ESNext", - "lib": [ - "ESNext", - "DOM" - ], + "lib": ["ESNext", "DOM"], "moduleResolution": "Node", "strict": true, "resolveJsonModule": true, diff --git a/configs/vitest/vitest.config.ts b/configs/vitest/vitest.config.ts index 2f0d305..8862ab9 100644 --- a/configs/vitest/vitest.config.ts +++ b/configs/vitest/vitest.config.ts @@ -11,13 +11,8 @@ export default defineConfig({ ] }, test: { - setupFiles: [ - './core/tests/mocks/fetch.ts' - ], - exclude: [ - 'node_modules', - 'packages' - ], + setupFiles: ['./core/tests/mocks/fetch.ts'], + exclude: ['node_modules', 'packages'], environment: 'jsdom', coverage: { all: true, diff --git a/core/data/design-request.ts b/core/data/design-request.ts index bbe8243..5f0c4e0 100644 --- a/core/data/design-request.ts +++ b/core/data/design-request.ts @@ -1,4 +1,4 @@ -import {DesignRequestEventDetail} from '../models/design-request' +import {DesignRequestEventDetail} from '../types/design-request' export const states = [ 'new', @@ -16,8 +16,13 @@ export const states = [ 'error', 'cancelled' ] as const -export const statesToCloseWS: ReadonlyArray = ['error', 'timeout', 'ready', 'cancelled'] as const -export const statesToReport: ReadonlyArray = ['error', 'timeout'] as const +export const statesToCloseWS: ReadonlyArray<(typeof states)[number]> = [ + 'error', + 'timeout', + 'ready', + 'cancelled' +] as const +export const statesToReport: ReadonlyArray<(typeof states)[number]> = ['error', 'timeout'] as const export const isDesignRequestSubmitted = (state: string) => !['new', 'ingesting'].includes(state) export const canSubmitDesignRequest = (state: string) => ['new', 'ingesting', 'ready'].includes(state) export const occasions = [ diff --git a/core/data/image-sets/00-nice-and-rome-client.json b/core/data/image-sets/00-nice-and-rome-client.json index fdadceb..1915e10 100644 --- a/core/data/image-sets/00-nice-and-rome-client.json +++ b/core/data/image-sets/00-nice-and-rome-client.json @@ -1,224 +1,224 @@ { - "00-nice-and-rome": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg", - "width": 1024, - "height": 768, - "rotation": 0, - "captureTime": "2016-05-24 21:12:49", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 15:50:43", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 16:53:48", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "rotation": 0, - "captureTime": "2016-05-29 16:24:08", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-27 13:41:24", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg", - "width": 1024, - "height": 768, - "rotation": 0, - "captureTime": "2016-05-23 19:47:52", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 17:12:23", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 16:38:55", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 16:39:18", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 17:12:33", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 15:37:10", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg", - "width": 1024, - "height": 677, - "rotation": 0, - "captureTime": "2016-05-29 16:12:45", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg", - "width": 1024, - "height": 768, - "rotation": 0, - "captureTime": "2016-05-29 16:00:04", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 19:49:32", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg", - "width": 1024, - "height": 768, - "rotation": 0, - "captureTime": "2016-05-29 15:59:39", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 17:26:26", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg", - "width": 1024, - "height": 512, - "rotation": 0, - "captureTime": "2016-05-24 21:00:14", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg", - "width": 1024, - "height": 683, - "rotation": 0, - "captureTime": "2016-05-29 18:51:27", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-29 15:59:47", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "rotation": 0, - "captureTime": "2016-05-23 20:04:05", - "cameraModel": "iPhone 6 Plus", - "cameraMake": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - } - ] + "00-nice-and-rome": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg", + "width": 1024, + "height": 768, + "rotation": 0, + "captureTime": "2016-05-24 21:12:49", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 15:50:43", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 16:53:48", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "rotation": 0, + "captureTime": "2016-05-29 16:24:08", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-27 13:41:24", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg", + "width": 1024, + "height": 768, + "rotation": 0, + "captureTime": "2016-05-23 19:47:52", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 17:12:23", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 16:38:55", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 16:39:18", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 17:12:33", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 15:37:10", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg", + "width": 1024, + "height": 677, + "rotation": 0, + "captureTime": "2016-05-29 16:12:45", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg", + "width": 1024, + "height": 768, + "rotation": 0, + "captureTime": "2016-05-29 16:00:04", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 19:49:32", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg", + "width": 1024, + "height": 768, + "rotation": 0, + "captureTime": "2016-05-29 15:59:39", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 17:26:26", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg", + "width": 1024, + "height": 512, + "rotation": 0, + "captureTime": "2016-05-24 21:00:14", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg", + "width": 1024, + "height": 683, + "rotation": 0, + "captureTime": "2016-05-29 18:51:27", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-29 15:59:47", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "rotation": 0, + "captureTime": "2016-05-23 20:04:05", + "cameraModel": "iPhone 6 Plus", + "cameraMake": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + } + ] } diff --git a/core/data/image-sets/00-nice-and-rome.json b/core/data/image-sets/00-nice-and-rome.json index 92a2048..32a5126 100644 --- a/core/data/image-sets/00-nice-and-rome.json +++ b/core/data/image-sets/00-nice-and-rome.json @@ -1,224 +1,224 @@ { - "00-nice-and-rome": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-nice-and-rome/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - } - ] -} \ No newline at end of file + "00-nice-and-rome": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-nice-and-rome/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + } + ] +} diff --git a/core/data/image-sets/00-yir-2019-lr.json b/core/data/image-sets/00-yir-2019-lr.json index 5019291..3cf252f 100644 --- a/core/data/image-sets/00-yir-2019-lr.json +++ b/core/data/image-sets/00-yir-2019-lr.json @@ -1,4327 +1,4327 @@ { - "00-yir-2019-lr": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9030.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-18 12:02:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9030.jpg", - "handle": "IMG_9030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9024.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 10:38:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9024.jpg", - "handle": "IMG_9024.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8925.jpg", - "width": 350, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 10:34:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8925.jpg", - "handle": "IMG_8925.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8919.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 23:53:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8919.jpg", - "handle": "IMG_8919.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8529.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 12:09:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8529.jpg", - "handle": "IMG_8529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9019.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 08:09:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9019.jpg", - "handle": "IMG_9019.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8477.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 15:10:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8477.jpg", - "handle": "IMG_8477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8311.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-13 18:43:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8311.jpg", - "handle": "IMG_8311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9423.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-05-05 20:26:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9423.jpg", - "handle": "IMG_9423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8700.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 01:37:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8700.jpg", - "handle": "IMG_8700.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8853.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:36", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8853.JPG", - "handle": "IMG_8853.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8847.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-12 18:38:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8847.jpg", - "handle": "IMG_8847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9032.jpg", - "width": 1000, - "height": 378, - "orientation": 0, - "taken_at": "2018-04-18 14:49:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9032.jpg", - "handle": "IMG_9032.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8466.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-04-08 14:00:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8466.jpg", - "handle": "IMG_8466.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8300.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-03-13 13:32:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8300.jpg", - "handle": "IMG_8300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8314.jpg", - "width": 1000, - "height": 534, - "orientation": 0, - "taken_at": "2018-03-13 18:46:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8314.jpg", - "handle": "IMG_8314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8328.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-16 07:36:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8328.jpg", - "handle": "IMG_8328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8710.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:50:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8710.jpg", - "handle": "IMG_8710.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9426.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 20:27:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9426.jpg", - "handle": "IMG_9426.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9195.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-27 14:38:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9195.jpg", - "handle": "IMG_9195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8506.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-09 03:10:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8506.jpg", - "handle": "IMG_8506.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8842.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:22:25", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8842.JPG", - "handle": "IMG_8842.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9023.jpg", - "width": 1000, - "height": 528, - "orientation": 0, - "taken_at": "2018-04-18 10:23:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9023.jpg", - "handle": "IMG_9023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8707.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:32:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8707.jpg", - "handle": "IMG_8707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9815.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 18:06:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9815.jpg", - "handle": "IMG_9815.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:26:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9424.jpg", - "handle": "IMG_9424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9395.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:39:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9395.JPG", - "handle": "IMG_9395.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9020.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 08:54:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9020.jpg", - "handle": "IMG_9020.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 15:18:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9034.jpg", - "handle": "IMG_9034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9008.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-17 14:42:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9008.jpg", - "handle": "IMG_9008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-12 17:00:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8832.jpg", - "handle": "IMG_8832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9325.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 12:38:25", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9325.jpg", - "handle": "IMG_9325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9654.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 15:19:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9654.jpg", - "handle": "IMG_9654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8238.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:02:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8238.jpg", - "handle": "IMG_8238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8416.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 17:40:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8416.jpg", - "handle": "IMG_8416.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9087.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:25:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9087.jpg", - "handle": "IMG_9087.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 08:13:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8428.jpg", - "handle": "IMG_8428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8164.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-18 13:26:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8164.jpg", - "handle": "IMG_8164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8951.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-14 15:22:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8951.jpg", - "handle": "IMG_8951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9656.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-07 15:29:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9656.jpg", - "handle": "IMG_9656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8561.jpg", - "width": 1000, - "height": 477, - "orientation": 0, - "taken_at": "2018-04-09 19:34:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8561.jpg", - "handle": "IMG_8561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:39:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8987.jpg", - "handle": "IMG_8987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8944.jpg", - "width": 955, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 13:15:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8944.jpg", - "handle": "IMG_8944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8415.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 17:39:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8415.jpg", - "handle": "IMG_8415.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9041.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-19 11:05:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9041.jpg", - "handle": "IMG_9041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:54:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9849.jpg", - "handle": "IMG_9849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8821.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:25:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8821.jpg", - "handle": "IMG_8821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9083.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:18:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9083.jpg", - "handle": "IMG_9083.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8758.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:00:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8758.jpg", - "handle": "IMG_8758.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9320.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:09:10", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9320.jpg", - "handle": "IMG_9320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9122.jpg", - "width": 1000, - "height": 432, - "orientation": 0, - "taken_at": "2018-04-22 12:56:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9122.jpg", - "handle": "IMG_9122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8567.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:26:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8567.jpg", - "handle": "IMG_8567.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8759.jpg", - "width": 709, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:01:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8759.jpg", - "handle": "IMG_8759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8163.jpg", - "width": 1000, - "height": 600, - "orientation": 0, - "taken_at": "2018-02-18 13:25:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8163.jpg", - "handle": "IMG_8163.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8836.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:05:55", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8836.JPG", - "handle": "IMG_8836.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8436.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 12:13:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8436.jpg", - "handle": "IMG_8436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8807.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:10:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8807.jpg", - "handle": "IMG_8807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8967.jpg", - "width": 1000, - "height": 339, - "orientation": 0, - "taken_at": "2018-04-15 17:57:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8967.jpg", - "handle": "IMG_8967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9847.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9847.jpg", - "handle": "IMG_9847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9112.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:38:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9112.jpg", - "handle": "IMG_9112.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8972.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-15 19:59:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8972.jpg", - "handle": "IMG_8972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9071.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-19 17:01:04", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9071.jpg", - "handle": "IMG_9071.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8970.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-15 19:58:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8970.jpg", - "handle": "IMG_8970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8743.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8743.jpg", - "handle": "IMG_8743.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9850.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:55:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9850.jpg", - "handle": "IMG_9850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8596.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-10 12:59:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8596.jpg", - "handle": "IMG_8596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9844.jpg", - "handle": "IMG_9844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9138.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 13:51:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9138.jpg", - "handle": "IMG_9138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9104.jpg", - "width": 585, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-21 18:21:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9104.jpg", - "handle": "IMG_9104.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9851.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:55:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9851.jpg", - "handle": "IMG_9851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8839.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:29:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8839.JPG", - "handle": "IMG_8839.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8434.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 11:21:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8434.jpg", - "handle": "IMG_8434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8408.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 03:11:05", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8408.jpg", - "handle": "IMG_8408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 19:16:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8424.jpg", - "handle": "IMG_8424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8430.jpg", - "width": 1000, - "height": 842, - "orientation": 0, - "taken_at": "2018-04-08 08:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8430.jpg", - "handle": "IMG_8430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9712.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-21 19:17:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9712.jpg", - "handle": "IMG_9712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9316.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:08:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9316.jpg", - "handle": "IMG_9316.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8431.jpg", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-08 09:07:50", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8431.jpg", - "handle": "IMG_8431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8745.jpg", - "handle": "IMG_8745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9315.jpg", - "width": 682, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 09:49:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9315.jpg", - "handle": "IMG_9315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9856.jpg", - "width": 1000, - "height": 668, - "orientation": 0, - "taken_at": "2018-05-13 08:00:41", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9856.jpg", - "handle": "IMG_9856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8547.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 18:05:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8547.jpg", - "handle": "IMG_8547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 19:26:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8552.jpg", - "handle": "IMG_8552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8988.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:40:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8988.jpg", - "handle": "IMG_8988.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8744.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8744.jpg", - "handle": "IMG_8744.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 14:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8963.jpg", - "handle": "IMG_8963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9512.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 07:11:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9512.jpg", - "handle": "IMG_9512.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8455.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 13:47:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8455.jpg", - "handle": "IMG_8455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9824.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9824.jpg", - "handle": "IMG_9824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9171.jpg", - "width": 1000, - "height": 645, - "orientation": 0, - "taken_at": "2018-04-27 13:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9171.jpg", - "handle": "IMG_9171.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9825.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9825.jpg", - "handle": "IMG_9825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:27:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9428.jpg", - "handle": "IMG_9428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8865.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 19:57:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8865.jpg", - "handle": "IMG_8865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8318.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 09:39:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8318.jpg", - "handle": "IMG_8318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9204.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-27 14:50:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9204.jpg", - "handle": "IMG_9204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8898.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 20:18:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8898.jpg", - "handle": "IMG_8898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9199.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-27 14:46:53", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9199.jpg", - "handle": "IMG_9199.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9359.jpg", - "width": 1000, - "height": 589, - "orientation": 0, - "taken_at": "2018-05-05 18:37:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9359.jpg", - "handle": "IMG_9359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8133.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-02-04 10:38:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8133.JPG", - "handle": "IMG_8133.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8325.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 13:55:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8325.jpg", - "handle": "IMG_8325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9013.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 17:48:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9013.JPG", - "handle": "IMG_9013.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8490.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-08 17:36:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8490.jpg", - "handle": "IMG_8490.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9995.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:34:35", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9995.JPG", - "handle": "IMG_9995.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9003.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-17 14:01:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9003.jpg", - "handle": "IMG_9003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9201.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-27 14:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9201.jpg", - "handle": "IMG_9201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8527.jpg", - "width": 1000, - "height": 604, - "orientation": 0, - "taken_at": "2018-04-09 12:09:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8527.jpg", - "handle": "IMG_8527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9823.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9823.jpg", - "handle": "IMG_9823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9348.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:30:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9348.jpg", - "handle": "IMG_9348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8687.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 21:40:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8687.jpg", - "handle": "IMG_8687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9941.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:44:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9941.jpg", - "handle": "IMG_9941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8849.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:01", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8849.JPG", - "handle": "IMG_8849.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9606.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 14:51:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_9606.jpg", - "handle": "IMG_9606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8337.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-03-18 01:07:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_8337.jpg", - "handle": "IMG_8337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/00-yir-2019-lr/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "00-yir-2019-lr": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9030.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-18 12:02:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9030.jpg", + "handle": "IMG_9030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9024.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 10:38:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9024.jpg", + "handle": "IMG_9024.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8925.jpg", + "width": 350, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 10:34:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8925.jpg", + "handle": "IMG_8925.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8919.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 23:53:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8919.jpg", + "handle": "IMG_8919.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8529.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 12:09:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8529.jpg", + "handle": "IMG_8529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9019.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 08:09:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9019.jpg", + "handle": "IMG_9019.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8477.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 15:10:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8477.jpg", + "handle": "IMG_8477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8311.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-13 18:43:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8311.jpg", + "handle": "IMG_8311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9423.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-05-05 20:26:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9423.jpg", + "handle": "IMG_9423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8700.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 01:37:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8700.jpg", + "handle": "IMG_8700.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8853.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:36", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8853.JPG", + "handle": "IMG_8853.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8847.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-12 18:38:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8847.jpg", + "handle": "IMG_8847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9032.jpg", + "width": 1000, + "height": 378, + "orientation": 0, + "taken_at": "2018-04-18 14:49:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9032.jpg", + "handle": "IMG_9032.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8466.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-04-08 14:00:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8466.jpg", + "handle": "IMG_8466.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8300.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-03-13 13:32:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8300.jpg", + "handle": "IMG_8300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8314.jpg", + "width": 1000, + "height": 534, + "orientation": 0, + "taken_at": "2018-03-13 18:46:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8314.jpg", + "handle": "IMG_8314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8328.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-16 07:36:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8328.jpg", + "handle": "IMG_8328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8710.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:50:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8710.jpg", + "handle": "IMG_8710.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9426.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 20:27:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9426.jpg", + "handle": "IMG_9426.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9195.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-27 14:38:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9195.jpg", + "handle": "IMG_9195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8506.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-09 03:10:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8506.jpg", + "handle": "IMG_8506.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8842.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:22:25", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8842.JPG", + "handle": "IMG_8842.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9023.jpg", + "width": 1000, + "height": 528, + "orientation": 0, + "taken_at": "2018-04-18 10:23:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9023.jpg", + "handle": "IMG_9023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8707.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:32:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8707.jpg", + "handle": "IMG_8707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9815.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 18:06:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9815.jpg", + "handle": "IMG_9815.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:26:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9424.jpg", + "handle": "IMG_9424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9395.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:39:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9395.JPG", + "handle": "IMG_9395.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9020.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 08:54:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9020.jpg", + "handle": "IMG_9020.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 15:18:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9034.jpg", + "handle": "IMG_9034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9008.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-17 14:42:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9008.jpg", + "handle": "IMG_9008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-12 17:00:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8832.jpg", + "handle": "IMG_8832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9325.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 12:38:25", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9325.jpg", + "handle": "IMG_9325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9654.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 15:19:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9654.jpg", + "handle": "IMG_9654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8238.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:02:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8238.jpg", + "handle": "IMG_8238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8416.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 17:40:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8416.jpg", + "handle": "IMG_8416.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9087.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:25:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9087.jpg", + "handle": "IMG_9087.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 08:13:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8428.jpg", + "handle": "IMG_8428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8164.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-18 13:26:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8164.jpg", + "handle": "IMG_8164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8951.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-14 15:22:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8951.jpg", + "handle": "IMG_8951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9656.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-07 15:29:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9656.jpg", + "handle": "IMG_9656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8561.jpg", + "width": 1000, + "height": 477, + "orientation": 0, + "taken_at": "2018-04-09 19:34:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8561.jpg", + "handle": "IMG_8561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:39:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8987.jpg", + "handle": "IMG_8987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8944.jpg", + "width": 955, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 13:15:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8944.jpg", + "handle": "IMG_8944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8415.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 17:39:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8415.jpg", + "handle": "IMG_8415.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9041.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-19 11:05:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9041.jpg", + "handle": "IMG_9041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:54:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9849.jpg", + "handle": "IMG_9849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8821.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:25:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8821.jpg", + "handle": "IMG_8821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9083.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:18:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9083.jpg", + "handle": "IMG_9083.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8758.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:00:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8758.jpg", + "handle": "IMG_8758.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9320.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:09:10", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9320.jpg", + "handle": "IMG_9320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9122.jpg", + "width": 1000, + "height": 432, + "orientation": 0, + "taken_at": "2018-04-22 12:56:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9122.jpg", + "handle": "IMG_9122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8567.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:26:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8567.jpg", + "handle": "IMG_8567.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8759.jpg", + "width": 709, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:01:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8759.jpg", + "handle": "IMG_8759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8163.jpg", + "width": 1000, + "height": 600, + "orientation": 0, + "taken_at": "2018-02-18 13:25:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8163.jpg", + "handle": "IMG_8163.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8836.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:05:55", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8836.JPG", + "handle": "IMG_8836.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8436.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 12:13:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8436.jpg", + "handle": "IMG_8436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8807.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:10:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8807.jpg", + "handle": "IMG_8807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8967.jpg", + "width": 1000, + "height": 339, + "orientation": 0, + "taken_at": "2018-04-15 17:57:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8967.jpg", + "handle": "IMG_8967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9847.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9847.jpg", + "handle": "IMG_9847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9112.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:38:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9112.jpg", + "handle": "IMG_9112.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8972.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-15 19:59:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8972.jpg", + "handle": "IMG_8972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9071.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-19 17:01:04", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9071.jpg", + "handle": "IMG_9071.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8970.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-15 19:58:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8970.jpg", + "handle": "IMG_8970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8743.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8743.jpg", + "handle": "IMG_8743.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9850.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:55:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9850.jpg", + "handle": "IMG_9850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8596.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-10 12:59:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8596.jpg", + "handle": "IMG_8596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9844.jpg", + "handle": "IMG_9844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9138.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 13:51:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9138.jpg", + "handle": "IMG_9138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9104.jpg", + "width": 585, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-21 18:21:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9104.jpg", + "handle": "IMG_9104.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9851.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:55:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9851.jpg", + "handle": "IMG_9851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8839.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:29:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8839.JPG", + "handle": "IMG_8839.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8434.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 11:21:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8434.jpg", + "handle": "IMG_8434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8408.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 03:11:05", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8408.jpg", + "handle": "IMG_8408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 19:16:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8424.jpg", + "handle": "IMG_8424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8430.jpg", + "width": 1000, + "height": 842, + "orientation": 0, + "taken_at": "2018-04-08 08:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8430.jpg", + "handle": "IMG_8430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9712.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-21 19:17:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9712.jpg", + "handle": "IMG_9712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9316.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:08:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9316.jpg", + "handle": "IMG_9316.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8431.jpg", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-08 09:07:50", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8431.jpg", + "handle": "IMG_8431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8745.jpg", + "handle": "IMG_8745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9315.jpg", + "width": 682, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 09:49:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9315.jpg", + "handle": "IMG_9315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9856.jpg", + "width": 1000, + "height": 668, + "orientation": 0, + "taken_at": "2018-05-13 08:00:41", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9856.jpg", + "handle": "IMG_9856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8547.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 18:05:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8547.jpg", + "handle": "IMG_8547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 19:26:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8552.jpg", + "handle": "IMG_8552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8988.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:40:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8988.jpg", + "handle": "IMG_8988.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8744.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8744.jpg", + "handle": "IMG_8744.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 14:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8963.jpg", + "handle": "IMG_8963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9512.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 07:11:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9512.jpg", + "handle": "IMG_9512.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8455.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 13:47:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8455.jpg", + "handle": "IMG_8455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9824.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9824.jpg", + "handle": "IMG_9824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9171.jpg", + "width": 1000, + "height": 645, + "orientation": 0, + "taken_at": "2018-04-27 13:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9171.jpg", + "handle": "IMG_9171.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9825.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9825.jpg", + "handle": "IMG_9825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:27:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9428.jpg", + "handle": "IMG_9428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8865.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 19:57:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8865.jpg", + "handle": "IMG_8865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8318.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 09:39:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8318.jpg", + "handle": "IMG_8318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9204.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-27 14:50:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9204.jpg", + "handle": "IMG_9204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8898.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 20:18:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8898.jpg", + "handle": "IMG_8898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9199.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-27 14:46:53", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9199.jpg", + "handle": "IMG_9199.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9359.jpg", + "width": 1000, + "height": 589, + "orientation": 0, + "taken_at": "2018-05-05 18:37:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9359.jpg", + "handle": "IMG_9359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8133.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-02-04 10:38:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8133.JPG", + "handle": "IMG_8133.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8325.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 13:55:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8325.jpg", + "handle": "IMG_8325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9013.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 17:48:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9013.JPG", + "handle": "IMG_9013.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8490.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-08 17:36:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8490.jpg", + "handle": "IMG_8490.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9995.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:34:35", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9995.JPG", + "handle": "IMG_9995.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9003.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-17 14:01:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9003.jpg", + "handle": "IMG_9003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9201.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-27 14:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9201.jpg", + "handle": "IMG_9201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8527.jpg", + "width": 1000, + "height": 604, + "orientation": 0, + "taken_at": "2018-04-09 12:09:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8527.jpg", + "handle": "IMG_8527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9823.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9823.jpg", + "handle": "IMG_9823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9348.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:30:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9348.jpg", + "handle": "IMG_9348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8687.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 21:40:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8687.jpg", + "handle": "IMG_8687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9941.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:44:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9941.jpg", + "handle": "IMG_9941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8849.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:01", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8849.JPG", + "handle": "IMG_8849.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_9606.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 14:51:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_9606.jpg", + "handle": "IMG_9606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8337.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-03-18 01:07:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_8337.jpg", + "handle": "IMG_8337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/00-yir-2019-lr/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/100.json b/core/data/image-sets/100.json index 2661dce..1d1f8fe 100644 --- a/core/data/image-sets/100.json +++ b/core/data/image-sets/100.json @@ -1,1104 +1,1104 @@ { - "100": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/100/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/100/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/100/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/100/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - } - ] + "100": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/100/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/100/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/100/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/100/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/100/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + } + ] } diff --git a/core/data/image-sets/200.json b/core/data/image-sets/200.json index d368ae4..d40037f 100644 --- a/core/data/image-sets/200.json +++ b/core/data/image-sets/200.json @@ -1,2204 +1,2204 @@ { - "200": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/200/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/200/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "200": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/200/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/200/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/200/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/2016-04-quad-desert.json b/core/data/image-sets/2016-04-quad-desert.json index 9ed7b87..e0771f2 100644 --- a/core/data/image-sets/2016-04-quad-desert.json +++ b/core/data/image-sets/2016-04-quad-desert.json @@ -1,653 +1,653 @@ { - "2016-04-quad-desert": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.14.42-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:14:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.14.42-2.jpg", - "handle": "2016-04-08 12.14.42-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.50.jpg", - "handle": "2016-12-21 16.11.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.07.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:07", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.07.jpg", - "handle": "2016-04-08 11.38.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.39.jpg", - "width": 1600, - "height": 1580, - "orientation": 0, - "taken_at": "2016-12-21 16:10:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.39.jpg", - "handle": "2016-12-21 16.10.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.37.02.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:37:02", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.37.02.jpg", - "handle": "2016-12-21 14.37.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.39.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.39.jpg", - "handle": "2016-04-08 12.05.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.13.42.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:13:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.13.42.jpg", - "handle": "2016-12-21 16.13.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.57.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:57", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.57.jpg", - "handle": "2016-08-24_10.39.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.45.00.jpg", - "width": 1600, - "height": 1219, - "orientation": 0, - "taken_at": "2016-04-08 11:45:00", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.45.00.jpg", - "handle": "2016-04-08 11.45.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.53.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:53", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.53.jpg", - "handle": "2016-08-24_10.39.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.29.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:29", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.29.jpg", - "handle": "2016-04-08 11.26.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.22.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 10:56:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.22.jpg", - "handle": "2016-04-08 10.56.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.38.jpg", - "width": 1600, - "height": 553, - "orientation": 0, - "taken_at": "2016-12-21 13:21:38", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.38.jpg", - "handle": "2016-12-21 13.21.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.33-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:29:33", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.33-2.jpg", - "handle": "2016-04-08 12.29.33-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.03.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.03.jpg", - "handle": "2016-08-24_12.37.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.13.jpg", - "handle": "2016-04-08 12.23.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.55.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.55.jpg", - "handle": "2016-12-21 16.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.58.31.jpg", - "width": 1600, - "height": 874, - "orientation": 0, - "taken_at": "2016-04-08 10:58:31", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.58.31.jpg", - "handle": "2016-04-08 10.58.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.48.40.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-12-21 16:48:40", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.48.40.jpg", - "handle": "2016-12-21 16.48.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.08.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:08", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.08.jpg", - "handle": "2016-04-08 11.37.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.46.jpg", - "width": 1600, - "height": 1275, - "orientation": 0, - "taken_at": "2016-04-08 10:56:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.46.jpg", - "handle": "2016-04-08 10.56.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.11.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:11:41", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.11.41.jpg", - "handle": "2016-08-24_11.11.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.25.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:02:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.25.jpg", - "handle": "2016-12-21 14.02.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.26.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:27:26", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.26.jpg", - "handle": "2016-04-08 11.27.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.24.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:11:24", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.24.jpg", - "handle": "2016-12-21 16.11.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.59.06.jpg", - "width": 1600, - "height": 407, - "orientation": 0, - "taken_at": "2016-08-24 11:59:06", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.59.06.jpg", - "handle": "2016-08-24_11.59.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.23.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:23", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.23.jpg", - "handle": "2016-08-24_09.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.59.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:59", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.59.jpg", - "handle": "2016-12-21 16.10.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.21.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:02:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.21.jpg", - "handle": "2016-12-21 14.02.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.59.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 10:59:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.59.13.jpg", - "handle": "2016-04-08 10.59.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.10-1.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:10", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.10-1.jpg", - "handle": "2016-04-08 11.38.10-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:49", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.49.jpg", - "handle": "2016-08-24_12.37.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.57.35.jpg", - "width": 1600, - "height": 605, - "orientation": 0, - "taken_at": "2016-08-24 11:57:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.57.35.jpg", - "handle": "2016-08-24_11.57.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.46.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.46.jpg", - "handle": "2016-12-21 16.10.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.14.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.14.jpg", - "handle": "2016-08-24_09.56.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.14.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.14.jpg", - "handle": "2016-04-08 11.37.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.56.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:46:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.56.jpg", - "handle": "2016-12-21 14.46.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.42.jpg", - "width": 944, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:46:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.42.jpg", - "handle": "2016-12-21 14.46.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.39.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.39.jpg", - "handle": "2016-12-21 16.11.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.50.jpg", - "handle": "2016-12-21 16.10.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.43.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:43", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.43.jpg", - "handle": "2016-04-08 11.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.15.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:15", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.15.jpg", - "handle": "2016-12-21 16.11.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.03.jpg", - "width": 766, - "height": 1337, - "orientation": 0, - "taken_at": "2016-04-08 11:27:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.03.jpg", - "handle": "2016-04-08 11.27.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.12.52.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:12:52", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.12.52.jpg", - "handle": "2016-12-21 16.12.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.01.jpg", - "width": 1600, - "height": 584, - "orientation": 0, - "taken_at": "2016-04-08 11:27:01", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.01.jpg", - "handle": "2016-04-08 11.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.56.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:29:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.56.jpg", - "handle": "2016-04-08 12.29.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.58.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:58:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.58.13.jpg", - "handle": "2016-08-24_11.58.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.22.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.22.jpg", - "handle": "2016-04-08 12.23.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.35.jpg", - "width": 1600, - "height": 500, - "orientation": 0, - "taken_at": "2016-12-21 13:21:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.35.jpg", - "handle": "2016-12-21 13.21.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.25.55.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:25:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.25.55.jpg", - "handle": "2016-04-08 12.25.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.40.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 10:40:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.40.13.jpg", - "handle": "2016-08-24_10.40.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 23.27.14.jpg", - "width": 1489, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 15:27:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 23.27.14.jpg", - "handle": "2016-04-08 23.27.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.25.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.25.jpg", - "handle": "2016-04-08 12.05.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.21.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-04-08 12:05:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.21.jpg", - "handle": "2016-04-08 12.05.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.34.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:34", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.34.jpg", - "handle": "2016-04-08 11.26.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.19.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 13:21:19", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.19.jpg", - "handle": "2016-12-21 13.21.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.57.54.jpg", - "width": 1600, - "height": 921, - "orientation": 0, - "taken_at": "2016-04-08 10:57:54", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.57.54.jpg", - "handle": "2016-04-08 10.57.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.37.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.37.jpg", - "handle": "2016-04-08 12.05.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.34.37.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 11:34:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.34.37.jpg", - "handle": "2016-04-08 11.34.37.jpg" - } - ] -} \ No newline at end of file + "2016-04-quad-desert": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.14.42-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:14:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.14.42-2.jpg", + "handle": "2016-04-08 12.14.42-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.50.jpg", + "handle": "2016-12-21 16.11.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.07.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:07", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.07.jpg", + "handle": "2016-04-08 11.38.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.39.jpg", + "width": 1600, + "height": 1580, + "orientation": 0, + "taken_at": "2016-12-21 16:10:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.39.jpg", + "handle": "2016-12-21 16.10.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.37.02.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:37:02", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.37.02.jpg", + "handle": "2016-12-21 14.37.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.39.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.39.jpg", + "handle": "2016-04-08 12.05.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.13.42.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:13:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.13.42.jpg", + "handle": "2016-12-21 16.13.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.57.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:57", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.57.jpg", + "handle": "2016-08-24_10.39.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.45.00.jpg", + "width": 1600, + "height": 1219, + "orientation": 0, + "taken_at": "2016-04-08 11:45:00", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.45.00.jpg", + "handle": "2016-04-08 11.45.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.53.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:53", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.39.53.jpg", + "handle": "2016-08-24_10.39.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.29.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:29", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.29.jpg", + "handle": "2016-04-08 11.26.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.22.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 10:56:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.22.jpg", + "handle": "2016-04-08 10.56.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.38.jpg", + "width": 1600, + "height": 553, + "orientation": 0, + "taken_at": "2016-12-21 13:21:38", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.38.jpg", + "handle": "2016-12-21 13.21.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.33-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:29:33", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.33-2.jpg", + "handle": "2016-04-08 12.29.33-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.03.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.03.jpg", + "handle": "2016-08-24_12.37.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.13.jpg", + "handle": "2016-04-08 12.23.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.55.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.55.jpg", + "handle": "2016-12-21 16.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.58.31.jpg", + "width": 1600, + "height": 874, + "orientation": 0, + "taken_at": "2016-04-08 10:58:31", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.58.31.jpg", + "handle": "2016-04-08 10.58.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.48.40.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-12-21 16:48:40", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.48.40.jpg", + "handle": "2016-12-21 16.48.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.08.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:08", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.08.jpg", + "handle": "2016-04-08 11.37.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.46.jpg", + "width": 1600, + "height": 1275, + "orientation": 0, + "taken_at": "2016-04-08 10:56:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.56.46.jpg", + "handle": "2016-04-08 10.56.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.11.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:11:41", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.11.41.jpg", + "handle": "2016-08-24_11.11.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.25.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:02:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.25.jpg", + "handle": "2016-12-21 14.02.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.26.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:27:26", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.26.jpg", + "handle": "2016-04-08 11.27.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.24.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:11:24", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.24.jpg", + "handle": "2016-12-21 16.11.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.59.06.jpg", + "width": 1600, + "height": 407, + "orientation": 0, + "taken_at": "2016-08-24 11:59:06", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.59.06.jpg", + "handle": "2016-08-24_11.59.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.23.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:23", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.23.jpg", + "handle": "2016-08-24_09.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.59.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:59", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.59.jpg", + "handle": "2016-12-21 16.10.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.21.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:02:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.02.21.jpg", + "handle": "2016-12-21 14.02.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.59.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 10:59:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.59.13.jpg", + "handle": "2016-04-08 10.59.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.10-1.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:10", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.10-1.jpg", + "handle": "2016-04-08 11.38.10-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:49", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_12.37.49.jpg", + "handle": "2016-08-24_12.37.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.57.35.jpg", + "width": 1600, + "height": 605, + "orientation": 0, + "taken_at": "2016-08-24 11:57:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.57.35.jpg", + "handle": "2016-08-24_11.57.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.46.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.46.jpg", + "handle": "2016-12-21 16.10.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.14.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_09.56.14.jpg", + "handle": "2016-08-24_09.56.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.14.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.37.14.jpg", + "handle": "2016-04-08 11.37.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.56.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:46:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.56.jpg", + "handle": "2016-12-21 14.46.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.42.jpg", + "width": 944, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:46:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 14.46.42.jpg", + "handle": "2016-12-21 14.46.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.39.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.39.jpg", + "handle": "2016-12-21 16.11.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.10.50.jpg", + "handle": "2016-12-21 16.10.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.43.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:43", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.38.43.jpg", + "handle": "2016-04-08 11.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.15.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:15", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.11.15.jpg", + "handle": "2016-12-21 16.11.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.03.jpg", + "width": 766, + "height": 1337, + "orientation": 0, + "taken_at": "2016-04-08 11:27:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.03.jpg", + "handle": "2016-04-08 11.27.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 16.12.52.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:12:52", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 16.12.52.jpg", + "handle": "2016-12-21 16.12.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.01.jpg", + "width": 1600, + "height": 584, + "orientation": 0, + "taken_at": "2016-04-08 11:27:01", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.27.01.jpg", + "handle": "2016-04-08 11.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.56.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:29:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.29.56.jpg", + "handle": "2016-04-08 12.29.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_11.58.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:58:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_11.58.13.jpg", + "handle": "2016-08-24_11.58.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.22.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.23.22.jpg", + "handle": "2016-04-08 12.23.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.35.jpg", + "width": 1600, + "height": 500, + "orientation": 0, + "taken_at": "2016-12-21 13:21:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.35.jpg", + "handle": "2016-12-21 13.21.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.25.55.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:25:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.25.55.jpg", + "handle": "2016-04-08 12.25.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-08-24_10.40.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 10:40:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-08-24_10.40.13.jpg", + "handle": "2016-08-24_10.40.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 23.27.14.jpg", + "width": 1489, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 15:27:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 23.27.14.jpg", + "handle": "2016-04-08 23.27.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.25.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.25.jpg", + "handle": "2016-04-08 12.05.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.21.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-04-08 12:05:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.21.jpg", + "handle": "2016-04-08 12.05.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.34.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:34", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.26.34.jpg", + "handle": "2016-04-08 11.26.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.19.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 13:21:19", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-12-21 13.21.19.jpg", + "handle": "2016-12-21 13.21.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 10.57.54.jpg", + "width": 1600, + "height": 921, + "orientation": 0, + "taken_at": "2016-04-08 10:57:54", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 10.57.54.jpg", + "handle": "2016-04-08 10.57.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.37.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 12.05.37.jpg", + "handle": "2016-04-08 12.05.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2016-04-quad-desert/2016-04-08 11.34.37.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 11:34:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/2016-04-quad-desert/2016-04-08 11.34.37.jpg", + "handle": "2016-04-08 11.34.37.jpg" + } + ] +} diff --git a/core/data/image-sets/2018-02-laventana.json b/core/data/image-sets/2018-02-laventana.json index 6b3b5d7..e441fb4 100644 --- a/core/data/image-sets/2018-02-laventana.json +++ b/core/data/image-sets/2018-02-laventana.json @@ -1,686 +1,686 @@ { - "2018-02-laventana": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180213_102748.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 11:27:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180213_102748.jpg", - "handle": "20180213_102748.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.20.06.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.20.06.jpg", - "handle": "2018-02-13 11.20.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_065950.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 06:59:50", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180214_065950.jpg", - "handle": "20180214_065950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180218_151913.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 10:16:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180218_151913.jpg", - "handle": "20180218_151913.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_151354.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 15:13:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180212_151354.jpg", - "handle": "20180212_151354.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05824.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:08:38", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05824.jpg", - "handle": "DSC05824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05825.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:13:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05825.jpg", - "handle": "DSC05825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.17.31.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.17.31.jpg", - "handle": "2018-02-13 10.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05774.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 10:17:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05774.jpg", - "handle": "DSC05774.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.28.02.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.28.02.jpg", - "handle": "2018-02-13 10.28.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 14.13.28.jpg", - "width": 675, - "height": 624, - "orientation": 0, - "taken_at": "2018-02-12 14:33:28", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 14.13.28.jpg", - "handle": "2018-02-12 14.13.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.47.02.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-13 10:47:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.47.02.jpg", - "handle": "2018-02-13 10.47.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-15 18.15.01.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-15 18:15:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-15 18.15.01.jpg", - "handle": "2018-02-15 18.15.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180218_152029.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 11:10:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180218_152029.jpg", - "handle": "20180218_152029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180213_110206.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:02:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180213_110206.jpg", - "handle": "20180213_110206.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_071933.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-12 16:54:10", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180214_071933.jpg", - "handle": "20180214_071933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00595.jpg", - "width": 1200, - "height": 607, - "orientation": 0, - "taken_at": "2018-02-18 08:11:16", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00595.jpg", - "handle": "DSC00595.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.20.01.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.20.01.jpg", - "handle": "2018-02-13 11.20.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06084.jpg", - "width": 1200, - "height": 810, - "orientation": 0, - "taken_at": "2018-02-17 16:24:20", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06084.jpg", - "handle": "DSC06084.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00378.jpg", - "width": 1177, - "height": 800, - "orientation": 0, - "taken_at": "2018-02-17 16:44:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00378.jpg", - "handle": "DSC00378.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06045.jpg", - "width": 1200, - "height": 847, - "orientation": 0, - "taken_at": "2018-02-17 16:23:46", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06045.jpg", - "handle": "DSC06045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06086.jpg", - "width": 1200, - "height": 821, - "orientation": 0, - "taken_at": "2018-02-17 16:24:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06086.jpg", - "handle": "DSC06086.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180215_070918.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:34:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180215_070918.jpg", - "handle": "20180215_070918.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.09.21.jpg", - "width": 1199, - "height": 573, - "orientation": 0, - "taken_at": "2018-02-13 10:09:21", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.09.21.jpg", - "handle": "2018-02-13 10.09.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05835.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:46:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05835.jpg", - "handle": "DSC05835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06125.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:27:19", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06125.jpg", - "handle": "DSC06125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00597.jpg", - "width": 1198, - "height": 599, - "orientation": 0, - "taken_at": "2018-02-18 08:18:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00597.jpg", - "handle": "DSC00597.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00596.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 08:11:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00596.jpg", - "handle": "DSC00596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05808.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:01:33", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05808.jpg", - "handle": "DSC05808.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00794.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:51:09", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00794.jpg", - "handle": "DSC00794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.04.48.jpg", - "width": 1200, - "height": 480, - "orientation": 0, - "taken_at": "2018-02-12 16:04:48", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.04.48.jpg", - "handle": "2018-02-12 16.04.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_070127.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:34:17", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180214_070127.jpg", - "handle": "20180214_070127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180216_194002.jpg", - "width": 1199, - "height": 693, - "orientation": 0, - "taken_at": "2018-02-16 19:40:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180216_194002.jpg", - "handle": "20180216_194002.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05660.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:16:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05660.jpg", - "handle": "DSC05660.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.01.22.jpg", - "width": 546, - "height": 985, - "orientation": 0, - "taken_at": "2018-02-12 16:01:22", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.01.22.jpg", - "handle": "2018-02-12 16.01.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05729.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:29:47", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05729.jpg", - "handle": "DSC05729.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.11.44.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:11:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.11.44.jpg", - "handle": "2018-02-13 11.11.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05703.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:46:07", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05703.jpg", - "handle": "DSC05703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 17.17.27.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:27", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 17.17.27.jpg", - "handle": "2018-02-12 17.17.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05688.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:32:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05688.jpg", - "handle": "DSC05688.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06154.jpg", - "width": 1200, - "height": 835, - "orientation": 0, - "taken_at": "2018-02-17 16:44:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06154.jpg", - "handle": "DSC06154.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06182.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 07:54:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06182.jpg", - "handle": "DSC06182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05892.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:10:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05892.jpg", - "handle": "DSC05892.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.17.45.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:45", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.17.45.jpg", - "handle": "2018-02-13 10.17.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.00.59.jpg", - "width": 808, - "height": 1200, - "orientation": 90, - "taken_at": "2018-02-12 16:00:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.00.59.jpg", - "handle": "2018-02-12 16.00.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.28.58.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.28.58.jpg", - "handle": "2018-02-13 10.28.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00681.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:57:55", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC00681.jpg", - "handle": "DSC00681.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06151.jpg", - "width": 1200, - "height": 807, - "orientation": 0, - "taken_at": "2018-02-17 16:42:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06151.jpg", - "handle": "DSC06151.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06145.jpg", - "width": 1200, - "height": 765, - "orientation": 0, - "taken_at": "2018-02-17 16:42:26", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06145.jpg", - "handle": "DSC06145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.01.18.jpg", - "width": 1199, - "height": 496, - "orientation": 0, - "taken_at": "2018-02-12 16:01:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.01.18.jpg", - "handle": "2018-02-12 16.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.17.37.jpg", - "width": 551, - "height": 667, - "orientation": 0, - "taken_at": "2018-02-13 11:17:37", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.17.37.jpg", - "handle": "2018-02-13 11.17.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05854.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:02:24", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05854.jpg", - "handle": "DSC05854.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05840.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:53:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC05840.jpg", - "handle": "DSC05840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_145219.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:20:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180212_145219.jpg", - "handle": "20180212_145219.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06018.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:20:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC06018.jpg", - "handle": "DSC06018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-14 18.11.13.jpg", - "width": 1200, - "height": 266, - "orientation": 0, - "taken_at": "2018-02-14 18:11:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-14 18.11.13.jpg", - "handle": "2018-02-14 18.11.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC01359.jpg", - "width": 1200, - "height": 864, - "orientation": 0, - "taken_at": "2018-02-17 16:20:30", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/DSC01359.jpg", - "handle": "DSC01359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_175252.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:10:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180212_175252.jpg", - "handle": "20180212_175252.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 17.17.08.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:08", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 17.17.08.jpg", - "handle": "2018-02-12 17.17.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_141929.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:19:29", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180212_141929.jpg", - "handle": "20180212_141929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.56.23.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 16:56:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.56.23.jpg", - "handle": "2018-02-12 16.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180217_091648.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:35:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-02-laventana/20180217_091648.jpg", - "handle": "20180217_091648.jpg" - } - ] -} \ No newline at end of file + "2018-02-laventana": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180213_102748.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 11:27:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180213_102748.jpg", + "handle": "20180213_102748.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.20.06.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.20.06.jpg", + "handle": "2018-02-13 11.20.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_065950.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 06:59:50", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180214_065950.jpg", + "handle": "20180214_065950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180218_151913.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 10:16:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180218_151913.jpg", + "handle": "20180218_151913.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_151354.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 15:13:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180212_151354.jpg", + "handle": "20180212_151354.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05824.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:08:38", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05824.jpg", + "handle": "DSC05824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05825.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:13:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05825.jpg", + "handle": "DSC05825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.17.31.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.17.31.jpg", + "handle": "2018-02-13 10.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05774.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 10:17:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05774.jpg", + "handle": "DSC05774.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.28.02.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.28.02.jpg", + "handle": "2018-02-13 10.28.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 14.13.28.jpg", + "width": 675, + "height": 624, + "orientation": 0, + "taken_at": "2018-02-12 14:33:28", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 14.13.28.jpg", + "handle": "2018-02-12 14.13.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.47.02.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-13 10:47:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.47.02.jpg", + "handle": "2018-02-13 10.47.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-15 18.15.01.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-15 18:15:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-15 18.15.01.jpg", + "handle": "2018-02-15 18.15.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180218_152029.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 11:10:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180218_152029.jpg", + "handle": "20180218_152029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180213_110206.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:02:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180213_110206.jpg", + "handle": "20180213_110206.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_071933.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-12 16:54:10", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180214_071933.jpg", + "handle": "20180214_071933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00595.jpg", + "width": 1200, + "height": 607, + "orientation": 0, + "taken_at": "2018-02-18 08:11:16", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00595.jpg", + "handle": "DSC00595.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.20.01.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.20.01.jpg", + "handle": "2018-02-13 11.20.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06084.jpg", + "width": 1200, + "height": 810, + "orientation": 0, + "taken_at": "2018-02-17 16:24:20", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06084.jpg", + "handle": "DSC06084.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00378.jpg", + "width": 1177, + "height": 800, + "orientation": 0, + "taken_at": "2018-02-17 16:44:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00378.jpg", + "handle": "DSC00378.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06045.jpg", + "width": 1200, + "height": 847, + "orientation": 0, + "taken_at": "2018-02-17 16:23:46", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06045.jpg", + "handle": "DSC06045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06086.jpg", + "width": 1200, + "height": 821, + "orientation": 0, + "taken_at": "2018-02-17 16:24:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06086.jpg", + "handle": "DSC06086.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180215_070918.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:34:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180215_070918.jpg", + "handle": "20180215_070918.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.09.21.jpg", + "width": 1199, + "height": 573, + "orientation": 0, + "taken_at": "2018-02-13 10:09:21", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.09.21.jpg", + "handle": "2018-02-13 10.09.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05835.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:46:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05835.jpg", + "handle": "DSC05835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06125.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:27:19", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06125.jpg", + "handle": "DSC06125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00597.jpg", + "width": 1198, + "height": 599, + "orientation": 0, + "taken_at": "2018-02-18 08:18:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00597.jpg", + "handle": "DSC00597.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00596.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 08:11:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00596.jpg", + "handle": "DSC00596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05808.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:01:33", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05808.jpg", + "handle": "DSC05808.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00794.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:51:09", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00794.jpg", + "handle": "DSC00794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.04.48.jpg", + "width": 1200, + "height": 480, + "orientation": 0, + "taken_at": "2018-02-12 16:04:48", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.04.48.jpg", + "handle": "2018-02-12 16.04.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180214_070127.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:34:17", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180214_070127.jpg", + "handle": "20180214_070127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180216_194002.jpg", + "width": 1199, + "height": 693, + "orientation": 0, + "taken_at": "2018-02-16 19:40:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180216_194002.jpg", + "handle": "20180216_194002.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05660.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:16:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05660.jpg", + "handle": "DSC05660.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.01.22.jpg", + "width": 546, + "height": 985, + "orientation": 0, + "taken_at": "2018-02-12 16:01:22", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.01.22.jpg", + "handle": "2018-02-12 16.01.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05729.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:29:47", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05729.jpg", + "handle": "DSC05729.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.11.44.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:11:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.11.44.jpg", + "handle": "2018-02-13 11.11.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05703.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:46:07", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05703.jpg", + "handle": "DSC05703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 17.17.27.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:27", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 17.17.27.jpg", + "handle": "2018-02-12 17.17.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05688.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:32:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05688.jpg", + "handle": "DSC05688.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06154.jpg", + "width": 1200, + "height": 835, + "orientation": 0, + "taken_at": "2018-02-17 16:44:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06154.jpg", + "handle": "DSC06154.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06182.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 07:54:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06182.jpg", + "handle": "DSC06182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05892.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:10:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05892.jpg", + "handle": "DSC05892.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.17.45.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:45", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.17.45.jpg", + "handle": "2018-02-13 10.17.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.00.59.jpg", + "width": 808, + "height": 1200, + "orientation": 90, + "taken_at": "2018-02-12 16:00:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.00.59.jpg", + "handle": "2018-02-12 16.00.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 10.28.58.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 10.28.58.jpg", + "handle": "2018-02-13 10.28.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC00681.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:57:55", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC00681.jpg", + "handle": "DSC00681.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06151.jpg", + "width": 1200, + "height": 807, + "orientation": 0, + "taken_at": "2018-02-17 16:42:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06151.jpg", + "handle": "DSC06151.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06145.jpg", + "width": 1200, + "height": 765, + "orientation": 0, + "taken_at": "2018-02-17 16:42:26", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06145.jpg", + "handle": "DSC06145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.01.18.jpg", + "width": 1199, + "height": 496, + "orientation": 0, + "taken_at": "2018-02-12 16:01:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.01.18.jpg", + "handle": "2018-02-12 16.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-13 11.17.37.jpg", + "width": 551, + "height": 667, + "orientation": 0, + "taken_at": "2018-02-13 11:17:37", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-13 11.17.37.jpg", + "handle": "2018-02-13 11.17.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05854.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:02:24", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05854.jpg", + "handle": "DSC05854.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC05840.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:53:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC05840.jpg", + "handle": "DSC05840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_145219.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:20:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180212_145219.jpg", + "handle": "20180212_145219.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC06018.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:20:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC06018.jpg", + "handle": "DSC06018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-14 18.11.13.jpg", + "width": 1200, + "height": 266, + "orientation": 0, + "taken_at": "2018-02-14 18:11:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-14 18.11.13.jpg", + "handle": "2018-02-14 18.11.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/DSC01359.jpg", + "width": 1200, + "height": 864, + "orientation": 0, + "taken_at": "2018-02-17 16:20:30", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/DSC01359.jpg", + "handle": "DSC01359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_175252.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:10:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180212_175252.jpg", + "handle": "20180212_175252.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 17.17.08.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:08", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 17.17.08.jpg", + "handle": "2018-02-12 17.17.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180212_141929.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:19:29", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180212_141929.jpg", + "handle": "20180212_141929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/2018-02-12 16.56.23.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 16:56:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/2018-02-12 16.56.23.jpg", + "handle": "2018-02-12 16.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-02-laventana/20180217_091648.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:35:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-02-laventana/20180217_091648.jpg", + "handle": "20180217_091648.jpg" + } + ] +} diff --git a/core/data/image-sets/2018-04-sedona.json b/core/data/image-sets/2018-04-sedona.json index f5198a3..4e2df7c 100644 --- a/core/data/image-sets/2018-04-sedona.json +++ b/core/data/image-sets/2018-04-sedona.json @@ -1,1456 +1,1456 @@ { - "2018-04-sedona": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.26.22.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:26:22", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.26.22.jpg", - "handle": "2018-04-09 14.26.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.10.05.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:10:05", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.10.05.jpg", - "handle": "2018-04-10 09.10.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.48.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:22:48", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.48.jpg", - "handle": "2018-04-10 09.22.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 20.13.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 20:13:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 20.13.10.jpg", - "handle": "2018-04-09 20.13.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.41.08.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:41:08", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.41.08.jpg", - "handle": "2018-04-10 12.41.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.28.jpg", - "handle": "2018-04-09 15.11.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.35.jpg", - "handle": "2018-04-10 11.54.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.53.14.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:53:14", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.53.14.jpg", - "handle": "2018-04-10 11.53.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.46.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:46", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.46.jpg", - "handle": "2018-04-09 13.34.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 20.02.41.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 20:02:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 20.02.41.jpg", - "handle": "2018-04-09 20.02.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.50.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.50.jpg", - "handle": "2018-04-08 18.26.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.18.41.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:18:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.18.41.jpg", - "handle": "2018-04-10 13.18.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.57.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.57.jpg", - "handle": "2018-04-10 12.00.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 07.53.54.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 07:53:54", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 07.53.54.jpg", - "handle": "2018-04-10 07.53.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.10.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.10.jpg", - "handle": "2018-04-09 14.15.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.50.58.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:50:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.50.58.jpg", - "handle": "2018-04-09 13.50.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.59.30.jpg", - "width": 1024, - "height": 284, - "orientation": 0, - "taken_at": "2018-04-09 14:59:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.59.30.jpg", - "handle": "2018-04-09 14.59.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.37.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.37.jpg", - "handle": "2018-04-09 16.48.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 19.18.52.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 19.18.52.jpg", - "handle": "2018-04-09 19.18.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.23.jpg", - "handle": "2018-04-10 11.54.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.20.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:20:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.20.55.jpg", - "handle": "2018-04-09 14.20.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.23.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:23:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.23.55.jpg", - "handle": "2018-04-10 08.23.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.19.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:19:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.19.10.jpg", - "handle": "2018-04-10 13.19.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.20.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:20:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.20.09.jpg", - "handle": "2018-04-09 13.20.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.33.49.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:33:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.33.49.jpg", - "handle": "2018-04-09 13.33.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.37.48.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:37:48", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.37.48.jpg", - "handle": "2018-04-09 14.37.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.51.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:51:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.51.20.jpg", - "handle": "2018-04-09 13.51.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.45.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:45", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.45.jpg", - "handle": "2018-04-10 12.00.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 10.03.57.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 10:03:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 10.03.57.jpg", - "handle": "2018-04-10 10.03.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.09.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:09:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.09.59.jpg", - "handle": "2018-04-09 15.09.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.27.01.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:27:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.27.01.jpg", - "handle": "2018-04-08 18.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.58.19.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:58:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.58.19.jpg", - "handle": "2018-04-10 11.58.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.41.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 18:26:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.41.jpg", - "handle": "2018-04-08 18.26.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.06.55.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:06:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.06.55.jpg", - "handle": "2018-04-08 20.06.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.03.14.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:03:14", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.03.14.jpg", - "handle": "2018-04-09 14.03.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.56.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:56", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.56.jpg", - "handle": "2018-04-10 11.54.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.40.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.40.59.jpg", - "handle": "2018-04-09 14.40.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.29.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.29.jpg", - "handle": "2018-04-08 20.07.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.42.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:42", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.42.jpg", - "handle": "2018-04-09 16.48.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.07.34.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:07:34", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.07.34.jpg", - "handle": "2018-04-10 08.07.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.00.41.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:00:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.00.41.jpg", - "handle": "2018-04-10 13.00.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.53.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:53:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.53.18.jpg", - "handle": "2018-04-09 14.53.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.01.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.01.jpg", - "handle": "2018-04-10 12.19.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.08.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:08:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.08.53.jpg", - "handle": "2018-04-08 20.08.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.49.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.49.35.jpg", - "handle": "2018-04-09 15.49.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.00.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:22:00", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.00.jpg", - "handle": "2018-04-10 09.22.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.47.19.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.47.19.jpg", - "handle": "2018-04-09 15.47.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.24.07.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:24:07", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.24.07.jpg", - "handle": "2018-04-10 08.24.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.20.jpg", - "handle": "2018-04-08 18.26.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.40.26.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:40:26", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.40.26.jpg", - "handle": "2018-04-10 08.40.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.23.jpg", - "handle": "2018-04-09 13.34.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.18.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:52:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.18.jpg", - "handle": "2018-04-10 11.52.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.39.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:39", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.39.jpg", - "handle": "2018-04-10 12.19.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.02.33.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:02:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.02.33.jpg", - "handle": "2018-04-10 19.02.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.02.27.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 19:02:27", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.02.27.jpg", - "handle": "2018-04-10 19.02.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.00.40.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:00:40", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.00.40.jpg", - "handle": "2018-04-09 14.00.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.09.42.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:09:42", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.09.42.jpg", - "handle": "2018-04-10 09.09.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.36.38.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:36:38", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.36.38.jpg", - "handle": "2018-04-10 08.36.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.13.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:13:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.13.59.jpg", - "handle": "2018-04-08 20.13.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.33.58.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:33:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.33.58.jpg", - "handle": "2018-04-09 14.33.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.42.09.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:42:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.42.09.jpg", - "handle": "2018-04-10 08.42.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.33.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 11:52:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.33.jpg", - "handle": "2018-04-10 11.52.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.17.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.17.jpg", - "handle": "2018-04-10 12.17.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.41.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:41:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.41.04.jpg", - "handle": "2018-04-09 14.41.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.27.08.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:27:08", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.27.08.jpg", - "handle": "2018-04-09 14.27.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.01.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:01:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.01.18.jpg", - "handle": "2018-04-09 14.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:07:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.20.jpg", - "handle": "2018-04-08 20.07.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.44.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:44:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.44.35.jpg", - "handle": "2018-04-09 14.44.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.44.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:44", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.44.jpg", - "handle": "2018-04-09 14.15.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.46.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:46:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.46.53.jpg", - "handle": "2018-04-09 15.46.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.03.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:03", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.03.jpg", - "handle": "2018-04-10 12.00.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.18.29.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:18:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.18.29.jpg", - "handle": "2018-04-10 13.18.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.03.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:52:03", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.03.jpg", - "handle": "2018-04-10 11.52.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.31.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:31", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.31.jpg", - "handle": "2018-04-10 12.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.55.jpg", - "handle": "2018-04-09 15.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.50.30.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:50:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.50.30.jpg", - "handle": "2018-04-10 12.50.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.37.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.37.jpg", - "handle": "2018-04-08 20.07.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.53.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.53.jpg", - "handle": "2018-04-09 14.15.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.28.jpg", - "handle": "2018-04-10 12.00.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.01.37.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:01:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.01.37.jpg", - "handle": "2018-04-10 13.01.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.23.17.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:23:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.23.17.jpg", - "handle": "2018-04-10 08.23.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.24.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:24", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.24.jpg", - "handle": "2018-04-10 12.17.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.04.58.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:04:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.04.58.jpg", - "handle": "2018-04-10 12.04.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.01.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:01:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.01.33.jpg", - "handle": "2018-04-10 13.01.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.20.02.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:20:02", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.20.02.jpg", - "handle": "2018-04-10 13.20.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.38.37.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:38:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.38.37.jpg", - "handle": "2018-04-10 08.38.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.49.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:49:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.49.28.jpg", - "handle": "2018-04-10 12.49.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.27.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:28:27", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.27.jpg", - "handle": "2018-04-10 08.28.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.40.43.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.40.43.jpg", - "handle": "2018-04-09 14.40.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.49.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.49.04.jpg", - "handle": "2018-04-09 15.49.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.23.jpg", - "handle": "2018-04-10 12.17.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.03.52.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 19:03:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.03.52.jpg", - "handle": "2018-04-10 19.03.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.40.25.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:40:25", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.40.25.jpg", - "handle": "2018-04-09 13.40.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.15.jpg", - "handle": "2018-04-09 13.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.01.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:01:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.01.53.jpg", - "handle": "2018-04-10 12.01.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.59.32.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:59:32", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.59.32.jpg", - "handle": "2018-04-10 11.59.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.33.jpg", - "handle": "2018-04-10 12.19.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 19.18.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 19.18.59.jpg", - "handle": "2018-04-09 19.18.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.43.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:28:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.43.jpg", - "handle": "2018-04-10 08.28.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.52.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.52.jpg", - "handle": "2018-04-10 12.17.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.02.29.jpg", - "width": 1024, - "height": 331, - "orientation": 0, - "taken_at": "2018-04-09 14:02:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.02.29.jpg", - "handle": "2018-04-09 14.02.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 07.05.30.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 07:05:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 07.05.30.jpg", - "handle": "2018-04-10 07.05.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.12.05.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:12:05", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.12.05.jpg", - "handle": "2018-04-09 14.12.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.20.04.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:20:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.20.04.jpg", - "handle": "2018-04-09 13.20.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.04.17.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:04:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.04.17.jpg", - "handle": "2018-04-10 19.04.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.34.15.jpg", - "handle": "2018-04-09 14.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.29.01.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:29:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.29.01.jpg", - "handle": "2018-04-10 08.29.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.58.36.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:58:36", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.58.36.jpg", - "handle": "2018-04-10 12.58.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.57.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.57.jpg", - "handle": "2018-04-10 12.17.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.06.16.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:06:16", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.06.16.jpg", - "handle": "2018-04-10 19.06.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.33.jpg", - "handle": "2018-04-09 15.11.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.04.07.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:04:07", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.04.07.jpg", - "handle": "2018-04-10 19.04.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.12.jpg", - "handle": "2018-04-09 16.48.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 14.52.55.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 14:52:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 14.52.55.jpg", - "handle": "2018-04-10 14.52.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.46.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:46:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.46.10.jpg", - "handle": "2018-04-10 08.46.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.15.47.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:15:47", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.15.47.jpg", - "handle": "2018-04-10 12.15.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.19.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:19:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.19.18.jpg", - "handle": "2018-04-10 13.19.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.34.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:34:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.34.10.jpg", - "handle": "2018-04-09 14.34.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.50.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:22:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.50.jpg", - "handle": "2018-04-10 09.22.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.40.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:40:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.40.55.jpg", - "handle": "2018-04-09 15.40.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.58.57.jpg", - "width": 1024, - "height": 275, - "orientation": 0, - "taken_at": "2018-04-09 14:58:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.58.57.jpg", - "handle": "2018-04-09 14.58.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.14.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:14:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.14.12.jpg", - "handle": "2018-04-08 20.14.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.38.43.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:38:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.38.43.jpg", - "handle": "2018-04-10 08.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.46.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:28:46", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.46.jpg", - "handle": "2018-04-10 08.28.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.44.47.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:44:47", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.44.47.jpg", - "handle": "2018-04-09 14.44.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.01.19.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:01:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.01.19.jpg", - "handle": "2018-04-10 12.01.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.41.26.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:41:26", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.41.26.jpg", - "handle": "2018-04-10 08.41.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.18.44.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:18:44", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.18.44.jpg", - "handle": "2018-04-10 09.18.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.37.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:37:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.37.09.jpg", - "handle": "2018-04-09 15.37.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.47.49.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.47.49.jpg", - "handle": "2018-04-09 15.47.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.58.30.jpg", - "width": 806, - "height": 392, - "orientation": 0, - "taken_at": "2018-04-10 12:58:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.58.30.jpg", - "handle": "2018-04-10 12.58.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.55.50.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 11:55:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.55.50.jpg", - "handle": "2018-04-10 11.55.50.jpg" - } - ] -} \ No newline at end of file + "2018-04-sedona": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.26.22.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:26:22", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.26.22.jpg", + "handle": "2018-04-09 14.26.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.10.05.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:10:05", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.10.05.jpg", + "handle": "2018-04-10 09.10.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.48.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:22:48", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.48.jpg", + "handle": "2018-04-10 09.22.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 20.13.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 20:13:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 20.13.10.jpg", + "handle": "2018-04-09 20.13.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.41.08.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:41:08", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.41.08.jpg", + "handle": "2018-04-10 12.41.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.28.jpg", + "handle": "2018-04-09 15.11.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.35.jpg", + "handle": "2018-04-10 11.54.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.53.14.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:53:14", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.53.14.jpg", + "handle": "2018-04-10 11.53.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.46.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:46", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.46.jpg", + "handle": "2018-04-09 13.34.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 20.02.41.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 20:02:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 20.02.41.jpg", + "handle": "2018-04-09 20.02.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.50.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.50.jpg", + "handle": "2018-04-08 18.26.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.18.41.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:18:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.18.41.jpg", + "handle": "2018-04-10 13.18.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.57.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.57.jpg", + "handle": "2018-04-10 12.00.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 07.53.54.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 07:53:54", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 07.53.54.jpg", + "handle": "2018-04-10 07.53.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.10.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.10.jpg", + "handle": "2018-04-09 14.15.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.50.58.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:50:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.50.58.jpg", + "handle": "2018-04-09 13.50.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.59.30.jpg", + "width": 1024, + "height": 284, + "orientation": 0, + "taken_at": "2018-04-09 14:59:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.59.30.jpg", + "handle": "2018-04-09 14.59.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.37.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.37.jpg", + "handle": "2018-04-09 16.48.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 19.18.52.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 19.18.52.jpg", + "handle": "2018-04-09 19.18.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.23.jpg", + "handle": "2018-04-10 11.54.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.20.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:20:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.20.55.jpg", + "handle": "2018-04-09 14.20.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.23.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:23:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.23.55.jpg", + "handle": "2018-04-10 08.23.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.19.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:19:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.19.10.jpg", + "handle": "2018-04-10 13.19.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.20.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:20:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.20.09.jpg", + "handle": "2018-04-09 13.20.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.33.49.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:33:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.33.49.jpg", + "handle": "2018-04-09 13.33.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.37.48.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:37:48", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.37.48.jpg", + "handle": "2018-04-09 14.37.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.51.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:51:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.51.20.jpg", + "handle": "2018-04-09 13.51.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.45.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:45", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.45.jpg", + "handle": "2018-04-10 12.00.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 10.03.57.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 10:03:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 10.03.57.jpg", + "handle": "2018-04-10 10.03.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.09.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:09:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.09.59.jpg", + "handle": "2018-04-09 15.09.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.27.01.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:27:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.27.01.jpg", + "handle": "2018-04-08 18.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.58.19.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:58:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.58.19.jpg", + "handle": "2018-04-10 11.58.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.41.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 18:26:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.41.jpg", + "handle": "2018-04-08 18.26.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.06.55.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:06:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.06.55.jpg", + "handle": "2018-04-08 20.06.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.03.14.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:03:14", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.03.14.jpg", + "handle": "2018-04-09 14.03.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.54.56.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:56", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.54.56.jpg", + "handle": "2018-04-10 11.54.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.40.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.40.59.jpg", + "handle": "2018-04-09 14.40.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.29.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.29.jpg", + "handle": "2018-04-08 20.07.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.42.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:42", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.42.jpg", + "handle": "2018-04-09 16.48.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.07.34.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:07:34", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.07.34.jpg", + "handle": "2018-04-10 08.07.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.00.41.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:00:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.00.41.jpg", + "handle": "2018-04-10 13.00.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.53.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:53:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.53.18.jpg", + "handle": "2018-04-09 14.53.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.01.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.01.jpg", + "handle": "2018-04-10 12.19.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.08.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:08:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.08.53.jpg", + "handle": "2018-04-08 20.08.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.49.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.49.35.jpg", + "handle": "2018-04-09 15.49.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.00.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:22:00", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.00.jpg", + "handle": "2018-04-10 09.22.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.47.19.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.47.19.jpg", + "handle": "2018-04-09 15.47.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.24.07.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:24:07", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.24.07.jpg", + "handle": "2018-04-10 08.24.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 18.26.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 18.26.20.jpg", + "handle": "2018-04-08 18.26.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.40.26.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:40:26", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.40.26.jpg", + "handle": "2018-04-10 08.40.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.23.jpg", + "handle": "2018-04-09 13.34.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.18.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:52:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.18.jpg", + "handle": "2018-04-10 11.52.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.39.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:39", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.39.jpg", + "handle": "2018-04-10 12.19.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.02.33.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:02:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.02.33.jpg", + "handle": "2018-04-10 19.02.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.02.27.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 19:02:27", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.02.27.jpg", + "handle": "2018-04-10 19.02.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.00.40.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:00:40", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.00.40.jpg", + "handle": "2018-04-09 14.00.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.09.42.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:09:42", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.09.42.jpg", + "handle": "2018-04-10 09.09.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.36.38.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:36:38", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.36.38.jpg", + "handle": "2018-04-10 08.36.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.13.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:13:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.13.59.jpg", + "handle": "2018-04-08 20.13.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.33.58.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:33:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.33.58.jpg", + "handle": "2018-04-09 14.33.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.42.09.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:42:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.42.09.jpg", + "handle": "2018-04-10 08.42.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.33.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 11:52:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.33.jpg", + "handle": "2018-04-10 11.52.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.17.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.17.jpg", + "handle": "2018-04-10 12.17.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.41.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:41:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.41.04.jpg", + "handle": "2018-04-09 14.41.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.27.08.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:27:08", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.27.08.jpg", + "handle": "2018-04-09 14.27.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.01.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:01:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.01.18.jpg", + "handle": "2018-04-09 14.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:07:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.20.jpg", + "handle": "2018-04-08 20.07.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.44.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:44:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.44.35.jpg", + "handle": "2018-04-09 14.44.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.44.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:44", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.44.jpg", + "handle": "2018-04-09 14.15.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.46.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:46:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.46.53.jpg", + "handle": "2018-04-09 15.46.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.03.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:03", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.03.jpg", + "handle": "2018-04-10 12.00.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.18.29.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:18:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.18.29.jpg", + "handle": "2018-04-10 13.18.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.52.03.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:52:03", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.52.03.jpg", + "handle": "2018-04-10 11.52.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.31.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:31", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.31.jpg", + "handle": "2018-04-10 12.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.55.jpg", + "handle": "2018-04-09 15.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.50.30.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:50:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.50.30.jpg", + "handle": "2018-04-10 12.50.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.07.37.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.07.37.jpg", + "handle": "2018-04-08 20.07.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.15.53.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.15.53.jpg", + "handle": "2018-04-09 14.15.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.00.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.00.28.jpg", + "handle": "2018-04-10 12.00.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.01.37.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:01:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.01.37.jpg", + "handle": "2018-04-10 13.01.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.23.17.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:23:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.23.17.jpg", + "handle": "2018-04-10 08.23.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.24.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:24", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.24.jpg", + "handle": "2018-04-10 12.17.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.04.58.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:04:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.04.58.jpg", + "handle": "2018-04-10 12.04.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.01.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:01:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.01.33.jpg", + "handle": "2018-04-10 13.01.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.20.02.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:20:02", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.20.02.jpg", + "handle": "2018-04-10 13.20.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.38.37.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:38:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.38.37.jpg", + "handle": "2018-04-10 08.38.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.49.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:49:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.49.28.jpg", + "handle": "2018-04-10 12.49.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.27.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:28:27", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.27.jpg", + "handle": "2018-04-10 08.28.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.40.43.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.40.43.jpg", + "handle": "2018-04-09 14.40.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.49.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.49.04.jpg", + "handle": "2018-04-09 15.49.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.23.jpg", + "handle": "2018-04-10 12.17.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.03.52.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 19:03:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.03.52.jpg", + "handle": "2018-04-10 19.03.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.40.25.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:40:25", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.40.25.jpg", + "handle": "2018-04-09 13.40.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.34.15.jpg", + "handle": "2018-04-09 13.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.01.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:01:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.01.53.jpg", + "handle": "2018-04-10 12.01.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.59.32.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:59:32", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.59.32.jpg", + "handle": "2018-04-10 11.59.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.19.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.19.33.jpg", + "handle": "2018-04-10 12.19.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 19.18.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 19.18.59.jpg", + "handle": "2018-04-09 19.18.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.43.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:28:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.43.jpg", + "handle": "2018-04-10 08.28.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.52.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.52.jpg", + "handle": "2018-04-10 12.17.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.02.29.jpg", + "width": 1024, + "height": 331, + "orientation": 0, + "taken_at": "2018-04-09 14:02:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.02.29.jpg", + "handle": "2018-04-09 14.02.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 07.05.30.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 07:05:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 07.05.30.jpg", + "handle": "2018-04-10 07.05.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.12.05.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:12:05", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.12.05.jpg", + "handle": "2018-04-09 14.12.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 13.20.04.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:20:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 13.20.04.jpg", + "handle": "2018-04-09 13.20.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.04.17.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:04:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.04.17.jpg", + "handle": "2018-04-10 19.04.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.34.15.jpg", + "handle": "2018-04-09 14.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.29.01.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:29:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.29.01.jpg", + "handle": "2018-04-10 08.29.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.58.36.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:58:36", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.58.36.jpg", + "handle": "2018-04-10 12.58.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.17.57.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.17.57.jpg", + "handle": "2018-04-10 12.17.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.06.16.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:06:16", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.06.16.jpg", + "handle": "2018-04-10 19.06.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.11.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.11.33.jpg", + "handle": "2018-04-09 15.11.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 19.04.07.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:04:07", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 19.04.07.jpg", + "handle": "2018-04-10 19.04.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 16.48.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 16.48.12.jpg", + "handle": "2018-04-09 16.48.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 14.52.55.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 14:52:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 14.52.55.jpg", + "handle": "2018-04-10 14.52.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.46.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:46:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.46.10.jpg", + "handle": "2018-04-10 08.46.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.15.47.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:15:47", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.15.47.jpg", + "handle": "2018-04-10 12.15.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 13.19.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:19:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 13.19.18.jpg", + "handle": "2018-04-10 13.19.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.34.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:34:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.34.10.jpg", + "handle": "2018-04-09 14.34.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.22.50.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:22:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.22.50.jpg", + "handle": "2018-04-10 09.22.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.40.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:40:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.40.55.jpg", + "handle": "2018-04-09 15.40.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.58.57.jpg", + "width": 1024, + "height": 275, + "orientation": 0, + "taken_at": "2018-04-09 14:58:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.58.57.jpg", + "handle": "2018-04-09 14.58.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-08 20.14.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:14:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-08 20.14.12.jpg", + "handle": "2018-04-08 20.14.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.38.43.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:38:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.38.43.jpg", + "handle": "2018-04-10 08.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.28.46.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:28:46", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.28.46.jpg", + "handle": "2018-04-10 08.28.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 14.44.47.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:44:47", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 14.44.47.jpg", + "handle": "2018-04-09 14.44.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.01.19.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:01:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.01.19.jpg", + "handle": "2018-04-10 12.01.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 08.41.26.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:41:26", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 08.41.26.jpg", + "handle": "2018-04-10 08.41.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 09.18.44.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:18:44", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 09.18.44.jpg", + "handle": "2018-04-10 09.18.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.37.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:37:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.37.09.jpg", + "handle": "2018-04-09 15.37.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-09 15.47.49.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-09 15.47.49.jpg", + "handle": "2018-04-09 15.47.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 12.58.30.jpg", + "width": 806, + "height": 392, + "orientation": 0, + "taken_at": "2018-04-10 12:58:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 12.58.30.jpg", + "handle": "2018-04-10 12.58.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-04-sedona/2018-04-10 11.55.50.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 11:55:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/2018-04-sedona/2018-04-10 11.55.50.jpg", + "handle": "2018-04-10 11.55.50.jpg" + } + ] +} diff --git a/core/data/image-sets/2018-10-arno.json b/core/data/image-sets/2018-10-arno.json index f3ec58b..52d138a 100644 --- a/core/data/image-sets/2018-10-arno.json +++ b/core/data/image-sets/2018-10-arno.json @@ -1,2138 +1,2138 @@ { - "2018-10-arno": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0911253de4214c318c5ede0e6cee925b.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0911253de4214c318c5ede0e6cee925b.jpg", - "handle": "0911253de4214c318c5ede0e6cee925b.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/796e8805bb96499a997b71a21fa02be5.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:47:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/796e8805bb96499a997b71a21fa02be5.jpg", - "handle": "796e8805bb96499a997b71a21fa02be5.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e8357b98e2494929adbd50195f147640.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 16:47:14", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e8357b98e2494929adbd50195f147640.jpg", - "handle": "e8357b98e2494929adbd50195f147640.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fbaa87b8d1e04e818d6d8ececd036088.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:42:43", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/fbaa87b8d1e04e818d6d8ececd036088.jpg", - "handle": "fbaa87b8d1e04e818d6d8ececd036088.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e22af6c63437452ea09a926411031f98.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:08:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e22af6c63437452ea09a926411031f98.jpg", - "handle": "e22af6c63437452ea09a926411031f98.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/61bb0b734781473bbed834dbd248e56a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:39:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/61bb0b734781473bbed834dbd248e56a.jpg", - "handle": "61bb0b734781473bbed834dbd248e56a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/57795057750a4be6b66e4282d662166f.jpg", - "width": 1200, - "height": 674, - "orientation": 0, - "taken_at": "2018-10-10 20:14:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/57795057750a4be6b66e4282d662166f.jpg", - "handle": "57795057750a4be6b66e4282d662166f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/47e2e4b0e91249f2be42bbd64c4b1c18.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-11 14:33:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/47e2e4b0e91249f2be42bbd64c4b1c18.jpg", - "handle": "47e2e4b0e91249f2be42bbd64c4b1c18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/33262ed64f36499ea298df999f3423f6.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:44:37", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/33262ed64f36499ea298df999f3423f6.jpg", - "handle": "33262ed64f36499ea298df999f3423f6.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7cbf0b09a2084f4faf8aefc91bfdea25.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:08:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/7cbf0b09a2084f4faf8aefc91bfdea25.jpg", - "handle": "7cbf0b09a2084f4faf8aefc91bfdea25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1b88f2b75e154aa986556dd97d79f892.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 19:49:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1b88f2b75e154aa986556dd97d79f892.jpg", - "handle": "1b88f2b75e154aa986556dd97d79f892.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/34a20be0aea049398d7da466ca50e5cb.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:01:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/34a20be0aea049398d7da466ca50e5cb.jpg", - "handle": "34a20be0aea049398d7da466ca50e5cb.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e533e8c914ed4affb1e589cb16d2aca9.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:39:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e533e8c914ed4affb1e589cb16d2aca9.jpg", - "handle": "e533e8c914ed4affb1e589cb16d2aca9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f4d8ecb5b2a148248e0210835ee64570.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:19:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f4d8ecb5b2a148248e0210835ee64570.jpg", - "handle": "f4d8ecb5b2a148248e0210835ee64570.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:07:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg", - "handle": "fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/82513014a056408f90156da653bd2c3e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:47:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/82513014a056408f90156da653bd2c3e.jpg", - "handle": "82513014a056408f90156da653bd2c3e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/583de00ad7d44eb690f94ca48b027e24.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:07:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/583de00ad7d44eb690f94ca48b027e24.jpg", - "handle": "583de00ad7d44eb690f94ca48b027e24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7e9e35fb04244078a3c34099a4c7c6ee.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:45:18", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/7e9e35fb04244078a3c34099a4c7c6ee.jpg", - "handle": "7e9e35fb04244078a3c34099a4c7c6ee.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f2ea3f600b6040a5a3718923b86edc9a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:41:32", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f2ea3f600b6040a5a3718923b86edc9a.jpg", - "handle": "f2ea3f600b6040a5a3718923b86edc9a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", - "handle": "0a0ad96ecd6c4fea99458cbeff2205aa.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e2649473134a4dd088a443bd7e34966e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:26:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e2649473134a4dd088a443bd7e34966e.jpg", - "handle": "e2649473134a4dd088a443bd7e34966e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/afe8eddebaf34374b5cc7f58361e1ffe.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:42:39", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/afe8eddebaf34374b5cc7f58361e1ffe.jpg", - "handle": "afe8eddebaf34374b5cc7f58361e1ffe.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ee4ab99d22dc466583dc63e1bf3d0468.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:53:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/ee4ab99d22dc466583dc63e1bf3d0468.jpg", - "handle": "ee4ab99d22dc466583dc63e1bf3d0468.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/96529d91997b494b8d5aad273803d483.jpg", - "width": 1200, - "height": 579, - "orientation": 0, - "taken_at": "2018-10-10 12:09:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/96529d91997b494b8d5aad273803d483.jpg", - "handle": "96529d91997b494b8d5aad273803d483.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/93a688f0da094913bec7bd11c49422e4.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 20:32:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/93a688f0da094913bec7bd11c49422e4.jpg", - "handle": "93a688f0da094913bec7bd11c49422e4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/661d20f447e54b58a8a425e65a16ffea.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:07:18", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/661d20f447e54b58a8a425e65a16ffea.jpg", - "handle": "661d20f447e54b58a8a425e65a16ffea.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d6af7de5cfff4622b79b684ba041f5e6.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:47:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/d6af7de5cfff4622b79b684ba041f5e6.jpg", - "handle": "d6af7de5cfff4622b79b684ba041f5e6.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:46:38", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg", - "handle": "9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3da28206c86a464abe2a05e7f7c78fdc.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:35:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3da28206c86a464abe2a05e7f7c78fdc.jpg", - "handle": "3da28206c86a464abe2a05e7f7c78fdc.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/71bdc12de9654ffcb7814be2443e71e2.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:28:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/71bdc12de9654ffcb7814be2443e71e2.jpg", - "handle": "71bdc12de9654ffcb7814be2443e71e2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa572f0626a54c949b71921336994ebb.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 17:01:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/aa572f0626a54c949b71921336994ebb.jpg", - "handle": "aa572f0626a54c949b71921336994ebb.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b33096111fcb48478a30d44b9f6d1e78.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:45:44", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/b33096111fcb48478a30d44b9f6d1e78.jpg", - "handle": "b33096111fcb48478a30d44b9f6d1e78.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0d24eb206c2340d493694967e24c127a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 14:15:28", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0d24eb206c2340d493694967e24c127a.jpg", - "handle": "0d24eb206c2340d493694967e24c127a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5dfbc99f71c340c0a09d7f1a411327ec.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:08:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/5dfbc99f71c340c0a09d7f1a411327ec.jpg", - "handle": "5dfbc99f71c340c0a09d7f1a411327ec.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f99ecb7045bf4067984a412583a4651e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:44:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f99ecb7045bf4067984a412583a4651e.jpg", - "handle": "f99ecb7045bf4067984a412583a4651e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3fc7958294874242bda77b198d4c1d5e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:07:19", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3fc7958294874242bda77b198d4c1d5e.jpg", - "handle": "3fc7958294874242bda77b198d4c1d5e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b372ea5faff846a7b4d69525f43397d5.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 16:30:11", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/b372ea5faff846a7b4d69525f43397d5.jpg", - "handle": "b372ea5faff846a7b4d69525f43397d5.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3637daa3c50848fcab549e005b170076.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:07:37", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3637daa3c50848fcab549e005b170076.jpg", - "handle": "3637daa3c50848fcab549e005b170076.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/879ca521aebd45a7a12d7846f734234a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:46:17", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/879ca521aebd45a7a12d7846f734234a.jpg", - "handle": "879ca521aebd45a7a12d7846f734234a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/862970df3ce74466a5d8d71b9280260d.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:43:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/862970df3ce74466a5d8d71b9280260d.jpg", - "handle": "862970df3ce74466a5d8d71b9280260d.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3a875c0152d54551a7aeafdd661f734a.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:46:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3a875c0152d54551a7aeafdd661f734a.jpg", - "handle": "3a875c0152d54551a7aeafdd661f734a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/eca8ab432ff54ce6bf5838c5f7b315d1.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:29:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/eca8ab432ff54ce6bf5838c5f7b315d1.jpg", - "handle": "eca8ab432ff54ce6bf5838c5f7b315d1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/efce3bb90c994f42a481d6131eccd481.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:32:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/efce3bb90c994f42a481d6131eccd481.jpg", - "handle": "efce3bb90c994f42a481d6131eccd481.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9423f0221e1a48e096a2aeaa0541412f.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:45:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9423f0221e1a48e096a2aeaa0541412f.jpg", - "handle": "9423f0221e1a48e096a2aeaa0541412f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bda40d2cfda34abfabef58f12c008b09.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 10:55:49", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/bda40d2cfda34abfabef58f12c008b09.jpg", - "handle": "bda40d2cfda34abfabef58f12c008b09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9f1beeba5ddc473886361be23bc4e723.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:34:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9f1beeba5ddc473886361be23bc4e723.jpg", - "handle": "9f1beeba5ddc473886361be23bc4e723.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f89ffaae58294ce39e25d2cdc7dc0a12.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:45:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f89ffaae58294ce39e25d2cdc7dc0a12.jpg", - "handle": "f89ffaae58294ce39e25d2cdc7dc0a12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f66dc778472c43a6aa71376409a027ca.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:55:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f66dc778472c43a6aa71376409a027ca.jpg", - "handle": "f66dc778472c43a6aa71376409a027ca.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3db829a5007242efa3338a327b40a664.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:51:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3db829a5007242efa3338a327b40a664.jpg", - "handle": "3db829a5007242efa3338a327b40a664.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/cdc6e31c83404b2b917dd32e8ef5d7d3.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:41:26", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/cdc6e31c83404b2b917dd32e8ef5d7d3.jpg", - "handle": "cdc6e31c83404b2b917dd32e8ef5d7d3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f3320470bf5a456291ffcafbc3a3b026.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:47:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f3320470bf5a456291ffcafbc3a3b026.jpg", - "handle": "f3320470bf5a456291ffcafbc3a3b026.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3b2065c7ae2345c1abb665cb5ac45952.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 12:50:18", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3b2065c7ae2345c1abb665cb5ac45952.jpg", - "handle": "3b2065c7ae2345c1abb665cb5ac45952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/61045aa9cad546aeadf5d8be02801d14.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:01:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/61045aa9cad546aeadf5d8be02801d14.jpg", - "handle": "61045aa9cad546aeadf5d8be02801d14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f1248bf3c10946649073f7995ad2d68c.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:47:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f1248bf3c10946649073f7995ad2d68c.jpg", - "handle": "f1248bf3c10946649073f7995ad2d68c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/276498306b034d4bb2f0bb2d76efad5a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:43:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/276498306b034d4bb2f0bb2d76efad5a.jpg", - "handle": "276498306b034d4bb2f0bb2d76efad5a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c57b60bd35214d9faa7a5c76c83d13fb.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:23:32", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/c57b60bd35214d9faa7a5c76c83d13fb.jpg", - "handle": "c57b60bd35214d9faa7a5c76c83d13fb.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/119dc3cc3ca348bfb9344b02f0a6ecf1.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:27:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/119dc3cc3ca348bfb9344b02f0a6ecf1.jpg", - "handle": "119dc3cc3ca348bfb9344b02f0a6ecf1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/62673543d0e445ccb57045fbc288e299.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:32:38", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/62673543d0e445ccb57045fbc288e299.jpg", - "handle": "62673543d0e445ccb57045fbc288e299.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/749c93d9f41647c3a7cce8d78bf37d66.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/749c93d9f41647c3a7cce8d78bf37d66.jpg", - "handle": "749c93d9f41647c3a7cce8d78bf37d66.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/cbb53dc35fdf4a92ae9494aaad102da7.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:08:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/cbb53dc35fdf4a92ae9494aaad102da7.jpg", - "handle": "cbb53dc35fdf4a92ae9494aaad102da7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6982753a323649549d7e8955bd808bae.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 20:28:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/6982753a323649549d7e8955bd808bae.jpg", - "handle": "6982753a323649549d7e8955bd808bae.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/74f4898bf4cc442895f85cda71759e51.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:44:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/74f4898bf4cc442895f85cda71759e51.jpg", - "handle": "74f4898bf4cc442895f85cda71759e51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a77f7940fc714ae7ad9ffffe20f83ca1.jpg", - "width": 500, - "height": 1200, - "orientation": 0, - "taken_at": "2018-10-11 14:06:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a77f7940fc714ae7ad9ffffe20f83ca1.jpg", - "handle": "a77f7940fc714ae7ad9ffffe20f83ca1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f156d30470234b04ba1ab31e17f10a73.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:46:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f156d30470234b04ba1ab31e17f10a73.jpg", - "handle": "f156d30470234b04ba1ab31e17f10a73.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f0d6c0e9354d44ad8cbe06326db2ebc1.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:45:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/f0d6c0e9354d44ad8cbe06326db2ebc1.jpg", - "handle": "f0d6c0e9354d44ad8cbe06326db2ebc1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6d529121e06242dc9bbf29567f0703e0.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 13:27:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/6d529121e06242dc9bbf29567f0703e0.jpg", - "handle": "6d529121e06242dc9bbf29567f0703e0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3a44dac1a72b4a3ab27d516bbc273c66.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 12:42:00", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3a44dac1a72b4a3ab27d516bbc273c66.jpg", - "handle": "3a44dac1a72b4a3ab27d516bbc273c66.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/46c0b9c1f8974291b733f5f55801582d.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:08:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/46c0b9c1f8974291b733f5f55801582d.jpg", - "handle": "46c0b9c1f8974291b733f5f55801582d.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2c9bdcdf190840b6a11297c9269e3ce1.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:10:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2c9bdcdf190840b6a11297c9269e3ce1.jpg", - "handle": "2c9bdcdf190840b6a11297c9269e3ce1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ee3e066e21ce44f28f9f5e3266d325ee.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:28:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/ee3e066e21ce44f28f9f5e3266d325ee.jpg", - "handle": "ee3e066e21ce44f28f9f5e3266d325ee.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4afc13934e0f4c66b67f3e3257c6876d.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:47:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4afc13934e0f4c66b67f3e3257c6876d.jpg", - "handle": "4afc13934e0f4c66b67f3e3257c6876d.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5b4d65e04b12443297d8447527f9ca57.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:39:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/5b4d65e04b12443297d8447527f9ca57.jpg", - "handle": "5b4d65e04b12443297d8447527f9ca57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2b2277070ad84404a28809ed535993b7.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 13:27:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2b2277070ad84404a28809ed535993b7.jpg", - "handle": "2b2277070ad84404a28809ed535993b7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/604c6a97a8c24c80b42b7d9c436609dd.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:44:57", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/604c6a97a8c24c80b42b7d9c436609dd.jpg", - "handle": "604c6a97a8c24c80b42b7d9c436609dd.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ad2c1df6be86462bb69ff71e67dd49a1.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:07:37", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/ad2c1df6be86462bb69ff71e67dd49a1.jpg", - "handle": "ad2c1df6be86462bb69ff71e67dd49a1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ca79b01fc294476284036d12037f84d5.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 14:14:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/ca79b01fc294476284036d12037f84d5.jpg", - "handle": "ca79b01fc294476284036d12037f84d5.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/20441e891e6e4c70810f78f38a4eb9b4.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 10:51:57", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/20441e891e6e4c70810f78f38a4eb9b4.jpg", - "handle": "20441e891e6e4c70810f78f38a4eb9b4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/52ec276961dd466a91ebeb7a4a9346a0.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 10:33:29", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/52ec276961dd466a91ebeb7a4a9346a0.jpg", - "handle": "52ec276961dd466a91ebeb7a4a9346a0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/43e6e71469c84e0ba05dedef86c83de9.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:31:39", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/43e6e71469c84e0ba05dedef86c83de9.jpg", - "handle": "43e6e71469c84e0ba05dedef86c83de9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5f820198b5364b2db3a416d0883dffa3.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:10:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/5f820198b5364b2db3a416d0883dffa3.jpg", - "handle": "5f820198b5364b2db3a416d0883dffa3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4c5eed1aaa94427983aa9d26429d6db9.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4c5eed1aaa94427983aa9d26429d6db9.jpg", - "handle": "4c5eed1aaa94427983aa9d26429d6db9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b22e6722d83a43299a2bb05a2094051d.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:50:28", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/b22e6722d83a43299a2bb05a2094051d.jpg", - "handle": "b22e6722d83a43299a2bb05a2094051d.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fc04c7ba642e4e7f86dc9e3c4053a194.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:54:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/fc04c7ba642e4e7f86dc9e3c4053a194.jpg", - "handle": "fc04c7ba642e4e7f86dc9e3c4053a194.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/11481a4a28b54dcdbcdc9d386d65b188.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:42:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/11481a4a28b54dcdbcdc9d386d65b188.jpg", - "handle": "11481a4a28b54dcdbcdc9d386d65b188.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3155e7dc2ef34b849de2916d4141dc68.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:13:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3155e7dc2ef34b849de2916d4141dc68.jpg", - "handle": "3155e7dc2ef34b849de2916d4141dc68.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/76056ed13efb4e1c8e878d9ccac40b78.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:11:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/76056ed13efb4e1c8e878d9ccac40b78.jpg", - "handle": "76056ed13efb4e1c8e878d9ccac40b78.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa13ed94578d4162b8ca8d2e8b3fc695.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:56:02", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/aa13ed94578d4162b8ca8d2e8b3fc695.jpg", - "handle": "aa13ed94578d4162b8ca8d2e8b3fc695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4cade4ee4ba7484a807265680e221ca3.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4cade4ee4ba7484a807265680e221ca3.jpg", - "handle": "4cade4ee4ba7484a807265680e221ca3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/31a5164c5d7d4f8ab82642f89973742e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:46:00", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/31a5164c5d7d4f8ab82642f89973742e.jpg", - "handle": "31a5164c5d7d4f8ab82642f89973742e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c6c6f515a3c14114875ebba4d0f598b7.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:43:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/c6c6f515a3c14114875ebba4d0f598b7.jpg", - "handle": "c6c6f515a3c14114875ebba4d0f598b7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/821332fde647469186dd060234d50dc2.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 16:24:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/821332fde647469186dd060234d50dc2.jpg", - "handle": "821332fde647469186dd060234d50dc2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/60e526ada15b41eba91eb65d460bf2ad.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:36:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/60e526ada15b41eba91eb65d460bf2ad.jpg", - "handle": "60e526ada15b41eba91eb65d460bf2ad.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/092c5569f3e74737964ae48841edd4b8.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:19:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/092c5569f3e74737964ae48841edd4b8.jpg", - "handle": "092c5569f3e74737964ae48841edd4b8.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5331f3f155444aadbeb43829a3ad1563.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:13:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/5331f3f155444aadbeb43829a3ad1563.jpg", - "handle": "5331f3f155444aadbeb43829a3ad1563.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d0103dca7f0f4744bfe1a0c8c8ec1224.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 16:52:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/d0103dca7f0f4744bfe1a0c8c8ec1224.jpg", - "handle": "d0103dca7f0f4744bfe1a0c8c8ec1224.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c10cbe5d3b814c8c8319a7c8cb53b248.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:56:02", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/c10cbe5d3b814c8c8319a7c8cb53b248.jpg", - "handle": "c10cbe5d3b814c8c8319a7c8cb53b248.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/276ec1b2f7cb4319933ccb68c386808f.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:26:37", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/276ec1b2f7cb4319933ccb68c386808f.jpg", - "handle": "276ec1b2f7cb4319933ccb68c386808f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3007e72f09a440dda45365a2d81bfeac.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 17:08:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3007e72f09a440dda45365a2d81bfeac.jpg", - "handle": "3007e72f09a440dda45365a2d81bfeac.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0ad2395a550b4995882933c83ad3925f.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:07:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0ad2395a550b4995882933c83ad3925f.jpg", - "handle": "0ad2395a550b4995882933c83ad3925f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7e02e58c7bc84068a369e0fc7d589610.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 19:48:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/7e02e58c7bc84068a369e0fc7d589610.jpg", - "handle": "7e02e58c7bc84068a369e0fc7d589610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/79241f58e296424fb9d405177c685d69.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 14:30:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/79241f58e296424fb9d405177c685d69.jpg", - "handle": "79241f58e296424fb9d405177c685d69.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/04235651b2c542939213c1b4c7f3e5b6.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 16:48:09", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/04235651b2c542939213c1b4c7f3e5b6.jpg", - "handle": "04235651b2c542939213c1b4c7f3e5b6.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/610587fae32b42c2a7e416e189f216cf.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:37:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/610587fae32b42c2a7e416e189f216cf.jpg", - "handle": "610587fae32b42c2a7e416e189f216cf.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/55eba2611636473d81163cd78b7ae39c.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:44:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/55eba2611636473d81163cd78b7ae39c.jpg", - "handle": "55eba2611636473d81163cd78b7ae39c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e49b18d96f8249359dde586d47db440b.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:47:03", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e49b18d96f8249359dde586d47db440b.jpg", - "handle": "e49b18d96f8249359dde586d47db440b.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d0728ecb37514bd4a4098917f1873d32.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:45:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/d0728ecb37514bd4a4098917f1873d32.jpg", - "handle": "d0728ecb37514bd4a4098917f1873d32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:14:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", - "handle": "0fc25a17b7bc4d4db9ab46d416c0a18e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e4d9373c1e14431386a8eb324e497763.jpg", - "width": 1200, - "height": 674, - "orientation": 0, - "taken_at": "2018-10-10 19:59:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e4d9373c1e14431386a8eb324e497763.jpg", - "handle": "e4d9373c1e14431386a8eb324e497763.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:01:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg", - "handle": "bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6ea5632862bd48a69b2b4242a0a39771.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:08:00", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/6ea5632862bd48a69b2b4242a0a39771.jpg", - "handle": "6ea5632862bd48a69b2b4242a0a39771.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e95a1f6dfff547c2b08aab845d1723c2.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:36:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e95a1f6dfff547c2b08aab845d1723c2.jpg", - "handle": "e95a1f6dfff547c2b08aab845d1723c2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/98872c66c7d44ba78319178c8d4a51c5.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:41:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/98872c66c7d44ba78319178c8d4a51c5.jpg", - "handle": "98872c66c7d44ba78319178c8d4a51c5.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/41ef70ee942047de9e51a75359639195.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/41ef70ee942047de9e51a75359639195.jpg", - "handle": "41ef70ee942047de9e51a75359639195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 18:24:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg", - "handle": "fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/45f4b5817a3b42e1baeac4791faef38a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:43:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/45f4b5817a3b42e1baeac4791faef38a.jpg", - "handle": "45f4b5817a3b42e1baeac4791faef38a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/370d555cb6524fbfbedaae2a1c677f65.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:49:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/370d555cb6524fbfbedaae2a1c677f65.jpg", - "handle": "370d555cb6524fbfbedaae2a1c677f65.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/252aad5ac2c74fbaba6ee66fe81c3f5b.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 10:38:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/252aad5ac2c74fbaba6ee66fe81c3f5b.jpg", - "handle": "252aad5ac2c74fbaba6ee66fe81c3f5b.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/35555398b8c24868b2441a0ab65e02a8.jpg", - "width": 500, - "height": 1200, - "orientation": 0, - "taken_at": "2018-10-12 16:34:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/35555398b8c24868b2441a0ab65e02a8.jpg", - "handle": "35555398b8c24868b2441a0ab65e02a8.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2f9b81ea174943ff8370f7a97b77f3a4.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:08:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2f9b81ea174943ff8370f7a97b77f3a4.jpg", - "handle": "2f9b81ea174943ff8370f7a97b77f3a4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/46625e5a0bea446a8ebd6601635ebe7a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 16:45:25", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/46625e5a0bea446a8ebd6601635ebe7a.jpg", - "handle": "46625e5a0bea446a8ebd6601635ebe7a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/56fa65d0483c4d878b1ec86afbc1701c.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:47:47", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/56fa65d0483c4d878b1ec86afbc1701c.jpg", - "handle": "56fa65d0483c4d878b1ec86afbc1701c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/95c6831c037b4780a5fcf0d1fab40995.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:41:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/95c6831c037b4780a5fcf0d1fab40995.jpg", - "handle": "95c6831c037b4780a5fcf0d1fab40995.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2ffe925ead354f99b8ec9118747f55d6.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 15:56:17", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2ffe925ead354f99b8ec9118747f55d6.jpg", - "handle": "2ffe925ead354f99b8ec9118747f55d6.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/df6040157f334db29b84de3f0dfcbfb0.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 16:24:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/df6040157f334db29b84de3f0dfcbfb0.jpg", - "handle": "df6040157f334db29b84de3f0dfcbfb0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/59c966d422b44e1bb247259661e5e26c.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 14:15:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/59c966d422b44e1bb247259661e5e26c.jpg", - "handle": "59c966d422b44e1bb247259661e5e26c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a4492d6f05fa4b39b037e94bcf55c7db.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:56:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a4492d6f05fa4b39b037e94bcf55c7db.jpg", - "handle": "a4492d6f05fa4b39b037e94bcf55c7db.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/db50aa8b7dbe42af8a7d6679c22b9e34.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:29:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/db50aa8b7dbe42af8a7d6679c22b9e34.jpg", - "handle": "db50aa8b7dbe42af8a7d6679c22b9e34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/29e7bb138cf24faabd5b075566a78216.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 20:32:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/29e7bb138cf24faabd5b075566a78216.jpg", - "handle": "29e7bb138cf24faabd5b075566a78216.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/716b29a41d5f471f8adf1a0fb6596495.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:17:43", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/716b29a41d5f471f8adf1a0fb6596495.jpg", - "handle": "716b29a41d5f471f8adf1a0fb6596495.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c5c096a85ea14ee2ac6ea25f801301af.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:08:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/c5c096a85ea14ee2ac6ea25f801301af.jpg", - "handle": "c5c096a85ea14ee2ac6ea25f801301af.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a6ee0c927bb84b509f6e50449804d746.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:48:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a6ee0c927bb84b509f6e50449804d746.jpg", - "handle": "a6ee0c927bb84b509f6e50449804d746.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/76d9a2d797a14763a614346791055bef.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:13:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/76d9a2d797a14763a614346791055bef.jpg", - "handle": "76d9a2d797a14763a614346791055bef.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4cc343322a904fd88c7b5f6a1769b687.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:47:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4cc343322a904fd88c7b5f6a1769b687.jpg", - "handle": "4cc343322a904fd88c7b5f6a1769b687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/873f54c066da424194df8906a0490c22.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/873f54c066da424194df8906a0490c22.jpg", - "handle": "873f54c066da424194df8906a0490c22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9b6b310598044b59a5ae02e7efb5a4ef.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 14:10:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9b6b310598044b59a5ae02e7efb5a4ef.jpg", - "handle": "9b6b310598044b59a5ae02e7efb5a4ef.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/12f9ac93ca7c44e19b6307a37661aa1f.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 14:10:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/12f9ac93ca7c44e19b6307a37661aa1f.jpg", - "handle": "12f9ac93ca7c44e19b6307a37661aa1f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5ae8b59b81054e2180e2a0058dacd10a.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/5ae8b59b81054e2180e2a0058dacd10a.jpg", - "handle": "5ae8b59b81054e2180e2a0058dacd10a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/30b9dafb5e84421989f30a587e1b3821.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:07:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/30b9dafb5e84421989f30a587e1b3821.jpg", - "handle": "30b9dafb5e84421989f30a587e1b3821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e0b2f0c0855f42b790b715d94d7058bd.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/e0b2f0c0855f42b790b715d94d7058bd.jpg", - "handle": "e0b2f0c0855f42b790b715d94d7058bd.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/92303e9d8ed34f47bced15bea8bce358.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:37:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/92303e9d8ed34f47bced15bea8bce358.jpg", - "handle": "92303e9d8ed34f47bced15bea8bce358.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fa116a1f46d542df96d0d190dacbe089.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 14:14:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/fa116a1f46d542df96d0d190dacbe089.jpg", - "handle": "fa116a1f46d542df96d0d190dacbe089.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9507bd8aa5d44dc984cd953f1f7eec37.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:35:26", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9507bd8aa5d44dc984cd953f1f7eec37.jpg", - "handle": "9507bd8aa5d44dc984cd953f1f7eec37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2b47b9cb60944a69b8d9a44f49e0246e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:55:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2b47b9cb60944a69b8d9a44f49e0246e.jpg", - "handle": "2b47b9cb60944a69b8d9a44f49e0246e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/51ccbc2758c543a492d909adaad67175.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:43:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/51ccbc2758c543a492d909adaad67175.jpg", - "handle": "51ccbc2758c543a492d909adaad67175.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/17efa692038a4b209dacee398dc09fe0.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:41:32", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/17efa692038a4b209dacee398dc09fe0.jpg", - "handle": "17efa692038a4b209dacee398dc09fe0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a81929270ac547d08970f335cb9f53fd.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:26:24", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a81929270ac547d08970f335cb9f53fd.jpg", - "handle": "a81929270ac547d08970f335cb9f53fd.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/88ecbc2463424b7ab91af95698d46325.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 16:52:47", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/88ecbc2463424b7ab91af95698d46325.jpg", - "handle": "88ecbc2463424b7ab91af95698d46325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/21b4559b256c4d259f0d26395f239729.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:57:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/21b4559b256c4d259f0d26395f239729.jpg", - "handle": "21b4559b256c4d259f0d26395f239729.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a74378f9e5b74fda9d64d8c1f90bccd0.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:35:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a74378f9e5b74fda9d64d8c1f90bccd0.jpg", - "handle": "a74378f9e5b74fda9d64d8c1f90bccd0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6c0fb586345846799db3c737fffe3322.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:42:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/6c0fb586345846799db3c737fffe3322.jpg", - "handle": "6c0fb586345846799db3c737fffe3322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1016a87b1b39437d97fcf7709adf4497.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1016a87b1b39437d97fcf7709adf4497.jpg", - "handle": "1016a87b1b39437d97fcf7709adf4497.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bd27ccdb5d4f4424818ad0e5802a83c9.jpg", - "width": 500, - "height": 1200, - "orientation": 0, - "taken_at": "2018-10-12 16:34:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/bd27ccdb5d4f4424818ad0e5802a83c9.jpg", - "handle": "bd27ccdb5d4f4424818ad0e5802a83c9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/09e5378b079d4679984baf5b0fbdeb90.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 19:01:25", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/09e5378b079d4679984baf5b0fbdeb90.jpg", - "handle": "09e5378b079d4679984baf5b0fbdeb90.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/284434982b714c74b08beadfee31c49b.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:19:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/284434982b714c74b08beadfee31c49b.jpg", - "handle": "284434982b714c74b08beadfee31c49b.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/015243009630442e8df05e686ef46266.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 12:40:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/015243009630442e8df05e686ef46266.jpg", - "handle": "015243009630442e8df05e686ef46266.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2a5a34cc6a4146d6952796012283dad2.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:47:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2a5a34cc6a4146d6952796012283dad2.jpg", - "handle": "2a5a34cc6a4146d6952796012283dad2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0c436d77385f495690654d43b2e5eb24.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:32:29", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0c436d77385f495690654d43b2e5eb24.jpg", - "handle": "0c436d77385f495690654d43b2e5eb24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/37cf6d342a0444129eb1334b16b531ea.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:44:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/37cf6d342a0444129eb1334b16b531ea.jpg", - "handle": "37cf6d342a0444129eb1334b16b531ea.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3ac6c244fbbe425da4be0615be87c6c3.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-11 14:33:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3ac6c244fbbe425da4be0615be87c6c3.jpg", - "handle": "3ac6c244fbbe425da4be0615be87c6c3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/03c4ba06d9544d718182d545d2c091d0.jpg", - "width": 1200, - "height": 674, - "orientation": 0, - "taken_at": "2018-10-10 20:14:47", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/03c4ba06d9544d718182d545d2c091d0.jpg", - "handle": "03c4ba06d9544d718182d545d2c091d0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2fb74866c5cc46fab8cd366a70a48b73.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 15:41:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/2fb74866c5cc46fab8cd366a70a48b73.jpg", - "handle": "2fb74866c5cc46fab8cd366a70a48b73.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/96fde308031646f58d3e26432dde51c9.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:46:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/96fde308031646f58d3e26432dde51c9.jpg", - "handle": "96fde308031646f58d3e26432dde51c9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9e317a133959488681032331161e3d8a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 16:46:47", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9e317a133959488681032331161e3d8a.jpg", - "handle": "9e317a133959488681032331161e3d8a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8627eb485bf84bb8bf8a08b12aadd996.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:46:01", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/8627eb485bf84bb8bf8a08b12aadd996.jpg", - "handle": "8627eb485bf84bb8bf8a08b12aadd996.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/64f1c9f649374731a0419e106846f0f4.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:35:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/64f1c9f649374731a0419e106846f0f4.jpg", - "handle": "64f1c9f649374731a0419e106846f0f4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/99e36c44cdf54104a2a664dc17e57895.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 16:35:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/99e36c44cdf54104a2a664dc17e57895.jpg", - "handle": "99e36c44cdf54104a2a664dc17e57895.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8cea490b37774b0781a7593eac1007f7.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 12:41:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/8cea490b37774b0781a7593eac1007f7.jpg", - "handle": "8cea490b37774b0781a7593eac1007f7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/557ab1b343304d02bda26a719dcc5e1e.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 17:04:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/557ab1b343304d02bda26a719dcc5e1e.jpg", - "handle": "557ab1b343304d02bda26a719dcc5e1e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a8c79b23b639491293b10d9972e5cd08.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 15:11:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a8c79b23b639491293b10d9972e5cd08.jpg", - "handle": "a8c79b23b639491293b10d9972e5cd08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1cb7e311f4f14ef383969959677e626e.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:15:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1cb7e311f4f14ef383969959677e626e.jpg", - "handle": "1cb7e311f4f14ef383969959677e626e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3d90ea859f8d40eebdc30a33e3421389.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-11 16:15:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3d90ea859f8d40eebdc30a33e3421389.jpg", - "handle": "3d90ea859f8d40eebdc30a33e3421389.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d64e5950e9f24d908164d0d30ba351db.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:19:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/d64e5950e9f24d908164d0d30ba351db.jpg", - "handle": "d64e5950e9f24d908164d0d30ba351db.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a6d4743e50474608acd045a42f2f51fd.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 13:26:15", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a6d4743e50474608acd045a42f2f51fd.jpg", - "handle": "a6d4743e50474608acd045a42f2f51fd.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/edfaf90d630245c6b3f248ab4cb195b0.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 10:37:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/edfaf90d630245c6b3f248ab4cb195b0.jpg", - "handle": "edfaf90d630245c6b3f248ab4cb195b0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8303500acdb6477c846d7276a5d853be.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 17:08:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/8303500acdb6477c846d7276a5d853be.jpg", - "handle": "8303500acdb6477c846d7276a5d853be.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:43:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", - "handle": "3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1baa005e07454acebdcc98e870a631f1.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:39:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1baa005e07454acebdcc98e870a631f1.jpg", - "handle": "1baa005e07454acebdcc98e870a631f1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/926f6a4f71244958b472986a0b24363c.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:49:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/926f6a4f71244958b472986a0b24363c.jpg", - "handle": "926f6a4f71244958b472986a0b24363c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0fc2f67adef44881b29ff09b8889891a.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:22:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0fc2f67adef44881b29ff09b8889891a.jpg", - "handle": "0fc2f67adef44881b29ff09b8889891a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1e5b988e96ee42448d7a123fd623730a.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 10:55:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1e5b988e96ee42448d7a123fd623730a.jpg", - "handle": "1e5b988e96ee42448d7a123fd623730a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/432aa467c5164286b39a63abf7c788db.jpg", - "width": 1200, - "height": 579, - "orientation": 0, - "taken_at": "2018-10-10 12:09:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/432aa467c5164286b39a63abf7c788db.jpg", - "handle": "432aa467c5164286b39a63abf7c788db.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa00bf35b8d04a79ae73f4daef9b77cd.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:26:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/aa00bf35b8d04a79ae73f4daef9b77cd.jpg", - "handle": "aa00bf35b8d04a79ae73f4daef9b77cd.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0c86a91b209b4d81b03449bacdfcf8fc.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 12:40:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/0c86a91b209b4d81b03449bacdfcf8fc.jpg", - "handle": "0c86a91b209b4d81b03449bacdfcf8fc.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4165f084989b44e0952af7b104c2a43c.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 13:03:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4165f084989b44e0952af7b104c2a43c.jpg", - "handle": "4165f084989b44e0952af7b104c2a43c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9c542545a91a4526b71de853a46a99c8.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-12 16:32:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/9c542545a91a4526b71de853a46a99c8.jpg", - "handle": "9c542545a91a4526b71de853a46a99c8.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/533cdf99fe774f1aac2e0b19f4db3bfc.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:54:20", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/533cdf99fe774f1aac2e0b19f4db3bfc.jpg", - "handle": "533cdf99fe774f1aac2e0b19f4db3bfc.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:14:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg", - "handle": "aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3ef75635fea049239910eaeef3879765.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3ef75635fea049239910eaeef3879765.jpg", - "handle": "3ef75635fea049239910eaeef3879765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/70e28356c6204fb980dfbbcfd7074c71.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 13:20:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/70e28356c6204fb980dfbbcfd7074c71.jpg", - "handle": "70e28356c6204fb980dfbbcfd7074c71.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b00e2e0a59e9424db5e98231849032de.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:08:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/b00e2e0a59e9424db5e98231849032de.jpg", - "handle": "b00e2e0a59e9424db5e98231849032de.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a5050d6e859a4e88af65dcb1c29245a4.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:37:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/a5050d6e859a4e88af65dcb1c29245a4.jpg", - "handle": "a5050d6e859a4e88af65dcb1c29245a4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:42:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", - "handle": "1ee95f9b7a854fc9afea3581c3ca3bd3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4382a8dafc7840e885ad9ab4e3b6f45c.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 11:25:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/4382a8dafc7840e885ad9ab4e3b6f45c.jpg", - "handle": "4382a8dafc7840e885ad9ab4e3b6f45c.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3d3f907e1d76489084e871986a590474.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:54:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/2018-10-arno/3d3f907e1d76489084e871986a590474.jpg", - "handle": "3d3f907e1d76489084e871986a590474.jpg" - } - ] -} \ No newline at end of file + "2018-10-arno": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0911253de4214c318c5ede0e6cee925b.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0911253de4214c318c5ede0e6cee925b.jpg", + "handle": "0911253de4214c318c5ede0e6cee925b.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/796e8805bb96499a997b71a21fa02be5.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:47:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/796e8805bb96499a997b71a21fa02be5.jpg", + "handle": "796e8805bb96499a997b71a21fa02be5.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e8357b98e2494929adbd50195f147640.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 16:47:14", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e8357b98e2494929adbd50195f147640.jpg", + "handle": "e8357b98e2494929adbd50195f147640.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fbaa87b8d1e04e818d6d8ececd036088.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:42:43", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/fbaa87b8d1e04e818d6d8ececd036088.jpg", + "handle": "fbaa87b8d1e04e818d6d8ececd036088.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e22af6c63437452ea09a926411031f98.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:08:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e22af6c63437452ea09a926411031f98.jpg", + "handle": "e22af6c63437452ea09a926411031f98.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/61bb0b734781473bbed834dbd248e56a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:39:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/61bb0b734781473bbed834dbd248e56a.jpg", + "handle": "61bb0b734781473bbed834dbd248e56a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/57795057750a4be6b66e4282d662166f.jpg", + "width": 1200, + "height": 674, + "orientation": 0, + "taken_at": "2018-10-10 20:14:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/57795057750a4be6b66e4282d662166f.jpg", + "handle": "57795057750a4be6b66e4282d662166f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/47e2e4b0e91249f2be42bbd64c4b1c18.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-11 14:33:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/47e2e4b0e91249f2be42bbd64c4b1c18.jpg", + "handle": "47e2e4b0e91249f2be42bbd64c4b1c18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/33262ed64f36499ea298df999f3423f6.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:44:37", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/33262ed64f36499ea298df999f3423f6.jpg", + "handle": "33262ed64f36499ea298df999f3423f6.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7cbf0b09a2084f4faf8aefc91bfdea25.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:08:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/7cbf0b09a2084f4faf8aefc91bfdea25.jpg", + "handle": "7cbf0b09a2084f4faf8aefc91bfdea25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1b88f2b75e154aa986556dd97d79f892.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 19:49:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1b88f2b75e154aa986556dd97d79f892.jpg", + "handle": "1b88f2b75e154aa986556dd97d79f892.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/34a20be0aea049398d7da466ca50e5cb.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:01:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/34a20be0aea049398d7da466ca50e5cb.jpg", + "handle": "34a20be0aea049398d7da466ca50e5cb.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e533e8c914ed4affb1e589cb16d2aca9.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:39:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e533e8c914ed4affb1e589cb16d2aca9.jpg", + "handle": "e533e8c914ed4affb1e589cb16d2aca9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f4d8ecb5b2a148248e0210835ee64570.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:19:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f4d8ecb5b2a148248e0210835ee64570.jpg", + "handle": "f4d8ecb5b2a148248e0210835ee64570.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:07:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg", + "handle": "fe1ca9d6a0fe4bcab3d8d5b9f21eadb4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/82513014a056408f90156da653bd2c3e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:47:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/82513014a056408f90156da653bd2c3e.jpg", + "handle": "82513014a056408f90156da653bd2c3e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/583de00ad7d44eb690f94ca48b027e24.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:07:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/583de00ad7d44eb690f94ca48b027e24.jpg", + "handle": "583de00ad7d44eb690f94ca48b027e24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7e9e35fb04244078a3c34099a4c7c6ee.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:45:18", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/7e9e35fb04244078a3c34099a4c7c6ee.jpg", + "handle": "7e9e35fb04244078a3c34099a4c7c6ee.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f2ea3f600b6040a5a3718923b86edc9a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:41:32", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f2ea3f600b6040a5a3718923b86edc9a.jpg", + "handle": "f2ea3f600b6040a5a3718923b86edc9a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", + "handle": "0a0ad96ecd6c4fea99458cbeff2205aa.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e2649473134a4dd088a443bd7e34966e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:26:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e2649473134a4dd088a443bd7e34966e.jpg", + "handle": "e2649473134a4dd088a443bd7e34966e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/afe8eddebaf34374b5cc7f58361e1ffe.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:42:39", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/afe8eddebaf34374b5cc7f58361e1ffe.jpg", + "handle": "afe8eddebaf34374b5cc7f58361e1ffe.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ee4ab99d22dc466583dc63e1bf3d0468.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:53:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/ee4ab99d22dc466583dc63e1bf3d0468.jpg", + "handle": "ee4ab99d22dc466583dc63e1bf3d0468.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/96529d91997b494b8d5aad273803d483.jpg", + "width": 1200, + "height": 579, + "orientation": 0, + "taken_at": "2018-10-10 12:09:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/96529d91997b494b8d5aad273803d483.jpg", + "handle": "96529d91997b494b8d5aad273803d483.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/93a688f0da094913bec7bd11c49422e4.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 20:32:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/93a688f0da094913bec7bd11c49422e4.jpg", + "handle": "93a688f0da094913bec7bd11c49422e4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/661d20f447e54b58a8a425e65a16ffea.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:07:18", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/661d20f447e54b58a8a425e65a16ffea.jpg", + "handle": "661d20f447e54b58a8a425e65a16ffea.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d6af7de5cfff4622b79b684ba041f5e6.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:47:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/d6af7de5cfff4622b79b684ba041f5e6.jpg", + "handle": "d6af7de5cfff4622b79b684ba041f5e6.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:46:38", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg", + "handle": "9f33b0d1fb9a4f1aa5d5045cea0052b4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3da28206c86a464abe2a05e7f7c78fdc.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:35:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3da28206c86a464abe2a05e7f7c78fdc.jpg", + "handle": "3da28206c86a464abe2a05e7f7c78fdc.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/71bdc12de9654ffcb7814be2443e71e2.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:28:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/71bdc12de9654ffcb7814be2443e71e2.jpg", + "handle": "71bdc12de9654ffcb7814be2443e71e2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa572f0626a54c949b71921336994ebb.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 17:01:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/aa572f0626a54c949b71921336994ebb.jpg", + "handle": "aa572f0626a54c949b71921336994ebb.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b33096111fcb48478a30d44b9f6d1e78.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:45:44", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/b33096111fcb48478a30d44b9f6d1e78.jpg", + "handle": "b33096111fcb48478a30d44b9f6d1e78.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0d24eb206c2340d493694967e24c127a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 14:15:28", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0d24eb206c2340d493694967e24c127a.jpg", + "handle": "0d24eb206c2340d493694967e24c127a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5dfbc99f71c340c0a09d7f1a411327ec.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:08:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/5dfbc99f71c340c0a09d7f1a411327ec.jpg", + "handle": "5dfbc99f71c340c0a09d7f1a411327ec.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f99ecb7045bf4067984a412583a4651e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:44:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f99ecb7045bf4067984a412583a4651e.jpg", + "handle": "f99ecb7045bf4067984a412583a4651e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3fc7958294874242bda77b198d4c1d5e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:07:19", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3fc7958294874242bda77b198d4c1d5e.jpg", + "handle": "3fc7958294874242bda77b198d4c1d5e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b372ea5faff846a7b4d69525f43397d5.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 16:30:11", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/b372ea5faff846a7b4d69525f43397d5.jpg", + "handle": "b372ea5faff846a7b4d69525f43397d5.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3637daa3c50848fcab549e005b170076.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:07:37", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3637daa3c50848fcab549e005b170076.jpg", + "handle": "3637daa3c50848fcab549e005b170076.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/879ca521aebd45a7a12d7846f734234a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:46:17", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/879ca521aebd45a7a12d7846f734234a.jpg", + "handle": "879ca521aebd45a7a12d7846f734234a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/862970df3ce74466a5d8d71b9280260d.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:43:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/862970df3ce74466a5d8d71b9280260d.jpg", + "handle": "862970df3ce74466a5d8d71b9280260d.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3a875c0152d54551a7aeafdd661f734a.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:46:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3a875c0152d54551a7aeafdd661f734a.jpg", + "handle": "3a875c0152d54551a7aeafdd661f734a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/eca8ab432ff54ce6bf5838c5f7b315d1.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:29:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/eca8ab432ff54ce6bf5838c5f7b315d1.jpg", + "handle": "eca8ab432ff54ce6bf5838c5f7b315d1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/efce3bb90c994f42a481d6131eccd481.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:32:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/efce3bb90c994f42a481d6131eccd481.jpg", + "handle": "efce3bb90c994f42a481d6131eccd481.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9423f0221e1a48e096a2aeaa0541412f.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:45:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9423f0221e1a48e096a2aeaa0541412f.jpg", + "handle": "9423f0221e1a48e096a2aeaa0541412f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bda40d2cfda34abfabef58f12c008b09.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 10:55:49", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/bda40d2cfda34abfabef58f12c008b09.jpg", + "handle": "bda40d2cfda34abfabef58f12c008b09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9f1beeba5ddc473886361be23bc4e723.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:34:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9f1beeba5ddc473886361be23bc4e723.jpg", + "handle": "9f1beeba5ddc473886361be23bc4e723.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f89ffaae58294ce39e25d2cdc7dc0a12.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:45:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f89ffaae58294ce39e25d2cdc7dc0a12.jpg", + "handle": "f89ffaae58294ce39e25d2cdc7dc0a12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f66dc778472c43a6aa71376409a027ca.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:55:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f66dc778472c43a6aa71376409a027ca.jpg", + "handle": "f66dc778472c43a6aa71376409a027ca.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3db829a5007242efa3338a327b40a664.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:51:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3db829a5007242efa3338a327b40a664.jpg", + "handle": "3db829a5007242efa3338a327b40a664.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/cdc6e31c83404b2b917dd32e8ef5d7d3.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:41:26", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/cdc6e31c83404b2b917dd32e8ef5d7d3.jpg", + "handle": "cdc6e31c83404b2b917dd32e8ef5d7d3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f3320470bf5a456291ffcafbc3a3b026.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:47:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f3320470bf5a456291ffcafbc3a3b026.jpg", + "handle": "f3320470bf5a456291ffcafbc3a3b026.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3b2065c7ae2345c1abb665cb5ac45952.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 12:50:18", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3b2065c7ae2345c1abb665cb5ac45952.jpg", + "handle": "3b2065c7ae2345c1abb665cb5ac45952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/61045aa9cad546aeadf5d8be02801d14.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:01:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/61045aa9cad546aeadf5d8be02801d14.jpg", + "handle": "61045aa9cad546aeadf5d8be02801d14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f1248bf3c10946649073f7995ad2d68c.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:47:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f1248bf3c10946649073f7995ad2d68c.jpg", + "handle": "f1248bf3c10946649073f7995ad2d68c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/276498306b034d4bb2f0bb2d76efad5a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:43:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/276498306b034d4bb2f0bb2d76efad5a.jpg", + "handle": "276498306b034d4bb2f0bb2d76efad5a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c57b60bd35214d9faa7a5c76c83d13fb.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:23:32", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/c57b60bd35214d9faa7a5c76c83d13fb.jpg", + "handle": "c57b60bd35214d9faa7a5c76c83d13fb.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/119dc3cc3ca348bfb9344b02f0a6ecf1.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:27:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/119dc3cc3ca348bfb9344b02f0a6ecf1.jpg", + "handle": "119dc3cc3ca348bfb9344b02f0a6ecf1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/62673543d0e445ccb57045fbc288e299.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:32:38", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/62673543d0e445ccb57045fbc288e299.jpg", + "handle": "62673543d0e445ccb57045fbc288e299.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/749c93d9f41647c3a7cce8d78bf37d66.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/749c93d9f41647c3a7cce8d78bf37d66.jpg", + "handle": "749c93d9f41647c3a7cce8d78bf37d66.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/cbb53dc35fdf4a92ae9494aaad102da7.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:08:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/cbb53dc35fdf4a92ae9494aaad102da7.jpg", + "handle": "cbb53dc35fdf4a92ae9494aaad102da7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6982753a323649549d7e8955bd808bae.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 20:28:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/6982753a323649549d7e8955bd808bae.jpg", + "handle": "6982753a323649549d7e8955bd808bae.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/74f4898bf4cc442895f85cda71759e51.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:44:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/74f4898bf4cc442895f85cda71759e51.jpg", + "handle": "74f4898bf4cc442895f85cda71759e51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a77f7940fc714ae7ad9ffffe20f83ca1.jpg", + "width": 500, + "height": 1200, + "orientation": 0, + "taken_at": "2018-10-11 14:06:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a77f7940fc714ae7ad9ffffe20f83ca1.jpg", + "handle": "a77f7940fc714ae7ad9ffffe20f83ca1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f156d30470234b04ba1ab31e17f10a73.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:46:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f156d30470234b04ba1ab31e17f10a73.jpg", + "handle": "f156d30470234b04ba1ab31e17f10a73.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/f0d6c0e9354d44ad8cbe06326db2ebc1.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:45:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/f0d6c0e9354d44ad8cbe06326db2ebc1.jpg", + "handle": "f0d6c0e9354d44ad8cbe06326db2ebc1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6d529121e06242dc9bbf29567f0703e0.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 13:27:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/6d529121e06242dc9bbf29567f0703e0.jpg", + "handle": "6d529121e06242dc9bbf29567f0703e0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3a44dac1a72b4a3ab27d516bbc273c66.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 12:42:00", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3a44dac1a72b4a3ab27d516bbc273c66.jpg", + "handle": "3a44dac1a72b4a3ab27d516bbc273c66.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/46c0b9c1f8974291b733f5f55801582d.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:08:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/46c0b9c1f8974291b733f5f55801582d.jpg", + "handle": "46c0b9c1f8974291b733f5f55801582d.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2c9bdcdf190840b6a11297c9269e3ce1.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:10:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2c9bdcdf190840b6a11297c9269e3ce1.jpg", + "handle": "2c9bdcdf190840b6a11297c9269e3ce1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ee3e066e21ce44f28f9f5e3266d325ee.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:28:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/ee3e066e21ce44f28f9f5e3266d325ee.jpg", + "handle": "ee3e066e21ce44f28f9f5e3266d325ee.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4afc13934e0f4c66b67f3e3257c6876d.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:47:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4afc13934e0f4c66b67f3e3257c6876d.jpg", + "handle": "4afc13934e0f4c66b67f3e3257c6876d.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5b4d65e04b12443297d8447527f9ca57.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:39:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/5b4d65e04b12443297d8447527f9ca57.jpg", + "handle": "5b4d65e04b12443297d8447527f9ca57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2b2277070ad84404a28809ed535993b7.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 13:27:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2b2277070ad84404a28809ed535993b7.jpg", + "handle": "2b2277070ad84404a28809ed535993b7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/604c6a97a8c24c80b42b7d9c436609dd.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:44:57", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/604c6a97a8c24c80b42b7d9c436609dd.jpg", + "handle": "604c6a97a8c24c80b42b7d9c436609dd.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ad2c1df6be86462bb69ff71e67dd49a1.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:07:37", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/ad2c1df6be86462bb69ff71e67dd49a1.jpg", + "handle": "ad2c1df6be86462bb69ff71e67dd49a1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/ca79b01fc294476284036d12037f84d5.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 14:14:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/ca79b01fc294476284036d12037f84d5.jpg", + "handle": "ca79b01fc294476284036d12037f84d5.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/20441e891e6e4c70810f78f38a4eb9b4.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 10:51:57", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/20441e891e6e4c70810f78f38a4eb9b4.jpg", + "handle": "20441e891e6e4c70810f78f38a4eb9b4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/52ec276961dd466a91ebeb7a4a9346a0.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 10:33:29", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/52ec276961dd466a91ebeb7a4a9346a0.jpg", + "handle": "52ec276961dd466a91ebeb7a4a9346a0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/43e6e71469c84e0ba05dedef86c83de9.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:31:39", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/43e6e71469c84e0ba05dedef86c83de9.jpg", + "handle": "43e6e71469c84e0ba05dedef86c83de9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5f820198b5364b2db3a416d0883dffa3.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:10:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/5f820198b5364b2db3a416d0883dffa3.jpg", + "handle": "5f820198b5364b2db3a416d0883dffa3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4c5eed1aaa94427983aa9d26429d6db9.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4c5eed1aaa94427983aa9d26429d6db9.jpg", + "handle": "4c5eed1aaa94427983aa9d26429d6db9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b22e6722d83a43299a2bb05a2094051d.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:50:28", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/b22e6722d83a43299a2bb05a2094051d.jpg", + "handle": "b22e6722d83a43299a2bb05a2094051d.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fc04c7ba642e4e7f86dc9e3c4053a194.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:54:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/fc04c7ba642e4e7f86dc9e3c4053a194.jpg", + "handle": "fc04c7ba642e4e7f86dc9e3c4053a194.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/11481a4a28b54dcdbcdc9d386d65b188.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:42:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/11481a4a28b54dcdbcdc9d386d65b188.jpg", + "handle": "11481a4a28b54dcdbcdc9d386d65b188.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3155e7dc2ef34b849de2916d4141dc68.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:13:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3155e7dc2ef34b849de2916d4141dc68.jpg", + "handle": "3155e7dc2ef34b849de2916d4141dc68.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/76056ed13efb4e1c8e878d9ccac40b78.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:11:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/76056ed13efb4e1c8e878d9ccac40b78.jpg", + "handle": "76056ed13efb4e1c8e878d9ccac40b78.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa13ed94578d4162b8ca8d2e8b3fc695.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:56:02", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/aa13ed94578d4162b8ca8d2e8b3fc695.jpg", + "handle": "aa13ed94578d4162b8ca8d2e8b3fc695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4cade4ee4ba7484a807265680e221ca3.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4cade4ee4ba7484a807265680e221ca3.jpg", + "handle": "4cade4ee4ba7484a807265680e221ca3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/31a5164c5d7d4f8ab82642f89973742e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:46:00", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/31a5164c5d7d4f8ab82642f89973742e.jpg", + "handle": "31a5164c5d7d4f8ab82642f89973742e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c6c6f515a3c14114875ebba4d0f598b7.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:43:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/c6c6f515a3c14114875ebba4d0f598b7.jpg", + "handle": "c6c6f515a3c14114875ebba4d0f598b7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/821332fde647469186dd060234d50dc2.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 16:24:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/821332fde647469186dd060234d50dc2.jpg", + "handle": "821332fde647469186dd060234d50dc2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/60e526ada15b41eba91eb65d460bf2ad.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:36:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/60e526ada15b41eba91eb65d460bf2ad.jpg", + "handle": "60e526ada15b41eba91eb65d460bf2ad.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/092c5569f3e74737964ae48841edd4b8.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:19:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/092c5569f3e74737964ae48841edd4b8.jpg", + "handle": "092c5569f3e74737964ae48841edd4b8.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5331f3f155444aadbeb43829a3ad1563.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:13:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/5331f3f155444aadbeb43829a3ad1563.jpg", + "handle": "5331f3f155444aadbeb43829a3ad1563.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d0103dca7f0f4744bfe1a0c8c8ec1224.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 16:52:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/d0103dca7f0f4744bfe1a0c8c8ec1224.jpg", + "handle": "d0103dca7f0f4744bfe1a0c8c8ec1224.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c10cbe5d3b814c8c8319a7c8cb53b248.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:56:02", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/c10cbe5d3b814c8c8319a7c8cb53b248.jpg", + "handle": "c10cbe5d3b814c8c8319a7c8cb53b248.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/276ec1b2f7cb4319933ccb68c386808f.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:26:37", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/276ec1b2f7cb4319933ccb68c386808f.jpg", + "handle": "276ec1b2f7cb4319933ccb68c386808f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3007e72f09a440dda45365a2d81bfeac.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 17:08:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3007e72f09a440dda45365a2d81bfeac.jpg", + "handle": "3007e72f09a440dda45365a2d81bfeac.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0ad2395a550b4995882933c83ad3925f.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:07:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0ad2395a550b4995882933c83ad3925f.jpg", + "handle": "0ad2395a550b4995882933c83ad3925f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/7e02e58c7bc84068a369e0fc7d589610.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 19:48:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/7e02e58c7bc84068a369e0fc7d589610.jpg", + "handle": "7e02e58c7bc84068a369e0fc7d589610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/79241f58e296424fb9d405177c685d69.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 14:30:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/79241f58e296424fb9d405177c685d69.jpg", + "handle": "79241f58e296424fb9d405177c685d69.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/04235651b2c542939213c1b4c7f3e5b6.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 16:48:09", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/04235651b2c542939213c1b4c7f3e5b6.jpg", + "handle": "04235651b2c542939213c1b4c7f3e5b6.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/610587fae32b42c2a7e416e189f216cf.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:37:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/610587fae32b42c2a7e416e189f216cf.jpg", + "handle": "610587fae32b42c2a7e416e189f216cf.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/55eba2611636473d81163cd78b7ae39c.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:44:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/55eba2611636473d81163cd78b7ae39c.jpg", + "handle": "55eba2611636473d81163cd78b7ae39c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e49b18d96f8249359dde586d47db440b.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:47:03", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e49b18d96f8249359dde586d47db440b.jpg", + "handle": "e49b18d96f8249359dde586d47db440b.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d0728ecb37514bd4a4098917f1873d32.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:45:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/d0728ecb37514bd4a4098917f1873d32.jpg", + "handle": "d0728ecb37514bd4a4098917f1873d32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:14:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", + "handle": "0fc25a17b7bc4d4db9ab46d416c0a18e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e4d9373c1e14431386a8eb324e497763.jpg", + "width": 1200, + "height": 674, + "orientation": 0, + "taken_at": "2018-10-10 19:59:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e4d9373c1e14431386a8eb324e497763.jpg", + "handle": "e4d9373c1e14431386a8eb324e497763.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:01:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg", + "handle": "bca5b5f90b994f6f95c3d1b2ebc8e6a9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6ea5632862bd48a69b2b4242a0a39771.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:08:00", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/6ea5632862bd48a69b2b4242a0a39771.jpg", + "handle": "6ea5632862bd48a69b2b4242a0a39771.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e95a1f6dfff547c2b08aab845d1723c2.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:36:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e95a1f6dfff547c2b08aab845d1723c2.jpg", + "handle": "e95a1f6dfff547c2b08aab845d1723c2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/98872c66c7d44ba78319178c8d4a51c5.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:41:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/98872c66c7d44ba78319178c8d4a51c5.jpg", + "handle": "98872c66c7d44ba78319178c8d4a51c5.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/41ef70ee942047de9e51a75359639195.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/41ef70ee942047de9e51a75359639195.jpg", + "handle": "41ef70ee942047de9e51a75359639195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 18:24:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg", + "handle": "fd4d5a68a0d24e1c9e74ac24d043a0e7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/45f4b5817a3b42e1baeac4791faef38a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:43:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/45f4b5817a3b42e1baeac4791faef38a.jpg", + "handle": "45f4b5817a3b42e1baeac4791faef38a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/370d555cb6524fbfbedaae2a1c677f65.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:49:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/370d555cb6524fbfbedaae2a1c677f65.jpg", + "handle": "370d555cb6524fbfbedaae2a1c677f65.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/252aad5ac2c74fbaba6ee66fe81c3f5b.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 10:38:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/252aad5ac2c74fbaba6ee66fe81c3f5b.jpg", + "handle": "252aad5ac2c74fbaba6ee66fe81c3f5b.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/35555398b8c24868b2441a0ab65e02a8.jpg", + "width": 500, + "height": 1200, + "orientation": 0, + "taken_at": "2018-10-12 16:34:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/35555398b8c24868b2441a0ab65e02a8.jpg", + "handle": "35555398b8c24868b2441a0ab65e02a8.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2f9b81ea174943ff8370f7a97b77f3a4.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:08:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2f9b81ea174943ff8370f7a97b77f3a4.jpg", + "handle": "2f9b81ea174943ff8370f7a97b77f3a4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/46625e5a0bea446a8ebd6601635ebe7a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 16:45:25", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/46625e5a0bea446a8ebd6601635ebe7a.jpg", + "handle": "46625e5a0bea446a8ebd6601635ebe7a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/56fa65d0483c4d878b1ec86afbc1701c.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:47:47", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/56fa65d0483c4d878b1ec86afbc1701c.jpg", + "handle": "56fa65d0483c4d878b1ec86afbc1701c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/95c6831c037b4780a5fcf0d1fab40995.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:41:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/95c6831c037b4780a5fcf0d1fab40995.jpg", + "handle": "95c6831c037b4780a5fcf0d1fab40995.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2ffe925ead354f99b8ec9118747f55d6.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 15:56:17", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2ffe925ead354f99b8ec9118747f55d6.jpg", + "handle": "2ffe925ead354f99b8ec9118747f55d6.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/df6040157f334db29b84de3f0dfcbfb0.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 16:24:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/df6040157f334db29b84de3f0dfcbfb0.jpg", + "handle": "df6040157f334db29b84de3f0dfcbfb0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/59c966d422b44e1bb247259661e5e26c.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 14:15:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/59c966d422b44e1bb247259661e5e26c.jpg", + "handle": "59c966d422b44e1bb247259661e5e26c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a4492d6f05fa4b39b037e94bcf55c7db.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:56:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a4492d6f05fa4b39b037e94bcf55c7db.jpg", + "handle": "a4492d6f05fa4b39b037e94bcf55c7db.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/db50aa8b7dbe42af8a7d6679c22b9e34.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:29:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/db50aa8b7dbe42af8a7d6679c22b9e34.jpg", + "handle": "db50aa8b7dbe42af8a7d6679c22b9e34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/29e7bb138cf24faabd5b075566a78216.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 20:32:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/29e7bb138cf24faabd5b075566a78216.jpg", + "handle": "29e7bb138cf24faabd5b075566a78216.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/716b29a41d5f471f8adf1a0fb6596495.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:17:43", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/716b29a41d5f471f8adf1a0fb6596495.jpg", + "handle": "716b29a41d5f471f8adf1a0fb6596495.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/c5c096a85ea14ee2ac6ea25f801301af.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:08:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/c5c096a85ea14ee2ac6ea25f801301af.jpg", + "handle": "c5c096a85ea14ee2ac6ea25f801301af.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a6ee0c927bb84b509f6e50449804d746.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:48:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a6ee0c927bb84b509f6e50449804d746.jpg", + "handle": "a6ee0c927bb84b509f6e50449804d746.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/76d9a2d797a14763a614346791055bef.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:13:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/76d9a2d797a14763a614346791055bef.jpg", + "handle": "76d9a2d797a14763a614346791055bef.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4cc343322a904fd88c7b5f6a1769b687.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:47:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4cc343322a904fd88c7b5f6a1769b687.jpg", + "handle": "4cc343322a904fd88c7b5f6a1769b687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/873f54c066da424194df8906a0490c22.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/873f54c066da424194df8906a0490c22.jpg", + "handle": "873f54c066da424194df8906a0490c22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9b6b310598044b59a5ae02e7efb5a4ef.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 14:10:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9b6b310598044b59a5ae02e7efb5a4ef.jpg", + "handle": "9b6b310598044b59a5ae02e7efb5a4ef.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/12f9ac93ca7c44e19b6307a37661aa1f.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 14:10:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/12f9ac93ca7c44e19b6307a37661aa1f.jpg", + "handle": "12f9ac93ca7c44e19b6307a37661aa1f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/5ae8b59b81054e2180e2a0058dacd10a.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/5ae8b59b81054e2180e2a0058dacd10a.jpg", + "handle": "5ae8b59b81054e2180e2a0058dacd10a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/30b9dafb5e84421989f30a587e1b3821.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:07:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/30b9dafb5e84421989f30a587e1b3821.jpg", + "handle": "30b9dafb5e84421989f30a587e1b3821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/e0b2f0c0855f42b790b715d94d7058bd.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/e0b2f0c0855f42b790b715d94d7058bd.jpg", + "handle": "e0b2f0c0855f42b790b715d94d7058bd.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/92303e9d8ed34f47bced15bea8bce358.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:37:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/92303e9d8ed34f47bced15bea8bce358.jpg", + "handle": "92303e9d8ed34f47bced15bea8bce358.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/fa116a1f46d542df96d0d190dacbe089.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 14:14:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/fa116a1f46d542df96d0d190dacbe089.jpg", + "handle": "fa116a1f46d542df96d0d190dacbe089.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9507bd8aa5d44dc984cd953f1f7eec37.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:35:26", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9507bd8aa5d44dc984cd953f1f7eec37.jpg", + "handle": "9507bd8aa5d44dc984cd953f1f7eec37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2b47b9cb60944a69b8d9a44f49e0246e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:55:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2b47b9cb60944a69b8d9a44f49e0246e.jpg", + "handle": "2b47b9cb60944a69b8d9a44f49e0246e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/51ccbc2758c543a492d909adaad67175.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:43:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/51ccbc2758c543a492d909adaad67175.jpg", + "handle": "51ccbc2758c543a492d909adaad67175.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/17efa692038a4b209dacee398dc09fe0.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:41:32", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/17efa692038a4b209dacee398dc09fe0.jpg", + "handle": "17efa692038a4b209dacee398dc09fe0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a81929270ac547d08970f335cb9f53fd.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:26:24", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a81929270ac547d08970f335cb9f53fd.jpg", + "handle": "a81929270ac547d08970f335cb9f53fd.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/88ecbc2463424b7ab91af95698d46325.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 16:52:47", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/88ecbc2463424b7ab91af95698d46325.jpg", + "handle": "88ecbc2463424b7ab91af95698d46325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/21b4559b256c4d259f0d26395f239729.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:57:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/21b4559b256c4d259f0d26395f239729.jpg", + "handle": "21b4559b256c4d259f0d26395f239729.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a74378f9e5b74fda9d64d8c1f90bccd0.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:35:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a74378f9e5b74fda9d64d8c1f90bccd0.jpg", + "handle": "a74378f9e5b74fda9d64d8c1f90bccd0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/6c0fb586345846799db3c737fffe3322.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:42:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/6c0fb586345846799db3c737fffe3322.jpg", + "handle": "6c0fb586345846799db3c737fffe3322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1016a87b1b39437d97fcf7709adf4497.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1016a87b1b39437d97fcf7709adf4497.jpg", + "handle": "1016a87b1b39437d97fcf7709adf4497.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/bd27ccdb5d4f4424818ad0e5802a83c9.jpg", + "width": 500, + "height": 1200, + "orientation": 0, + "taken_at": "2018-10-12 16:34:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/bd27ccdb5d4f4424818ad0e5802a83c9.jpg", + "handle": "bd27ccdb5d4f4424818ad0e5802a83c9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/09e5378b079d4679984baf5b0fbdeb90.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 19:01:25", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/09e5378b079d4679984baf5b0fbdeb90.jpg", + "handle": "09e5378b079d4679984baf5b0fbdeb90.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/284434982b714c74b08beadfee31c49b.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:19:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/284434982b714c74b08beadfee31c49b.jpg", + "handle": "284434982b714c74b08beadfee31c49b.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/015243009630442e8df05e686ef46266.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 12:40:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/015243009630442e8df05e686ef46266.jpg", + "handle": "015243009630442e8df05e686ef46266.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2a5a34cc6a4146d6952796012283dad2.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:47:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2a5a34cc6a4146d6952796012283dad2.jpg", + "handle": "2a5a34cc6a4146d6952796012283dad2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0c436d77385f495690654d43b2e5eb24.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:32:29", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0c436d77385f495690654d43b2e5eb24.jpg", + "handle": "0c436d77385f495690654d43b2e5eb24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/37cf6d342a0444129eb1334b16b531ea.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:44:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/37cf6d342a0444129eb1334b16b531ea.jpg", + "handle": "37cf6d342a0444129eb1334b16b531ea.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3ac6c244fbbe425da4be0615be87c6c3.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-11 14:33:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3ac6c244fbbe425da4be0615be87c6c3.jpg", + "handle": "3ac6c244fbbe425da4be0615be87c6c3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/03c4ba06d9544d718182d545d2c091d0.jpg", + "width": 1200, + "height": 674, + "orientation": 0, + "taken_at": "2018-10-10 20:14:47", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/03c4ba06d9544d718182d545d2c091d0.jpg", + "handle": "03c4ba06d9544d718182d545d2c091d0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/2fb74866c5cc46fab8cd366a70a48b73.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 15:41:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/2fb74866c5cc46fab8cd366a70a48b73.jpg", + "handle": "2fb74866c5cc46fab8cd366a70a48b73.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/96fde308031646f58d3e26432dde51c9.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:46:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/96fde308031646f58d3e26432dde51c9.jpg", + "handle": "96fde308031646f58d3e26432dde51c9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9e317a133959488681032331161e3d8a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 16:46:47", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9e317a133959488681032331161e3d8a.jpg", + "handle": "9e317a133959488681032331161e3d8a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8627eb485bf84bb8bf8a08b12aadd996.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:46:01", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/8627eb485bf84bb8bf8a08b12aadd996.jpg", + "handle": "8627eb485bf84bb8bf8a08b12aadd996.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/64f1c9f649374731a0419e106846f0f4.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:35:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/64f1c9f649374731a0419e106846f0f4.jpg", + "handle": "64f1c9f649374731a0419e106846f0f4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/99e36c44cdf54104a2a664dc17e57895.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 16:35:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/99e36c44cdf54104a2a664dc17e57895.jpg", + "handle": "99e36c44cdf54104a2a664dc17e57895.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8cea490b37774b0781a7593eac1007f7.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 12:41:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/8cea490b37774b0781a7593eac1007f7.jpg", + "handle": "8cea490b37774b0781a7593eac1007f7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/557ab1b343304d02bda26a719dcc5e1e.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 17:04:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/557ab1b343304d02bda26a719dcc5e1e.jpg", + "handle": "557ab1b343304d02bda26a719dcc5e1e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a8c79b23b639491293b10d9972e5cd08.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 15:11:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a8c79b23b639491293b10d9972e5cd08.jpg", + "handle": "a8c79b23b639491293b10d9972e5cd08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1cb7e311f4f14ef383969959677e626e.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:15:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1cb7e311f4f14ef383969959677e626e.jpg", + "handle": "1cb7e311f4f14ef383969959677e626e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3d90ea859f8d40eebdc30a33e3421389.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-11 16:15:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3d90ea859f8d40eebdc30a33e3421389.jpg", + "handle": "3d90ea859f8d40eebdc30a33e3421389.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/d64e5950e9f24d908164d0d30ba351db.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:19:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/d64e5950e9f24d908164d0d30ba351db.jpg", + "handle": "d64e5950e9f24d908164d0d30ba351db.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a6d4743e50474608acd045a42f2f51fd.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 13:26:15", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a6d4743e50474608acd045a42f2f51fd.jpg", + "handle": "a6d4743e50474608acd045a42f2f51fd.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/edfaf90d630245c6b3f248ab4cb195b0.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 10:37:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/edfaf90d630245c6b3f248ab4cb195b0.jpg", + "handle": "edfaf90d630245c6b3f248ab4cb195b0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/8303500acdb6477c846d7276a5d853be.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 17:08:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/8303500acdb6477c846d7276a5d853be.jpg", + "handle": "8303500acdb6477c846d7276a5d853be.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:43:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", + "handle": "3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1baa005e07454acebdcc98e870a631f1.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:39:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1baa005e07454acebdcc98e870a631f1.jpg", + "handle": "1baa005e07454acebdcc98e870a631f1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/926f6a4f71244958b472986a0b24363c.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:49:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/926f6a4f71244958b472986a0b24363c.jpg", + "handle": "926f6a4f71244958b472986a0b24363c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0fc2f67adef44881b29ff09b8889891a.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:22:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0fc2f67adef44881b29ff09b8889891a.jpg", + "handle": "0fc2f67adef44881b29ff09b8889891a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1e5b988e96ee42448d7a123fd623730a.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 10:55:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1e5b988e96ee42448d7a123fd623730a.jpg", + "handle": "1e5b988e96ee42448d7a123fd623730a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/432aa467c5164286b39a63abf7c788db.jpg", + "width": 1200, + "height": 579, + "orientation": 0, + "taken_at": "2018-10-10 12:09:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/432aa467c5164286b39a63abf7c788db.jpg", + "handle": "432aa467c5164286b39a63abf7c788db.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aa00bf35b8d04a79ae73f4daef9b77cd.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:26:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/aa00bf35b8d04a79ae73f4daef9b77cd.jpg", + "handle": "aa00bf35b8d04a79ae73f4daef9b77cd.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/0c86a91b209b4d81b03449bacdfcf8fc.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 12:40:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/0c86a91b209b4d81b03449bacdfcf8fc.jpg", + "handle": "0c86a91b209b4d81b03449bacdfcf8fc.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4165f084989b44e0952af7b104c2a43c.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 13:03:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4165f084989b44e0952af7b104c2a43c.jpg", + "handle": "4165f084989b44e0952af7b104c2a43c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/9c542545a91a4526b71de853a46a99c8.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-12 16:32:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/9c542545a91a4526b71de853a46a99c8.jpg", + "handle": "9c542545a91a4526b71de853a46a99c8.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/533cdf99fe774f1aac2e0b19f4db3bfc.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:54:20", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/533cdf99fe774f1aac2e0b19f4db3bfc.jpg", + "handle": "533cdf99fe774f1aac2e0b19f4db3bfc.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:14:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg", + "handle": "aeed4b3dfcd8403b9bfebe7fa8e966ed.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3ef75635fea049239910eaeef3879765.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3ef75635fea049239910eaeef3879765.jpg", + "handle": "3ef75635fea049239910eaeef3879765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/70e28356c6204fb980dfbbcfd7074c71.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 13:20:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/70e28356c6204fb980dfbbcfd7074c71.jpg", + "handle": "70e28356c6204fb980dfbbcfd7074c71.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/b00e2e0a59e9424db5e98231849032de.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:08:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/b00e2e0a59e9424db5e98231849032de.jpg", + "handle": "b00e2e0a59e9424db5e98231849032de.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/a5050d6e859a4e88af65dcb1c29245a4.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:37:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/a5050d6e859a4e88af65dcb1c29245a4.jpg", + "handle": "a5050d6e859a4e88af65dcb1c29245a4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:42:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", + "handle": "1ee95f9b7a854fc9afea3581c3ca3bd3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/4382a8dafc7840e885ad9ab4e3b6f45c.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 11:25:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/4382a8dafc7840e885ad9ab4e3b6f45c.jpg", + "handle": "4382a8dafc7840e885ad9ab4e3b6f45c.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/2018-10-arno/3d3f907e1d76489084e871986a590474.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:54:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/2018-10-arno/3d3f907e1d76489084e871986a590474.jpg", + "handle": "3d3f907e1d76489084e871986a590474.jpg" + } + ] +} diff --git a/core/data/image-sets/300.json b/core/data/image-sets/300.json index f6eaea3..b5a1918 100644 --- a/core/data/image-sets/300.json +++ b/core/data/image-sets/300.json @@ -1,3304 +1,3304 @@ { - "300": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/300/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/300/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "300": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/300/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/300/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/300/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/400.json b/core/data/image-sets/400.json index af01f83..b266fa1 100644 --- a/core/data/image-sets/400.json +++ b/core/data/image-sets/400.json @@ -1,4404 +1,4404 @@ { - "400": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9030.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-18 12:02:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9030.jpg", - "handle": "IMG_9030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9024.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 10:38:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9024.jpg", - "handle": "IMG_9024.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8925.jpg", - "width": 350, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 10:34:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8925.jpg", - "handle": "IMG_8925.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8919.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 23:53:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8919.jpg", - "handle": "IMG_8919.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8529.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 12:09:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8529.jpg", - "handle": "IMG_8529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9019.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 08:09:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9019.jpg", - "handle": "IMG_9019.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8477.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 15:10:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8477.jpg", - "handle": "IMG_8477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8311.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-13 18:43:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8311.jpg", - "handle": "IMG_8311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9423.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-05-05 20:26:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9423.jpg", - "handle": "IMG_9423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8700.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 01:37:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8700.jpg", - "handle": "IMG_8700.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8853.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:36", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8853.JPG", - "handle": "IMG_8853.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8847.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-12 18:38:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8847.jpg", - "handle": "IMG_8847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9032.jpg", - "width": 1000, - "height": 378, - "orientation": 0, - "taken_at": "2018-04-18 14:49:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9032.jpg", - "handle": "IMG_9032.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8466.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-04-08 14:00:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8466.jpg", - "handle": "IMG_8466.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8300.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-03-13 13:32:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8300.jpg", - "handle": "IMG_8300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8314.jpg", - "width": 1000, - "height": 534, - "orientation": 0, - "taken_at": "2018-03-13 18:46:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8314.jpg", - "handle": "IMG_8314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8328.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-16 07:36:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8328.jpg", - "handle": "IMG_8328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8710.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:50:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8710.jpg", - "handle": "IMG_8710.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9426.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 20:27:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9426.jpg", - "handle": "IMG_9426.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9195.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-27 14:38:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9195.jpg", - "handle": "IMG_9195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8506.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-09 03:10:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8506.jpg", - "handle": "IMG_8506.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8842.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:22:25", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8842.JPG", - "handle": "IMG_8842.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9023.jpg", - "width": 1000, - "height": 528, - "orientation": 0, - "taken_at": "2018-04-18 10:23:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9023.jpg", - "handle": "IMG_9023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8707.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:32:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8707.jpg", - "handle": "IMG_8707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:26:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9424.jpg", - "handle": "IMG_9424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9395.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:39:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9395.JPG", - "handle": "IMG_9395.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9020.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 08:54:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9020.jpg", - "handle": "IMG_9020.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 15:18:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9034.jpg", - "handle": "IMG_9034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9008.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-17 14:42:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9008.jpg", - "handle": "IMG_9008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-12 17:00:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8832.jpg", - "handle": "IMG_8832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9325.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 12:38:25", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9325.jpg", - "handle": "IMG_9325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9654.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 15:19:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9654.jpg", - "handle": "IMG_9654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8238.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:02:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8238.jpg", - "handle": "IMG_8238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8416.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 17:40:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8416.jpg", - "handle": "IMG_8416.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9087.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:25:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9087.jpg", - "handle": "IMG_9087.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 08:13:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8428.jpg", - "handle": "IMG_8428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8164.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-18 13:26:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8164.jpg", - "handle": "IMG_8164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8951.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-14 15:22:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8951.jpg", - "handle": "IMG_8951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9656.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-07 15:29:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9656.jpg", - "handle": "IMG_9656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8561.jpg", - "width": 1000, - "height": 477, - "orientation": 0, - "taken_at": "2018-04-09 19:34:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8561.jpg", - "handle": "IMG_8561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:39:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8987.jpg", - "handle": "IMG_8987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8944.jpg", - "width": 955, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 13:15:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8944.jpg", - "handle": "IMG_8944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8415.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 17:39:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8415.jpg", - "handle": "IMG_8415.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9041.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-19 11:05:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9041.jpg", - "handle": "IMG_9041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8821.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:25:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8821.jpg", - "handle": "IMG_8821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9083.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:18:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9083.jpg", - "handle": "IMG_9083.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8758.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:00:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8758.jpg", - "handle": "IMG_8758.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9320.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:09:10", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9320.jpg", - "handle": "IMG_9320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9122.jpg", - "width": 1000, - "height": 432, - "orientation": 0, - "taken_at": "2018-04-22 12:56:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9122.jpg", - "handle": "IMG_9122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8567.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:26:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8567.jpg", - "handle": "IMG_8567.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8759.jpg", - "width": 709, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:01:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8759.jpg", - "handle": "IMG_8759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8163.jpg", - "width": 1000, - "height": 600, - "orientation": 0, - "taken_at": "2018-02-18 13:25:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8163.jpg", - "handle": "IMG_8163.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8836.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:05:55", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8836.JPG", - "handle": "IMG_8836.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8436.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 12:13:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8436.jpg", - "handle": "IMG_8436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8807.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:10:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8807.jpg", - "handle": "IMG_8807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8967.jpg", - "width": 1000, - "height": 339, - "orientation": 0, - "taken_at": "2018-04-15 17:57:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8967.jpg", - "handle": "IMG_8967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9112.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:38:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9112.jpg", - "handle": "IMG_9112.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8972.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-15 19:59:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8972.jpg", - "handle": "IMG_8972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9071.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-19 17:01:04", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9071.jpg", - "handle": "IMG_9071.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8970.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-15 19:58:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8970.jpg", - "handle": "IMG_8970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8743.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8743.jpg", - "handle": "IMG_8743.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8596.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-10 12:59:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8596.jpg", - "handle": "IMG_8596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9138.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 13:51:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9138.jpg", - "handle": "IMG_9138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9104.jpg", - "width": 585, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-21 18:21:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9104.jpg", - "handle": "IMG_9104.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8839.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:29:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8839.JPG", - "handle": "IMG_8839.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8434.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 11:21:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8434.jpg", - "handle": "IMG_8434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8408.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 03:11:05", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8408.jpg", - "handle": "IMG_8408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 19:16:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8424.jpg", - "handle": "IMG_8424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8430.jpg", - "width": 1000, - "height": 842, - "orientation": 0, - "taken_at": "2018-04-08 08:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8430.jpg", - "handle": "IMG_8430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9316.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:08:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9316.jpg", - "handle": "IMG_9316.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8431.jpg", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-08 09:07:50", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8431.jpg", - "handle": "IMG_8431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8745.jpg", - "handle": "IMG_8745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9315.jpg", - "width": 682, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 09:49:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9315.jpg", - "handle": "IMG_9315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8547.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 18:05:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8547.jpg", - "handle": "IMG_8547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 19:26:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8552.jpg", - "handle": "IMG_8552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8988.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:40:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8988.jpg", - "handle": "IMG_8988.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8744.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8744.jpg", - "handle": "IMG_8744.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 14:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8963.jpg", - "handle": "IMG_8963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9512.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 07:11:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9512.jpg", - "handle": "IMG_9512.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8455.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 13:47:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8455.jpg", - "handle": "IMG_8455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9171.jpg", - "width": 1000, - "height": 645, - "orientation": 0, - "taken_at": "2018-04-27 13:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9171.jpg", - "handle": "IMG_9171.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:27:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9428.jpg", - "handle": "IMG_9428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8865.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 19:57:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8865.jpg", - "handle": "IMG_8865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8318.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 09:39:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8318.jpg", - "handle": "IMG_8318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9204.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-27 14:50:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9204.jpg", - "handle": "IMG_9204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8898.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 20:18:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8898.jpg", - "handle": "IMG_8898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9199.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-27 14:46:53", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9199.jpg", - "handle": "IMG_9199.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9359.jpg", - "width": 1000, - "height": 589, - "orientation": 0, - "taken_at": "2018-05-05 18:37:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9359.jpg", - "handle": "IMG_9359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8133.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-02-04 10:38:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8133.JPG", - "handle": "IMG_8133.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8325.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 13:55:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8325.jpg", - "handle": "IMG_8325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9013.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 17:48:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9013.JPG", - "handle": "IMG_9013.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8490.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-08 17:36:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8490.jpg", - "handle": "IMG_8490.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9003.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-17 14:01:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9003.jpg", - "handle": "IMG_9003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9201.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-27 14:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9201.jpg", - "handle": "IMG_9201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8527.jpg", - "width": 1000, - "height": 604, - "orientation": 0, - "taken_at": "2018-04-09 12:09:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8527.jpg", - "handle": "IMG_8527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9348.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:30:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9348.jpg", - "handle": "IMG_9348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8687.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 21:40:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8687.jpg", - "handle": "IMG_8687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8849.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:01", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8849.JPG", - "handle": "IMG_8849.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9606.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 14:51:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_9606.jpg", - "handle": "IMG_9606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8337.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-03-18 01:07:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_8337.jpg", - "handle": "IMG_8337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/400/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/400/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "400": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9030.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-18 12:02:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9030.jpg", + "handle": "IMG_9030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9024.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 10:38:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9024.jpg", + "handle": "IMG_9024.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8925.jpg", + "width": 350, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 10:34:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8925.jpg", + "handle": "IMG_8925.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8919.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 23:53:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8919.jpg", + "handle": "IMG_8919.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8529.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 12:09:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8529.jpg", + "handle": "IMG_8529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9019.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 08:09:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9019.jpg", + "handle": "IMG_9019.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8477.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 15:10:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8477.jpg", + "handle": "IMG_8477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8311.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-13 18:43:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8311.jpg", + "handle": "IMG_8311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9423.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-05-05 20:26:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9423.jpg", + "handle": "IMG_9423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8700.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 01:37:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8700.jpg", + "handle": "IMG_8700.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8853.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:36", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8853.JPG", + "handle": "IMG_8853.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8847.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-12 18:38:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8847.jpg", + "handle": "IMG_8847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9032.jpg", + "width": 1000, + "height": 378, + "orientation": 0, + "taken_at": "2018-04-18 14:49:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9032.jpg", + "handle": "IMG_9032.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8466.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-04-08 14:00:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8466.jpg", + "handle": "IMG_8466.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8300.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-03-13 13:32:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8300.jpg", + "handle": "IMG_8300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8314.jpg", + "width": 1000, + "height": 534, + "orientation": 0, + "taken_at": "2018-03-13 18:46:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8314.jpg", + "handle": "IMG_8314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8328.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-16 07:36:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8328.jpg", + "handle": "IMG_8328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8710.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:50:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8710.jpg", + "handle": "IMG_8710.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9426.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 20:27:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9426.jpg", + "handle": "IMG_9426.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9195.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-27 14:38:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9195.jpg", + "handle": "IMG_9195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8506.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-09 03:10:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8506.jpg", + "handle": "IMG_8506.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8842.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:22:25", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8842.JPG", + "handle": "IMG_8842.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9023.jpg", + "width": 1000, + "height": 528, + "orientation": 0, + "taken_at": "2018-04-18 10:23:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9023.jpg", + "handle": "IMG_9023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8707.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:32:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8707.jpg", + "handle": "IMG_8707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:26:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9424.jpg", + "handle": "IMG_9424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9395.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:39:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9395.JPG", + "handle": "IMG_9395.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9020.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 08:54:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9020.jpg", + "handle": "IMG_9020.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 15:18:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9034.jpg", + "handle": "IMG_9034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9008.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-17 14:42:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9008.jpg", + "handle": "IMG_9008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-12 17:00:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8832.jpg", + "handle": "IMG_8832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9325.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 12:38:25", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9325.jpg", + "handle": "IMG_9325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9654.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 15:19:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9654.jpg", + "handle": "IMG_9654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8238.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:02:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8238.jpg", + "handle": "IMG_8238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8416.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 17:40:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8416.jpg", + "handle": "IMG_8416.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9087.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:25:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9087.jpg", + "handle": "IMG_9087.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 08:13:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8428.jpg", + "handle": "IMG_8428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8164.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-18 13:26:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8164.jpg", + "handle": "IMG_8164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8951.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-14 15:22:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8951.jpg", + "handle": "IMG_8951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9656.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-07 15:29:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9656.jpg", + "handle": "IMG_9656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8561.jpg", + "width": 1000, + "height": 477, + "orientation": 0, + "taken_at": "2018-04-09 19:34:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8561.jpg", + "handle": "IMG_8561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:39:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8987.jpg", + "handle": "IMG_8987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8944.jpg", + "width": 955, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 13:15:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8944.jpg", + "handle": "IMG_8944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8415.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 17:39:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8415.jpg", + "handle": "IMG_8415.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9041.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-19 11:05:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9041.jpg", + "handle": "IMG_9041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8821.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:25:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8821.jpg", + "handle": "IMG_8821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9083.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:18:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9083.jpg", + "handle": "IMG_9083.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8758.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:00:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8758.jpg", + "handle": "IMG_8758.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9320.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:09:10", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9320.jpg", + "handle": "IMG_9320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9122.jpg", + "width": 1000, + "height": 432, + "orientation": 0, + "taken_at": "2018-04-22 12:56:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9122.jpg", + "handle": "IMG_9122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8567.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:26:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8567.jpg", + "handle": "IMG_8567.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8759.jpg", + "width": 709, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:01:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8759.jpg", + "handle": "IMG_8759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8163.jpg", + "width": 1000, + "height": 600, + "orientation": 0, + "taken_at": "2018-02-18 13:25:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8163.jpg", + "handle": "IMG_8163.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8836.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:05:55", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8836.JPG", + "handle": "IMG_8836.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8436.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 12:13:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8436.jpg", + "handle": "IMG_8436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8807.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:10:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8807.jpg", + "handle": "IMG_8807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8967.jpg", + "width": 1000, + "height": 339, + "orientation": 0, + "taken_at": "2018-04-15 17:57:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8967.jpg", + "handle": "IMG_8967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9112.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:38:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9112.jpg", + "handle": "IMG_9112.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8972.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-15 19:59:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8972.jpg", + "handle": "IMG_8972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9071.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-19 17:01:04", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9071.jpg", + "handle": "IMG_9071.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8970.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-15 19:58:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8970.jpg", + "handle": "IMG_8970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8743.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8743.jpg", + "handle": "IMG_8743.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8596.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-10 12:59:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8596.jpg", + "handle": "IMG_8596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9138.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 13:51:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9138.jpg", + "handle": "IMG_9138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9104.jpg", + "width": 585, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-21 18:21:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9104.jpg", + "handle": "IMG_9104.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8839.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:29:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8839.JPG", + "handle": "IMG_8839.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8434.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 11:21:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8434.jpg", + "handle": "IMG_8434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8408.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 03:11:05", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8408.jpg", + "handle": "IMG_8408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 19:16:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8424.jpg", + "handle": "IMG_8424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8430.jpg", + "width": 1000, + "height": 842, + "orientation": 0, + "taken_at": "2018-04-08 08:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8430.jpg", + "handle": "IMG_8430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9316.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:08:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9316.jpg", + "handle": "IMG_9316.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8431.jpg", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-08 09:07:50", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8431.jpg", + "handle": "IMG_8431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8745.jpg", + "handle": "IMG_8745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9315.jpg", + "width": 682, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 09:49:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9315.jpg", + "handle": "IMG_9315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8547.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 18:05:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8547.jpg", + "handle": "IMG_8547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 19:26:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8552.jpg", + "handle": "IMG_8552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8988.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:40:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8988.jpg", + "handle": "IMG_8988.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8744.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8744.jpg", + "handle": "IMG_8744.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 14:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8963.jpg", + "handle": "IMG_8963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9512.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 07:11:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9512.jpg", + "handle": "IMG_9512.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8455.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 13:47:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8455.jpg", + "handle": "IMG_8455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9171.jpg", + "width": 1000, + "height": 645, + "orientation": 0, + "taken_at": "2018-04-27 13:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9171.jpg", + "handle": "IMG_9171.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:27:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9428.jpg", + "handle": "IMG_9428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8865.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 19:57:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8865.jpg", + "handle": "IMG_8865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8318.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 09:39:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8318.jpg", + "handle": "IMG_8318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9204.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-27 14:50:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9204.jpg", + "handle": "IMG_9204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8898.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 20:18:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8898.jpg", + "handle": "IMG_8898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9199.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-27 14:46:53", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9199.jpg", + "handle": "IMG_9199.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9359.jpg", + "width": 1000, + "height": 589, + "orientation": 0, + "taken_at": "2018-05-05 18:37:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9359.jpg", + "handle": "IMG_9359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8133.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-02-04 10:38:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8133.JPG", + "handle": "IMG_8133.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8325.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 13:55:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8325.jpg", + "handle": "IMG_8325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9013.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 17:48:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9013.JPG", + "handle": "IMG_9013.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8490.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-08 17:36:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8490.jpg", + "handle": "IMG_8490.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9003.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-17 14:01:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9003.jpg", + "handle": "IMG_9003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9201.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-27 14:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9201.jpg", + "handle": "IMG_9201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8527.jpg", + "width": 1000, + "height": 604, + "orientation": 0, + "taken_at": "2018-04-09 12:09:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8527.jpg", + "handle": "IMG_8527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9348.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:30:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9348.jpg", + "handle": "IMG_9348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8687.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 21:40:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8687.jpg", + "handle": "IMG_8687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8849.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:01", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8849.JPG", + "handle": "IMG_8849.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_9606.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 14:51:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_9606.jpg", + "handle": "IMG_9606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_8337.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-03-18 01:07:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_8337.jpg", + "handle": "IMG_8337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/400/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/400/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/400/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/500.json b/core/data/image-sets/500.json index d79f309..375ca8b 100644 --- a/core/data/image-sets/500.json +++ b/core/data/image-sets/500.json @@ -1,5504 +1,5504 @@ { - "500": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9030.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-18 12:02:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9030.jpg", - "handle": "IMG_9030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9024.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 10:38:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9024.jpg", - "handle": "IMG_9024.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.14.42-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:14:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.14.42-2.jpg", - "handle": "2016-04-08 12.14.42-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.11.50.jpg", - "handle": "2016-12-21 16.11.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8925.jpg", - "width": 350, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 10:34:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8925.jpg", - "handle": "IMG_8925.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8919.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 23:53:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8919.jpg", - "handle": "IMG_8919.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8529.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 12:09:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8529.jpg", - "handle": "IMG_8529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.07.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:07", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.38.07.jpg", - "handle": "2016-04-08 11.38.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.39.jpg", - "width": 1600, - "height": 1580, - "orientation": 0, - "taken_at": "2016-12-21 16:10:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.10.39.jpg", - "handle": "2016-12-21 16.10.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.37.02.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:37:02", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 14.37.02.jpg", - "handle": "2016-12-21 14.37.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9019.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 08:09:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9019.jpg", - "handle": "IMG_9019.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.39.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.05.39.jpg", - "handle": "2016-04-08 12.05.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8477.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 15:10:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8477.jpg", - "handle": "IMG_8477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8311.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-13 18:43:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8311.jpg", - "handle": "IMG_8311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.13.42.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:13:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.13.42.jpg", - "handle": "2016-12-21 16.13.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9423.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-05-05 20:26:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9423.jpg", - "handle": "IMG_9423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.39.57.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:57", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_10.39.57.jpg", - "handle": "2016-08-24_10.39.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8700.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 01:37:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8700.jpg", - "handle": "IMG_8700.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8853.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:36", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8853.JPG", - "handle": "IMG_8853.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8847.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-12 18:38:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8847.jpg", - "handle": "IMG_8847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9032.jpg", - "width": 1000, - "height": 378, - "orientation": 0, - "taken_at": "2018-04-18 14:49:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9032.jpg", - "handle": "IMG_9032.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8466.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-04-08 14:00:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8466.jpg", - "handle": "IMG_8466.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8300.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-03-13 13:32:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8300.jpg", - "handle": "IMG_8300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8314.jpg", - "width": 1000, - "height": 534, - "orientation": 0, - "taken_at": "2018-03-13 18:46:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8314.jpg", - "handle": "IMG_8314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8328.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-16 07:36:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8328.jpg", - "handle": "IMG_8328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8710.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:50:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8710.jpg", - "handle": "IMG_8710.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9426.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 20:27:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9426.jpg", - "handle": "IMG_9426.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9195.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-27 14:38:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9195.jpg", - "handle": "IMG_9195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8506.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-09 03:10:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8506.jpg", - "handle": "IMG_8506.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.45.00.jpg", - "width": 1600, - "height": 1219, - "orientation": 0, - "taken_at": "2016-04-08 11:45:00", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.45.00.jpg", - "handle": "2016-04-08 11.45.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.39.53.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:53", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_10.39.53.jpg", - "handle": "2016-08-24_10.39.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.26.29.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:29", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.26.29.jpg", - "handle": "2016-04-08 11.26.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.56.22.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 10:56:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 10.56.22.jpg", - "handle": "2016-04-08 10.56.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.38.jpg", - "width": 1600, - "height": 553, - "orientation": 0, - "taken_at": "2016-12-21 13:21:38", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 13.21.38.jpg", - "handle": "2016-12-21 13.21.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8842.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:22:25", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8842.JPG", - "handle": "IMG_8842.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9023.jpg", - "width": 1000, - "height": 528, - "orientation": 0, - "taken_at": "2018-04-18 10:23:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9023.jpg", - "handle": "IMG_9023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.29.33-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:29:33", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.29.33-2.jpg", - "handle": "2016-04-08 12.29.33-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_12.37.03.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_12.37.03.jpg", - "handle": "2016-08-24_12.37.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.23.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.23.13.jpg", - "handle": "2016-04-08 12.23.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.55.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.11.55.jpg", - "handle": "2016-12-21 16.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.58.31.jpg", - "width": 1600, - "height": 874, - "orientation": 0, - "taken_at": "2016-04-08 10:58:31", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 10.58.31.jpg", - "handle": "2016-04-08 10.58.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.48.40.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-12-21 16:48:40", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.48.40.jpg", - "handle": "2016-12-21 16.48.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8707.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:32:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8707.jpg", - "handle": "IMG_8707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9815.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 18:06:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9815.jpg", - "handle": "IMG_9815.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:26:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9424.jpg", - "handle": "IMG_9424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9395.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:39:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9395.JPG", - "handle": "IMG_9395.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9020.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 08:54:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9020.jpg", - "handle": "IMG_9020.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 15:18:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9034.jpg", - "handle": "IMG_9034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9008.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-17 14:42:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9008.jpg", - "handle": "IMG_9008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-12 17:00:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8832.jpg", - "handle": "IMG_8832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.37.08.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:08", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.37.08.jpg", - "handle": "2016-04-08 11.37.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.56.46.jpg", - "width": 1600, - "height": 1275, - "orientation": 0, - "taken_at": "2016-04-08 10:56:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 10.56.46.jpg", - "handle": "2016-04-08 10.56.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.11.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:11:41", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_11.11.41.jpg", - "handle": "2016-08-24_11.11.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9325.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 12:38:25", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9325.jpg", - "handle": "IMG_9325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9654.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 15:19:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9654.jpg", - "handle": "IMG_9654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8238.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:02:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8238.jpg", - "handle": "IMG_8238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.02.25.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:02:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 14.02.25.jpg", - "handle": "2016-12-21 14.02.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8416.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 17:40:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8416.jpg", - "handle": "IMG_8416.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9087.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:25:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9087.jpg", - "handle": "IMG_9087.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.26.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:27:26", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.27.26.jpg", - "handle": "2016-04-08 11.27.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 08:13:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8428.jpg", - "handle": "IMG_8428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.24.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:11:24", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.11.24.jpg", - "handle": "2016-12-21 16.11.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.59.06.jpg", - "width": 1600, - "height": 407, - "orientation": 0, - "taken_at": "2016-08-24 11:59:06", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_11.59.06.jpg", - "handle": "2016-08-24_11.59.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8164.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-18 13:26:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8164.jpg", - "handle": "IMG_8164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8951.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-14 15:22:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8951.jpg", - "handle": "IMG_8951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_09.56.23.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:23", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_09.56.23.jpg", - "handle": "2016-08-24_09.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9656.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-07 15:29:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9656.jpg", - "handle": "IMG_9656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8561.jpg", - "width": 1000, - "height": 477, - "orientation": 0, - "taken_at": "2018-04-09 19:34:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8561.jpg", - "handle": "IMG_8561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.59.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:59", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.10.59.jpg", - "handle": "2016-12-21 16.10.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:39:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8987.jpg", - "handle": "IMG_8987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8944.jpg", - "width": 955, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 13:15:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8944.jpg", - "handle": "IMG_8944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8415.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 17:39:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8415.jpg", - "handle": "IMG_8415.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9041.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-19 11:05:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9041.jpg", - "handle": "IMG_9041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:54:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9849.jpg", - "handle": "IMG_9849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8821.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:25:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8821.jpg", - "handle": "IMG_8821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9083.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:18:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9083.jpg", - "handle": "IMG_9083.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.02.21.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:02:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 14.02.21.jpg", - "handle": "2016-12-21 14.02.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8758.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:00:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8758.jpg", - "handle": "IMG_8758.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9320.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:09:10", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9320.jpg", - "handle": "IMG_9320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9122.jpg", - "width": 1000, - "height": 432, - "orientation": 0, - "taken_at": "2018-04-22 12:56:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9122.jpg", - "handle": "IMG_9122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.59.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 10:59:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 10.59.13.jpg", - "handle": "2016-04-08 10.59.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8567.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:26:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8567.jpg", - "handle": "IMG_8567.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8759.jpg", - "width": 709, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:01:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8759.jpg", - "handle": "IMG_8759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.10-1.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:10", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.38.10-1.jpg", - "handle": "2016-04-08 11.38.10-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8163.jpg", - "width": 1000, - "height": 600, - "orientation": 0, - "taken_at": "2018-02-18 13:25:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8163.jpg", - "handle": "IMG_8163.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8836.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:05:55", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8836.JPG", - "handle": "IMG_8836.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_12.37.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:49", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_12.37.49.jpg", - "handle": "2016-08-24_12.37.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8436.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 12:13:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8436.jpg", - "handle": "IMG_8436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180213_102748.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 11:27:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180213_102748.jpg", - "handle": "20180213_102748.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.20.06.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 11.20.06.jpg", - "handle": "2018-02-13 11.20.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8807.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:10:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8807.jpg", - "handle": "IMG_8807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180214_065950.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 06:59:50", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180214_065950.jpg", - "handle": "20180214_065950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.57.35.jpg", - "width": 1600, - "height": 605, - "orientation": 0, - "taken_at": "2016-08-24 11:57:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_11.57.35.jpg", - "handle": "2016-08-24_11.57.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8967.jpg", - "width": 1000, - "height": 339, - "orientation": 0, - "taken_at": "2018-04-15 17:57:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8967.jpg", - "handle": "IMG_8967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_151354.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 15:13:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180212_151354.jpg", - "handle": "20180212_151354.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9847.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9847.jpg", - "handle": "IMG_9847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.46.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.10.46.jpg", - "handle": "2016-12-21 16.10.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9112.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:38:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9112.jpg", - "handle": "IMG_9112.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_09.56.14.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_09.56.14.jpg", - "handle": "2016-08-24_09.56.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8972.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-15 19:59:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8972.jpg", - "handle": "IMG_8972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.37.14.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.37.14.jpg", - "handle": "2016-04-08 11.37.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.17.31.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.17.31.jpg", - "handle": "2018-02-13 10.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9071.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-19 17:01:04", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9071.jpg", - "handle": "IMG_9071.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.46.56.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:46:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 14.46.56.jpg", - "handle": "2016-12-21 14.46.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.46.42.jpg", - "width": 944, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:46:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 14.46.42.jpg", - "handle": "2016-12-21 14.46.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.28.02.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.28.02.jpg", - "handle": "2018-02-13 10.28.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.39.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.11.39.jpg", - "handle": "2016-12-21 16.11.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8970.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-15 19:58:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8970.jpg", - "handle": "IMG_8970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 14.13.28.jpg", - "width": 675, - "height": 624, - "orientation": 0, - "taken_at": "2018-02-12 14:33:28", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 14.13.28.jpg", - "handle": "2018-02-12 14.13.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8743.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8743.jpg", - "handle": "IMG_8743.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9850.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:55:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9850.jpg", - "handle": "IMG_9850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8596.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-10 12:59:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8596.jpg", - "handle": "IMG_8596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9844.jpg", - "handle": "IMG_9844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.47.02.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-13 10:47:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.47.02.jpg", - "handle": "2018-02-13 10.47.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-15 18.15.01.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-15 18:15:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-15 18.15.01.jpg", - "handle": "2018-02-15 18.15.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9138.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 13:51:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9138.jpg", - "handle": "IMG_9138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9104.jpg", - "width": 585, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-21 18:21:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9104.jpg", - "handle": "IMG_9104.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180213_110206.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:02:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180213_110206.jpg", - "handle": "20180213_110206.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.10.50.jpg", - "handle": "2016-12-21 16.10.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9851.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:55:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9851.jpg", - "handle": "IMG_9851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8839.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:29:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8839.JPG", - "handle": "IMG_8839.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8434.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 11:21:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8434.jpg", - "handle": "IMG_8434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8408.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 03:11:05", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8408.jpg", - "handle": "IMG_8408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 19:16:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8424.jpg", - "handle": "IMG_8424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8430.jpg", - "width": 1000, - "height": 842, - "orientation": 0, - "taken_at": "2018-04-08 08:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8430.jpg", - "handle": "IMG_8430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9712.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-21 19:17:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9712.jpg", - "handle": "IMG_9712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9316.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:08:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9316.jpg", - "handle": "IMG_9316.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.43.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:43", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.38.43.jpg", - "handle": "2016-04-08 11.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.20.01.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 11.20.01.jpg", - "handle": "2018-02-13 11.20.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.15.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:15", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.11.15.jpg", - "handle": "2016-12-21 16.11.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8431.jpg", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-08 09:07:50", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8431.jpg", - "handle": "IMG_8431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.03.jpg", - "width": 766, - "height": 1337, - "orientation": 0, - "taken_at": "2016-04-08 11:27:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.27.03.jpg", - "handle": "2016-04-08 11.27.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.12.52.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:12:52", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 16.12.52.jpg", - "handle": "2016-12-21 16.12.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.01.jpg", - "width": 1600, - "height": 584, - "orientation": 0, - "taken_at": "2016-04-08 11:27:01", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.27.01.jpg", - "handle": "2016-04-08 11.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.09.21.jpg", - "width": 1199, - "height": 573, - "orientation": 0, - "taken_at": "2018-02-13 10:09:21", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.09.21.jpg", - "handle": "2018-02-13 10.09.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8745.jpg", - "handle": "IMG_8745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9315.jpg", - "width": 682, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 09:49:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9315.jpg", - "handle": "IMG_9315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9856.jpg", - "width": 1000, - "height": 668, - "orientation": 0, - "taken_at": "2018-05-13 08:00:41", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_9856.jpg", - "handle": "IMG_9856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8547.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 18:05:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8547.jpg", - "handle": "IMG_8547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 19:26:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8552.jpg", - "handle": "IMG_8552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8988.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:40:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8988.jpg", - "handle": "IMG_8988.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8744.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8744.jpg", - "handle": "IMG_8744.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 14:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8963.jpg", - "handle": "IMG_8963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9512.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 07:11:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9512.jpg", - "handle": "IMG_9512.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.04.48.jpg", - "width": 1200, - "height": 480, - "orientation": 0, - "taken_at": "2018-02-12 16:04:48", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 16.04.48.jpg", - "handle": "2018-02-12 16.04.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180214_070127.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:34:17", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180214_070127.jpg", - "handle": "20180214_070127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8455.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 13:47:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8455.jpg", - "handle": "IMG_8455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.29.56.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:29:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.29.56.jpg", - "handle": "2016-04-08 12.29.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9824.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9824.jpg", - "handle": "IMG_9824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9171.jpg", - "width": 1000, - "height": 645, - "orientation": 0, - "taken_at": "2018-04-27 13:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9171.jpg", - "handle": "IMG_9171.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.58.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:58:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_11.58.13.jpg", - "handle": "2016-08-24_11.58.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.01.22.jpg", - "width": 546, - "height": 985, - "orientation": 0, - "taken_at": "2018-02-12 16:01:22", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 16.01.22.jpg", - "handle": "2018-02-12 16.01.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9825.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9825.jpg", - "handle": "IMG_9825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:27:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9428.jpg", - "handle": "IMG_9428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8865.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 19:57:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8865.jpg", - "handle": "IMG_8865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.11.44.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:11:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 11.11.44.jpg", - "handle": "2018-02-13 11.11.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.23.22.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.23.22.jpg", - "handle": "2016-04-08 12.23.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8318.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 09:39:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8318.jpg", - "handle": "IMG_8318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.35.jpg", - "width": 1600, - "height": 500, - "orientation": 0, - "taken_at": "2016-12-21 13:21:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 13.21.35.jpg", - "handle": "2016-12-21 13.21.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9204.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-27 14:50:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9204.jpg", - "handle": "IMG_9204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8898.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 20:18:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8898.jpg", - "handle": "IMG_8898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 17.17.27.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:27", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 17.17.27.jpg", - "handle": "2018-02-12 17.17.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.25.55.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:25:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.25.55.jpg", - "handle": "2016-04-08 12.25.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9199.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-27 14:46:53", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9199.jpg", - "handle": "IMG_9199.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.40.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 10:40:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-08-24_10.40.13.jpg", - "handle": "2016-08-24_10.40.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9359.jpg", - "width": 1000, - "height": 589, - "orientation": 0, - "taken_at": "2018-05-05 18:37:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9359.jpg", - "handle": "IMG_9359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 23.27.14.jpg", - "width": 1489, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 15:27:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 23.27.14.jpg", - "handle": "2016-04-08 23.27.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8133.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-02-04 10:38:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8133.JPG", - "handle": "IMG_8133.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8325.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 13:55:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8325.jpg", - "handle": "IMG_8325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9013.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 17:48:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9013.JPG", - "handle": "IMG_9013.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.17.45.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:45", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.17.45.jpg", - "handle": "2018-02-13 10.17.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.25.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.05.25.jpg", - "handle": "2016-04-08 12.05.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8490.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-08 17:36:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8490.jpg", - "handle": "IMG_8490.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9995.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:34:35", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9995.JPG", - "handle": "IMG_9995.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.21.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-04-08 12:05:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.05.21.jpg", - "handle": "2016-04-08 12.05.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9003.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-17 14:01:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9003.jpg", - "handle": "IMG_9003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.00.59.jpg", - "width": 808, - "height": 1200, - "orientation": 90, - "taken_at": "2018-02-12 16:00:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 16.00.59.jpg", - "handle": "2018-02-12 16.00.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.28.58.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 10.28.58.jpg", - "handle": "2018-02-13 10.28.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9201.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-27 14:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9201.jpg", - "handle": "IMG_9201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8527.jpg", - "width": 1000, - "height": 604, - "orientation": 0, - "taken_at": "2018-04-09 12:09:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8527.jpg", - "handle": "IMG_8527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.01.18.jpg", - "width": 1199, - "height": 496, - "orientation": 0, - "taken_at": "2018-02-12 16:01:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 16.01.18.jpg", - "handle": "2018-02-12 16.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9823.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9823.jpg", - "handle": "IMG_9823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.17.37.jpg", - "width": 551, - "height": 667, - "orientation": 0, - "taken_at": "2018-02-13 11:17:37", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-13 11.17.37.jpg", - "handle": "2018-02-13 11.17.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9348.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:30:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9348.jpg", - "handle": "IMG_9348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.26.34.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:34", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.26.34.jpg", - "handle": "2016-04-08 11.26.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_145219.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:20:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180212_145219.jpg", - "handle": "20180212_145219.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.19.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 13:21:19", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-12-21 13.21.19.jpg", - "handle": "2016-12-21 13.21.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8687.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 21:40:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8687.jpg", - "handle": "IMG_8687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9941.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:44:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9941.jpg", - "handle": "IMG_9941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-14 18.11.13.jpg", - "width": 1200, - "height": 266, - "orientation": 0, - "taken_at": "2018-02-14 18:11:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-14 18.11.13.jpg", - "handle": "2018-02-14 18.11.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8849.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:01", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8849.JPG", - "handle": "IMG_8849.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9606.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 14:51:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_9606.jpg", - "handle": "IMG_9606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.57.54.jpg", - "width": 1600, - "height": 921, - "orientation": 0, - "taken_at": "2016-04-08 10:57:54", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 10.57.54.jpg", - "handle": "2016-04-08 10.57.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_175252.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:10:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180212_175252.jpg", - "handle": "20180212_175252.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 17.17.08.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:08", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 17.17.08.jpg", - "handle": "2018-02-12 17.17.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_141929.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:19:29", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/20180212_141929.jpg", - "handle": "20180212_141929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.37.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 12.05.37.jpg", - "handle": "2016-04-08 12.05.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8337.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-03-18 01:07:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_8337.jpg", - "handle": "IMG_8337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/500/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.56.23.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 16:56:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2018-02-12 16.56.23.jpg", - "handle": "2018-02-12 16.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.34.37.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 11:34:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/500/2016-04-08 11.34.37.jpg", - "handle": "2016-04-08 11.34.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/500/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "500": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9030.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-18 12:02:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9030.jpg", + "handle": "IMG_9030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9024.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 10:38:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9024.jpg", + "handle": "IMG_9024.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.14.42-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:14:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.14.42-2.jpg", + "handle": "2016-04-08 12.14.42-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.11.50.jpg", + "handle": "2016-12-21 16.11.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8925.jpg", + "width": 350, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 10:34:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8925.jpg", + "handle": "IMG_8925.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8919.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 23:53:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8919.jpg", + "handle": "IMG_8919.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8529.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 12:09:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8529.jpg", + "handle": "IMG_8529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.07.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:07", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.38.07.jpg", + "handle": "2016-04-08 11.38.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.39.jpg", + "width": 1600, + "height": 1580, + "orientation": 0, + "taken_at": "2016-12-21 16:10:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.10.39.jpg", + "handle": "2016-12-21 16.10.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.37.02.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:37:02", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 14.37.02.jpg", + "handle": "2016-12-21 14.37.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9019.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 08:09:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9019.jpg", + "handle": "IMG_9019.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.39.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.05.39.jpg", + "handle": "2016-04-08 12.05.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8477.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 15:10:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8477.jpg", + "handle": "IMG_8477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8311.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-13 18:43:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8311.jpg", + "handle": "IMG_8311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.13.42.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:13:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.13.42.jpg", + "handle": "2016-12-21 16.13.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9423.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-05-05 20:26:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9423.jpg", + "handle": "IMG_9423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.39.57.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:57", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_10.39.57.jpg", + "handle": "2016-08-24_10.39.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8700.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 01:37:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8700.jpg", + "handle": "IMG_8700.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8853.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:36", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8853.JPG", + "handle": "IMG_8853.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8847.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-12 18:38:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8847.jpg", + "handle": "IMG_8847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9032.jpg", + "width": 1000, + "height": 378, + "orientation": 0, + "taken_at": "2018-04-18 14:49:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9032.jpg", + "handle": "IMG_9032.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8466.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-04-08 14:00:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8466.jpg", + "handle": "IMG_8466.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8300.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-03-13 13:32:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8300.jpg", + "handle": "IMG_8300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8314.jpg", + "width": 1000, + "height": 534, + "orientation": 0, + "taken_at": "2018-03-13 18:46:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8314.jpg", + "handle": "IMG_8314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8328.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-16 07:36:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8328.jpg", + "handle": "IMG_8328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8710.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:50:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8710.jpg", + "handle": "IMG_8710.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9426.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 20:27:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9426.jpg", + "handle": "IMG_9426.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9195.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-27 14:38:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9195.jpg", + "handle": "IMG_9195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8506.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-09 03:10:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8506.jpg", + "handle": "IMG_8506.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.45.00.jpg", + "width": 1600, + "height": 1219, + "orientation": 0, + "taken_at": "2016-04-08 11:45:00", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.45.00.jpg", + "handle": "2016-04-08 11.45.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.39.53.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:53", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_10.39.53.jpg", + "handle": "2016-08-24_10.39.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.26.29.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:29", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.26.29.jpg", + "handle": "2016-04-08 11.26.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.56.22.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 10:56:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 10.56.22.jpg", + "handle": "2016-04-08 10.56.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.38.jpg", + "width": 1600, + "height": 553, + "orientation": 0, + "taken_at": "2016-12-21 13:21:38", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 13.21.38.jpg", + "handle": "2016-12-21 13.21.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8842.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:22:25", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8842.JPG", + "handle": "IMG_8842.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9023.jpg", + "width": 1000, + "height": 528, + "orientation": 0, + "taken_at": "2018-04-18 10:23:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9023.jpg", + "handle": "IMG_9023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.29.33-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:29:33", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.29.33-2.jpg", + "handle": "2016-04-08 12.29.33-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_12.37.03.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_12.37.03.jpg", + "handle": "2016-08-24_12.37.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.23.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.23.13.jpg", + "handle": "2016-04-08 12.23.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.55.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.11.55.jpg", + "handle": "2016-12-21 16.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.58.31.jpg", + "width": 1600, + "height": 874, + "orientation": 0, + "taken_at": "2016-04-08 10:58:31", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 10.58.31.jpg", + "handle": "2016-04-08 10.58.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.48.40.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-12-21 16:48:40", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.48.40.jpg", + "handle": "2016-12-21 16.48.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8707.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:32:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8707.jpg", + "handle": "IMG_8707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9815.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 18:06:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9815.jpg", + "handle": "IMG_9815.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:26:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9424.jpg", + "handle": "IMG_9424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9395.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:39:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9395.JPG", + "handle": "IMG_9395.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9020.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 08:54:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9020.jpg", + "handle": "IMG_9020.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 15:18:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9034.jpg", + "handle": "IMG_9034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9008.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-17 14:42:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9008.jpg", + "handle": "IMG_9008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-12 17:00:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8832.jpg", + "handle": "IMG_8832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.37.08.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:08", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.37.08.jpg", + "handle": "2016-04-08 11.37.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.56.46.jpg", + "width": 1600, + "height": 1275, + "orientation": 0, + "taken_at": "2016-04-08 10:56:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 10.56.46.jpg", + "handle": "2016-04-08 10.56.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.11.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:11:41", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_11.11.41.jpg", + "handle": "2016-08-24_11.11.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9325.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 12:38:25", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9325.jpg", + "handle": "IMG_9325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9654.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 15:19:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9654.jpg", + "handle": "IMG_9654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8238.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:02:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8238.jpg", + "handle": "IMG_8238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.02.25.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:02:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 14.02.25.jpg", + "handle": "2016-12-21 14.02.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8416.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 17:40:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8416.jpg", + "handle": "IMG_8416.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9087.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:25:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9087.jpg", + "handle": "IMG_9087.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.26.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:27:26", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.27.26.jpg", + "handle": "2016-04-08 11.27.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 08:13:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8428.jpg", + "handle": "IMG_8428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.24.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:11:24", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.11.24.jpg", + "handle": "2016-12-21 16.11.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.59.06.jpg", + "width": 1600, + "height": 407, + "orientation": 0, + "taken_at": "2016-08-24 11:59:06", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_11.59.06.jpg", + "handle": "2016-08-24_11.59.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8164.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-18 13:26:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8164.jpg", + "handle": "IMG_8164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8951.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-14 15:22:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8951.jpg", + "handle": "IMG_8951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_09.56.23.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:23", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_09.56.23.jpg", + "handle": "2016-08-24_09.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9656.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-07 15:29:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9656.jpg", + "handle": "IMG_9656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8561.jpg", + "width": 1000, + "height": 477, + "orientation": 0, + "taken_at": "2018-04-09 19:34:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8561.jpg", + "handle": "IMG_8561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.59.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:59", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.10.59.jpg", + "handle": "2016-12-21 16.10.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:39:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8987.jpg", + "handle": "IMG_8987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8944.jpg", + "width": 955, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 13:15:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8944.jpg", + "handle": "IMG_8944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8415.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 17:39:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8415.jpg", + "handle": "IMG_8415.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9041.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-19 11:05:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9041.jpg", + "handle": "IMG_9041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:54:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9849.jpg", + "handle": "IMG_9849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8821.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:25:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8821.jpg", + "handle": "IMG_8821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9083.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:18:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9083.jpg", + "handle": "IMG_9083.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.02.21.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:02:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 14.02.21.jpg", + "handle": "2016-12-21 14.02.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8758.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:00:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8758.jpg", + "handle": "IMG_8758.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9320.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:09:10", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9320.jpg", + "handle": "IMG_9320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9122.jpg", + "width": 1000, + "height": 432, + "orientation": 0, + "taken_at": "2018-04-22 12:56:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9122.jpg", + "handle": "IMG_9122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.59.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 10:59:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 10.59.13.jpg", + "handle": "2016-04-08 10.59.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8567.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:26:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8567.jpg", + "handle": "IMG_8567.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8759.jpg", + "width": 709, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:01:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8759.jpg", + "handle": "IMG_8759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.10-1.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:10", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.38.10-1.jpg", + "handle": "2016-04-08 11.38.10-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8163.jpg", + "width": 1000, + "height": 600, + "orientation": 0, + "taken_at": "2018-02-18 13:25:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8163.jpg", + "handle": "IMG_8163.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8836.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:05:55", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8836.JPG", + "handle": "IMG_8836.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_12.37.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:49", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_12.37.49.jpg", + "handle": "2016-08-24_12.37.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8436.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 12:13:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8436.jpg", + "handle": "IMG_8436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180213_102748.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 11:27:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180213_102748.jpg", + "handle": "20180213_102748.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.20.06.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 11.20.06.jpg", + "handle": "2018-02-13 11.20.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8807.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:10:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8807.jpg", + "handle": "IMG_8807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180214_065950.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 06:59:50", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180214_065950.jpg", + "handle": "20180214_065950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.57.35.jpg", + "width": 1600, + "height": 605, + "orientation": 0, + "taken_at": "2016-08-24 11:57:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_11.57.35.jpg", + "handle": "2016-08-24_11.57.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8967.jpg", + "width": 1000, + "height": 339, + "orientation": 0, + "taken_at": "2018-04-15 17:57:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8967.jpg", + "handle": "IMG_8967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_151354.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 15:13:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180212_151354.jpg", + "handle": "20180212_151354.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9847.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9847.jpg", + "handle": "IMG_9847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.46.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.10.46.jpg", + "handle": "2016-12-21 16.10.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9112.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:38:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9112.jpg", + "handle": "IMG_9112.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_09.56.14.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_09.56.14.jpg", + "handle": "2016-08-24_09.56.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8972.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-15 19:59:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8972.jpg", + "handle": "IMG_8972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.37.14.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.37.14.jpg", + "handle": "2016-04-08 11.37.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.17.31.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.17.31.jpg", + "handle": "2018-02-13 10.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9071.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-19 17:01:04", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9071.jpg", + "handle": "IMG_9071.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.46.56.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:46:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 14.46.56.jpg", + "handle": "2016-12-21 14.46.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 14.46.42.jpg", + "width": 944, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:46:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 14.46.42.jpg", + "handle": "2016-12-21 14.46.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.28.02.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.28.02.jpg", + "handle": "2018-02-13 10.28.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.39.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.11.39.jpg", + "handle": "2016-12-21 16.11.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8970.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-15 19:58:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8970.jpg", + "handle": "IMG_8970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 14.13.28.jpg", + "width": 675, + "height": 624, + "orientation": 0, + "taken_at": "2018-02-12 14:33:28", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 14.13.28.jpg", + "handle": "2018-02-12 14.13.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8743.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8743.jpg", + "handle": "IMG_8743.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9850.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:55:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9850.jpg", + "handle": "IMG_9850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8596.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-10 12:59:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8596.jpg", + "handle": "IMG_8596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9844.jpg", + "handle": "IMG_9844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.47.02.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-13 10:47:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.47.02.jpg", + "handle": "2018-02-13 10.47.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-15 18.15.01.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-15 18:15:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-15 18.15.01.jpg", + "handle": "2018-02-15 18.15.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9138.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 13:51:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9138.jpg", + "handle": "IMG_9138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9104.jpg", + "width": 585, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-21 18:21:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9104.jpg", + "handle": "IMG_9104.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180213_110206.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:02:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180213_110206.jpg", + "handle": "20180213_110206.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.10.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.10.50.jpg", + "handle": "2016-12-21 16.10.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9851.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:55:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9851.jpg", + "handle": "IMG_9851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8839.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:29:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8839.JPG", + "handle": "IMG_8839.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8434.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 11:21:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8434.jpg", + "handle": "IMG_8434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8408.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 03:11:05", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8408.jpg", + "handle": "IMG_8408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 19:16:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8424.jpg", + "handle": "IMG_8424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8430.jpg", + "width": 1000, + "height": 842, + "orientation": 0, + "taken_at": "2018-04-08 08:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8430.jpg", + "handle": "IMG_8430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9712.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-21 19:17:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9712.jpg", + "handle": "IMG_9712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9316.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:08:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9316.jpg", + "handle": "IMG_9316.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.38.43.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:43", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.38.43.jpg", + "handle": "2016-04-08 11.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.20.01.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 11.20.01.jpg", + "handle": "2018-02-13 11.20.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.11.15.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:15", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.11.15.jpg", + "handle": "2016-12-21 16.11.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8431.jpg", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-08 09:07:50", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8431.jpg", + "handle": "IMG_8431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.03.jpg", + "width": 766, + "height": 1337, + "orientation": 0, + "taken_at": "2016-04-08 11:27:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.27.03.jpg", + "handle": "2016-04-08 11.27.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 16.12.52.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:12:52", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 16.12.52.jpg", + "handle": "2016-12-21 16.12.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.27.01.jpg", + "width": 1600, + "height": 584, + "orientation": 0, + "taken_at": "2016-04-08 11:27:01", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.27.01.jpg", + "handle": "2016-04-08 11.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.09.21.jpg", + "width": 1199, + "height": 573, + "orientation": 0, + "taken_at": "2018-02-13 10:09:21", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.09.21.jpg", + "handle": "2018-02-13 10.09.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8745.jpg", + "handle": "IMG_8745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9315.jpg", + "width": 682, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 09:49:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9315.jpg", + "handle": "IMG_9315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9856.jpg", + "width": 1000, + "height": 668, + "orientation": 0, + "taken_at": "2018-05-13 08:00:41", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_9856.jpg", + "handle": "IMG_9856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8547.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 18:05:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8547.jpg", + "handle": "IMG_8547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 19:26:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8552.jpg", + "handle": "IMG_8552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8988.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:40:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8988.jpg", + "handle": "IMG_8988.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8744.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8744.jpg", + "handle": "IMG_8744.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 14:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8963.jpg", + "handle": "IMG_8963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9512.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 07:11:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9512.jpg", + "handle": "IMG_9512.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.04.48.jpg", + "width": 1200, + "height": 480, + "orientation": 0, + "taken_at": "2018-02-12 16:04:48", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 16.04.48.jpg", + "handle": "2018-02-12 16.04.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180214_070127.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:34:17", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180214_070127.jpg", + "handle": "20180214_070127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8455.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 13:47:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8455.jpg", + "handle": "IMG_8455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.29.56.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:29:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.29.56.jpg", + "handle": "2016-04-08 12.29.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9824.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9824.jpg", + "handle": "IMG_9824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9171.jpg", + "width": 1000, + "height": 645, + "orientation": 0, + "taken_at": "2018-04-27 13:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9171.jpg", + "handle": "IMG_9171.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_11.58.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:58:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_11.58.13.jpg", + "handle": "2016-08-24_11.58.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.01.22.jpg", + "width": 546, + "height": 985, + "orientation": 0, + "taken_at": "2018-02-12 16:01:22", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 16.01.22.jpg", + "handle": "2018-02-12 16.01.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9825.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9825.jpg", + "handle": "IMG_9825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:27:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9428.jpg", + "handle": "IMG_9428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8865.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 19:57:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8865.jpg", + "handle": "IMG_8865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.11.44.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:11:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 11.11.44.jpg", + "handle": "2018-02-13 11.11.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.23.22.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.23.22.jpg", + "handle": "2016-04-08 12.23.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8318.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 09:39:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8318.jpg", + "handle": "IMG_8318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.35.jpg", + "width": 1600, + "height": 500, + "orientation": 0, + "taken_at": "2016-12-21 13:21:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 13.21.35.jpg", + "handle": "2016-12-21 13.21.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9204.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-27 14:50:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9204.jpg", + "handle": "IMG_9204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8898.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 20:18:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8898.jpg", + "handle": "IMG_8898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 17.17.27.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:27", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 17.17.27.jpg", + "handle": "2018-02-12 17.17.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.25.55.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:25:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.25.55.jpg", + "handle": "2016-04-08 12.25.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9199.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-27 14:46:53", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9199.jpg", + "handle": "IMG_9199.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-08-24_10.40.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 10:40:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-08-24_10.40.13.jpg", + "handle": "2016-08-24_10.40.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9359.jpg", + "width": 1000, + "height": 589, + "orientation": 0, + "taken_at": "2018-05-05 18:37:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9359.jpg", + "handle": "IMG_9359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 23.27.14.jpg", + "width": 1489, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 15:27:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 23.27.14.jpg", + "handle": "2016-04-08 23.27.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8133.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-02-04 10:38:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8133.JPG", + "handle": "IMG_8133.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8325.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 13:55:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8325.jpg", + "handle": "IMG_8325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9013.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 17:48:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9013.JPG", + "handle": "IMG_9013.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.17.45.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:45", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.17.45.jpg", + "handle": "2018-02-13 10.17.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.25.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.05.25.jpg", + "handle": "2016-04-08 12.05.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8490.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-08 17:36:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8490.jpg", + "handle": "IMG_8490.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9995.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:34:35", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9995.JPG", + "handle": "IMG_9995.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.21.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-04-08 12:05:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.05.21.jpg", + "handle": "2016-04-08 12.05.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9003.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-17 14:01:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9003.jpg", + "handle": "IMG_9003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.00.59.jpg", + "width": 808, + "height": 1200, + "orientation": 90, + "taken_at": "2018-02-12 16:00:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 16.00.59.jpg", + "handle": "2018-02-12 16.00.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 10.28.58.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 10.28.58.jpg", + "handle": "2018-02-13 10.28.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9201.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-27 14:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9201.jpg", + "handle": "IMG_9201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8527.jpg", + "width": 1000, + "height": 604, + "orientation": 0, + "taken_at": "2018-04-09 12:09:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8527.jpg", + "handle": "IMG_8527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.01.18.jpg", + "width": 1199, + "height": 496, + "orientation": 0, + "taken_at": "2018-02-12 16:01:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 16.01.18.jpg", + "handle": "2018-02-12 16.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9823.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9823.jpg", + "handle": "IMG_9823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-13 11.17.37.jpg", + "width": 551, + "height": 667, + "orientation": 0, + "taken_at": "2018-02-13 11:17:37", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-13 11.17.37.jpg", + "handle": "2018-02-13 11.17.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9348.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:30:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9348.jpg", + "handle": "IMG_9348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.26.34.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:34", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.26.34.jpg", + "handle": "2016-04-08 11.26.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_145219.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:20:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180212_145219.jpg", + "handle": "20180212_145219.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-12-21 13.21.19.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 13:21:19", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-12-21 13.21.19.jpg", + "handle": "2016-12-21 13.21.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8687.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 21:40:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8687.jpg", + "handle": "IMG_8687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9941.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:44:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9941.jpg", + "handle": "IMG_9941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-14 18.11.13.jpg", + "width": 1200, + "height": 266, + "orientation": 0, + "taken_at": "2018-02-14 18:11:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-14 18.11.13.jpg", + "handle": "2018-02-14 18.11.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8849.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:01", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8849.JPG", + "handle": "IMG_8849.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_9606.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 14:51:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_9606.jpg", + "handle": "IMG_9606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 10.57.54.jpg", + "width": 1600, + "height": 921, + "orientation": 0, + "taken_at": "2016-04-08 10:57:54", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 10.57.54.jpg", + "handle": "2016-04-08 10.57.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_175252.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:10:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180212_175252.jpg", + "handle": "20180212_175252.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 17.17.08.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:08", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 17.17.08.jpg", + "handle": "2018-02-12 17.17.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/20180212_141929.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:19:29", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/20180212_141929.jpg", + "handle": "20180212_141929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 12.05.37.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 12.05.37.jpg", + "handle": "2016-04-08 12.05.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_8337.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-03-18 01:07:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_8337.jpg", + "handle": "IMG_8337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/500/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2018-02-12 16.56.23.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 16:56:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2018-02-12 16.56.23.jpg", + "handle": "2018-02-12 16.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/2016-04-08 11.34.37.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 11:34:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/500/2016-04-08 11.34.37.jpg", + "handle": "2016-04-08 11.34.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/500/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/500/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/56K-Cloud-Experiences-client.json b/core/data/image-sets/56K-Cloud-Experiences-client.json index d2c0d0e..492151f 100644 --- a/core/data/image-sets/56K-Cloud-Experiences-client.json +++ b/core/data/image-sets/56K-Cloud-Experiences-client.json @@ -1,6450 +1,6450 @@ { - "56K-Cloud-Experiences": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-13 17:02:02", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", - "handle": "IMG20230313170202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-11 12:51:57", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", - "handle": "IMG_20170211_125157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-28 20:15:15", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", - "handle": "IMG20230328201515.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:49", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", - "handle": "IMG20230315135349.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-18 20:32:13", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", - "handle": "IMG_20210818_203211.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", - "width": 3536, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-11 17:57:41", - "cameraModel": "M2002J9G", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", - "handle": "IMG_20210311_180021.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", - "width": 2265, - "height": 2545, - "rotation": 0, - "captureTime": "2020-01-23 14:31:38", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", - "handle": "IMG_20200123_143138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2023-03-30 13:28:46", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", - "handle": "IMG20230330132846.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-05-31 19:08:46", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", - "handle": "IMG20230531190846.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 12:40:52", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", - "handle": "IMG20230315124052.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", - "width": 2048, - "height": 1536, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", - "handle": "Chursirsten - Toggenburg.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-05 09:22:41", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", - "handle": "IMG20230205092241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-04-06 16:45:47", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", - "handle": "IMG_20200406_164547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 11:55:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", - "handle": "IMG_20191002_115540.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:44:21", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", - "handle": "IMG_5965.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", - "width": 4000, - "height": 3000, - "rotation": 270, - "captureTime": "2020-10-08 18:28:20", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", - "handle": "IMG_20201008_182817.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:55:25", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", - "handle": "IMG_5971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:39:50", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", - "handle": "IMG_5959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", - "width": 4096, - "height": 2304, - "rotation": 0, - "captureTime": "2023-02-06 21:49:02", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", - "handle": "IMG20230206214902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-07-01 11:46:28", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", - "handle": "IMG_20210701_114626.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-15 18:03:05", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", - "handle": "IMG_20210315_180302.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-14 17:04:23", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", - "handle": "IMG_20170214_170423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-12 15:44:45", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", - "handle": "IMG_20210312_154444.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-07-10 22:33:43", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", - "handle": "IMG_20200710_223343.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-01-18 13:30:27", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", - "handle": "IMG_20180118_133026.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:54:25", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", - "handle": "IMG20230331125425.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:39:48", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", - "handle": "IMG_5958.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:55:23", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", - "handle": "IMG_5970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:42:18", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", - "handle": "IMG_5964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 16:42:54", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", - "handle": "IMG_20200206_192610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-01-25 14:47:09", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", - "handle": "IMG_20180125_144708_02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-12-20 19:46:29", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", - "handle": "IMG_20191220_194629.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:04:31", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", - "handle": "IMG20230205120431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-12-05 17:45:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", - "handle": "IMG_20191205_174504.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-08-19 18:46:19", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", - "handle": "IMG_20210819_184618.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-15 11:10:24", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", - "handle": "IMG_20210315_111022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", - "width": 2605, - "height": 1312, - "rotation": 0, - "captureTime": "2021-05-04 12:02:53", - "cameraModel": "M2002J9G", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", - "handle": "IMG_20210504_140308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-09 11:27:24", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", - "handle": "IMG_20200709_112724.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2023-03-30 13:28:47", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", - "handle": "IMG20230330132847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:48", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", - "handle": "IMG20230315135348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-03-12 16:20:55", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", - "handle": "IMG_20210312_162054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", - "width": 3008, - "height": 2000, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", - "handle": "2020_0207_18072400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-13 17:02:03", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", - "handle": "IMG20230313170203.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", - "width": 2400, - "height": 1080, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", - "handle": "Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-16 13:49:21", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", - "handle": "IMG20230316134921.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2019-09-27 15:16:19", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", - "handle": "IMG_20190927_151620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-08-19 08:47:48", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", - "handle": "IMG_20210819_084746.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-10-08 20:11:05", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", - "handle": "IMG_20191008_201105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:17", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", - "handle": "IMG_5972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-04 19:05:42", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", - "handle": "IMG20230204190542.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", - "width": 3024, - "height": 4032, - "rotation": 0, - "captureTime": "2023-03-22 11:51:20", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", - "handle": "IMG_5966.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-12-14 11:56:29", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", - "handle": "IMG_20211214_115627.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", - "width": 5366, - "height": 2982, - "rotation": 0, - "captureTime": "2020-07-09 11:28:51", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", - "handle": "IMG_20200709_113028.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2020-10-09 07:26:21", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", - "handle": "IMG_20201009_072619.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-12 11:30:45", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", - "handle": "IMG_20210312_113042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-01-25 14:48:00", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", - "handle": "IMG_20180125_144800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", - "width": 4000, - "height": 1800, - "rotation": 180, - "captureTime": "2020-12-04 08:19:46", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", - "handle": "IMG_20201204_081944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:59:37", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", - "handle": "IMG_20221206_195935.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", - "width": 2592, - "height": 1944, - "rotation": 0, - "captureTime": "2018-01-29 21:58:58", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", - "handle": "IMG_20180129_215858.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:51:46", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", - "handle": "IMG_5967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:19", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", - "handle": "IMG_5973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-03-08 10:52:53", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", - "handle": "IMG_20180308_105253.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-10-13 17:48:00", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", - "handle": "IMG_20191013_174800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-19 14:15:56", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", - "handle": "IMG_20210819_141553.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", - "width": 6144, - "height": 8192, - "rotation": 0, - "captureTime": "2023-03-28 20:49:02", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", - "handle": "IMG20230328204902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-02-07 10:30:06", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", - "handle": "IMG_20200207_103006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:01", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", - "handle": "IMG_20200710_140501.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-15 12:40:44", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", - "handle": "IMG20230315124044.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", - "width": 4623, - "height": 3460, - "rotation": 90, - "captureTime": "2019-12-05 17:33:20", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", - "handle": "IMG_20191205_173320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-15 11:10:13", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", - "handle": "IMG_20210315_111009.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-19 06:46:46", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", - "handle": "IMG_20191019_064646.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", - "width": 4656, - "height": 2620, - "rotation": 270, - "captureTime": "2020-02-06 09:41:00", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", - "handle": "IMG_20200206_094100.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", - "width": 1800, - "height": 4000, - "rotation": 0, - "captureTime": "2021-03-02 21:16:58", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", - "handle": "IMG_20210302_211655.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-04 18:08:03", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", - "handle": "IMG20230204180803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-12 20:17:54", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", - "handle": "IMG20230312201754.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-06-01 11:25:12", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", - "handle": "IMG20230601112512.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-01-01 20:34:44", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", - "handle": "IMG_20210101_203442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-06 19:30:31", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", - "handle": "IMG20230206193031.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-02-06 16:39:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", - "handle": "IMG_20200206_163942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 07:36:35", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", - "handle": "IMG_20180318_073634.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-02-07 15:20:34", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", - "handle": "IMG20230207152034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-08-31 12:54:00", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", - "handle": "IMG_6649.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-15 12:40:40", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", - "handle": "IMG20230315124040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-10-17 17:47:02", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", - "handle": "IMG_20191017_174702.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", - "width": 3249, - "height": 1800, - "rotation": 0, - "captureTime": "2021-10-25 16:37:00", - "cameraModel": "M2002J9G", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", - "handle": "IMG_20211025_172332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:41", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", - "handle": "IMG_5977.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:40:59", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", - "handle": "IMG_5963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", - "width": 3000, - "height": 4000, - "rotation": 0, - "captureTime": "2023-06-01 19:18:55", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", - "handle": "IMG20230601191855.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-12 15:44:44", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", - "handle": "IMG_20210312_154442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-09 12:09:52", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", - "handle": "IMG_20200209_120952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-04-15 22:02:02", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", - "handle": "IMG_20180415_220200.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-03-31 13:13:13", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", - "handle": "IMG_20190331_131312.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:20:22", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", - "handle": "IMG20230205122022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:40:58", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", - "handle": "IMG_5962.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", - "width": 4656, - "height": 2620, - "rotation": 0, - "captureTime": "2020-02-06 19:35:08", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", - "handle": "IMG_20200206_193508.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-03-14 12:14:40", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", - "handle": "IMG_20190314_121440.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 18:41:42", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", - "handle": "IMG_20221206_184140.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:38", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", - "handle": "IMG_5976.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 12:01:45", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", - "handle": "IMG_20200710_120145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-09-05 13:09:21", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", - "handle": "IMG_20180905_130921.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:04:37", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", - "handle": "IMG20230205120437.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-01-25 14:50:59", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", - "handle": "IMG_20180125_145059.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-03-09 09:05:17", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", - "handle": "IMG20230309090517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-09 09:05:03", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", - "handle": "IMG20230309090503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", - "handle": "IMG_20200710_140504.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-16 17:20:25", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", - "handle": "IMG20230316172025.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 12:40:55", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", - "handle": "IMG20230315124055.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-05 16:20:14", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", - "handle": "IMG_20200205_165455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-02-11 13:01:35", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", - "handle": "IMG_20210211_130133.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-12 17:37:28", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", - "handle": "IMG_20191212_173728.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-04 11:02:26", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", - "handle": "IMG20230204110226.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-09-10 10:20:56", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", - "handle": "IMG_20190910_102056.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-04-14 20:41:26", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", - "handle": "IMG_20180414_204126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", - "width": 4311, - "height": 2423, - "rotation": 0, - "captureTime": "2019-08-14 12:01:38", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", - "handle": "IMG_20190814_120138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-02-24 18:02:36", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", - "handle": "IMG_20220224_180235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2019-12-20 18:49:53", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", - "handle": "IMG_20191220_184953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 22:19:48", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", - "handle": "IMG_20210629_221947.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-04 18:08:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", - "handle": "IMG20230204180810.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:55:41", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", - "handle": "IMG20230331125541.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:56:09", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", - "handle": "IMG_20200222_125609_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-12-20 13:35:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", - "handle": "IMG_20191220_133531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-14 14:34:16", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", - "handle": "IMG_20170214_143417.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-25 16:03:40", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", - "handle": "IMG_20210325_160337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-02-08 08:02:35", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", - "handle": "IMG_20200208_080235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:09", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", - "handle": "IMG20230315143609.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 12:49:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", - "handle": "IMG_20200206_124940.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:30:42", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", - "handle": "IMG_5948.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:39:55", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", - "handle": "IMG_5960.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:21", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", - "handle": "IMG_5974.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", - "width": 4000, - "height": 1800, - "rotation": 180, - "captureTime": "2020-12-04 08:20:00", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", - "handle": "IMG_20201204_081957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 18:02:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", - "handle": "IMG_20191002_180204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 18:02:38", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", - "handle": "IMG_20191002_180238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-02-02 15:19:18", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", - "handle": "IMG_20220202_151917.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:59:36", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", - "handle": "IMG_20221206_195933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 18:02:11", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", - "handle": "IMG_20191002_180211.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2018-07-26 14:13:41", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", - "handle": "IMG_20180726_141341.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:22", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", - "handle": "IMG_5975.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", - "width": 4656, - "height": 2620, - "rotation": 0, - "captureTime": "2020-05-11 09:52:05", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", - "handle": "IMG_20200511_095205.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:40:29", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", - "handle": "IMG_5961.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 16:42:56", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", - "handle": "IMG_20200206_192615.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:30:44", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", - "handle": "IMG_5949.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 10:14:36", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", - "handle": "IMG_20170211_101436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-03-03 10:57:41", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", - "handle": "IMG_20200303_105741.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", - "width": 4623, - "height": 3460, - "rotation": 180, - "captureTime": "2019-11-12 16:43:17", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", - "handle": "IMG_20191112_164317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 11:38:16", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", - "handle": "IMG_20210630_113814.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2019-08-28 10:59:53", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", - "handle": "IMG_20190828_105953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:38:40", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", - "handle": "IMG20230205123840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-09 09:05:00", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", - "handle": "IMG20230309090500.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-12 17:26:31", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", - "handle": "IMG_20190612_172631.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", - "width": 4000, - "height": 1800, - "rotation": 180, - "captureTime": "2020-12-04 08:18:38", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", - "handle": "IMG_20201204_081836.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 21:02:25", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", - "handle": "IMG_20210629_210225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2020-10-08 20:28:54", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", - "handle": "IMG_20201008_202852.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", - "width": 4000, - "height": 1800, - "rotation": 180, - "captureTime": "2020-12-04 08:18:26", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", - "handle": "IMG_20201204_081822.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 11:59:55", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", - "handle": "IMG_20180318_115955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2020-10-08 17:11:23", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", - "handle": "IMG_20201008_171122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", - "width": 1920, - "height": 1920, - "rotation": 0, - "captureTime": "2023-03-23 09:43:28", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", - "handle": "IMG20230323094328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-25 15:40:28", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", - "handle": "IMG_20200125_154028.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", - "width": 3000, - "height": 4000, - "rotation": 0, - "captureTime": "2023-06-01 19:38:02", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", - "handle": "IMG20230601193802.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", - "width": 1800, - "height": 4000, - "rotation": 0, - "captureTime": "2022-09-30 11:11:30", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", - "handle": "IMG_20220930_111129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2020-10-08 20:28:37", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", - "handle": "IMG_20201008_202835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-02-20 12:26:56", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", - "handle": "IMG_20190220_122656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-02-07 15:20:45", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", - "handle": "IMG20230207152045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-19 08:47:35", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", - "handle": "IMG_20210819_084732.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:55:37", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", - "handle": "IMG_20200222_125537.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:44", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", - "handle": "IMG20230315143644_01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-05 19:25:50", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", - "handle": "IMG_20191205_192550.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-10 17:27:20", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", - "handle": "IMG20230310172720.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 22:18:42", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", - "handle": "IMG_20210629_221840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-07-26 14:13:28", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", - "handle": "IMG_20180726_141327.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-27 12:55:13", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", - "handle": "IMG_20190927_125513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", - "width": 4000, - "height": 2250, - "rotation": 90, - "captureTime": "2020-02-08 09:03:37", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", - "handle": "IMG_20200208_090337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:53:08", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", - "handle": "IMG20230331125308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:54:52", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", - "handle": "IMG20230331125452.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:46:56", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", - "handle": "IMG_20190614_094656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", - "width": 1920, - "height": 1080, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", - "handle": "VID_20190614_140423.mp4" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-07 11:59:43", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", - "handle": "IMG_20200207_115943.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", - "width": 3264, - "height": 1472, - "rotation": 270, - "captureTime": "2021-03-12 16:19:31", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", - "handle": "IMG_20210312_161927.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-01-24 09:07:36", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", - "handle": "IMG_20190124_090735.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-19 20:59:32", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", - "handle": "IMG_20210819_205929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", - "width": 3264, - "height": 1472, - "rotation": 0, - "captureTime": "2021-08-19 19:49:41", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", - "handle": "IMG_20210819_194939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-10-02 13:10:45", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", - "handle": "IMG_20191002_131045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-20 18:49:36", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", - "handle": "IMG_20191220_184936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-03-18 07:36:53", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", - "handle": "IMG_20180318_073652.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-02-01 18:05:35", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", - "handle": "IMG_20190201_180534.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:18:35", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", - "handle": "IMG20230205121835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:57:32", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", - "handle": "IMG20230331125732.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", - "width": 2448, - "height": 3264, - "rotation": 0, - "captureTime": "2023-03-16 16:03:20", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", - "handle": "IMG20230316160320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-09-03 18:01:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", - "handle": "IMG_20200903_180204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-15 21:10:25", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", - "handle": "IMG20230315211025.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:44", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", - "handle": "IMG20230315143644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-02 16:41:04", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", - "handle": "IMG20230602164104.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-02-07 09:44:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", - "handle": "IMG_20200207_094442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 13:28:21", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", - "handle": "IMG_20200206_132821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 18:59:49", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", - "handle": "IMG_20221206_185946.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-12-20 19:46:48", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", - "handle": "IMG_20191220_194648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-02-12 18:09:59", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", - "handle": "IMG_20190212_180959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 11:55:29", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", - "handle": "IMG20230314115529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-05 17:17:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", - "handle": "IMG_20200205_171731.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", - "width": 3024, - "height": 4032, - "rotation": 0, - "captureTime": "2022-09-16 08:48:55", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", - "handle": "IMG_5078.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:54:51", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", - "handle": "IMG20230331125451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", - "width": 2304, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-07 15:18:23", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", - "handle": "IMG20230207151823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 18:02:48", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", - "handle": "IMG_20191002_180248.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-16 13:34:33", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", - "handle": "IMG20230316133433.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-19 11:36:01", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", - "handle": "IMG_20210819_113600_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", - "width": 3708, - "height": 1581, - "rotation": 0, - "captureTime": "2023-03-15 16:01:30", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", - "handle": "IMG_20230315_224557.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2020-10-08 18:38:01", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", - "handle": "IMG_20201008_183759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 11:45:55", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", - "handle": "IMG_20210630_114553~2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-15 14:38:58", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", - "handle": "IMG_20210315_143857.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", - "width": 4608, - "height": 3456, - "rotation": 90, - "captureTime": "2021-08-19 15:19:06", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", - "handle": "IMG_20210819_151904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 17:46:34", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", - "handle": "IMG_20210630_174632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-26 19:16:19", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", - "handle": "IMG_20190926_191620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 15:32:49", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", - "handle": "IMG_20170211_153249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", - "width": 2448, - "height": 3264, - "rotation": 0, - "captureTime": "2023-03-16 16:03:21", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", - "handle": "IMG20230316160321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:30:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", - "handle": "IMG20230205123010.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", - "handle": "IMG_6612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", - "width": 3008, - "height": 2000, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", - "handle": "2020_0207_18060500.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-24 12:23:05", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", - "handle": "IMG_20190924_122305.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-07-13 12:38:13", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", - "handle": "IMG_20210713_123811.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-07-11 14:58:07", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", - "handle": "IMG_20190711_145807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", - "width": 2400, - "height": 1080, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", - "handle": "Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:53:27", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", - "handle": "IMG_20200222_125327.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 21:16:40", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", - "handle": "IMG_20210629_211638.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-14 14:25:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", - "handle": "IMG20230314142510.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", - "width": 4618, - "height": 3464, - "rotation": 270, - "captureTime": "2020-02-22 12:56:56", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", - "handle": "IMG_20200222_125657.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 12:00:09", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", - "handle": "IMG_20180318_120009.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:19", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", - "handle": "IMG_20190614_094719.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-20 18:49:33", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", - "handle": "IMG_20191220_184933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2020-10-08 17:11:31", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", - "handle": "IMG_20201008_171130.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-23 14:34:05", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", - "handle": "IMG_20200123_143405.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-10-25 16:37:00", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", - "handle": "IMG_20211025_163658.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", - "width": 1186, - "height": 1600, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", - "handle": "IMG-20160309-WA0003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-07-09 11:27:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", - "handle": "IMG_20200709_112740.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-13 17:01:39", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", - "handle": "IMG20230313170139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-18 16:57:51", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", - "handle": "IMG_20191018_165751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-05-02 20:47:19", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", - "handle": "IMG_20190502_204718.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-02 21:17:54", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", - "handle": "IMG_20210302_211752.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 15:33:39", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", - "handle": "IMG_20170211_153339.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-03-03 11:34:32", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", - "handle": "IMG_20200303_113432.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-12 15:44:39", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", - "handle": "IMG_20210312_154435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-04-05 10:33:26", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", - "handle": "IMG_20190405_103326.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-07-10 22:33:32", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", - "handle": "IMG_20200710_223332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", - "width": 4000, - "height": 2250, - "rotation": 90, - "captureTime": "2019-08-27 20:46:12", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", - "handle": "IMG_20190827_204612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 22:18:48", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", - "handle": "IMG_20210629_221846.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-07 19:36:13", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", - "handle": "IMG_20210807_193612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:20:30", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", - "handle": "IMG_20221206_192027.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 19:11:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", - "handle": "IMG_20191002_191142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-02 07:37:21", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", - "handle": "IMG20230602073721.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:40", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", - "handle": "IMG20230315143640.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-04-18 17:29:45", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", - "handle": "IMG_20180418_172945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", - "width": 2448, - "height": 3264, - "rotation": 0, - "captureTime": "2023-02-05 11:38:40", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", - "handle": "IMG20230205113840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-01 15:03:00", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", - "handle": "IMG_20191001_150300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 07:36:42", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", - "handle": "IMG_20180318_073642.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-13 09:08:12", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", - "handle": "IMG20230313090812.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-02-20 12:26:45", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", - "handle": "IMG_20190220_122645.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-23 14:34:10", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", - "handle": "IMG_20200123_143410.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-07-01 11:39:21", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", - "handle": "IMG_20210701_113918.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 12:00:31", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", - "handle": "IMG_20180318_120030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-01-25 14:47:34", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", - "handle": "IMG_20180125_144734.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-07-13 11:35:20", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", - "handle": "IMG_20210713_113519.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:18", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", - "handle": "IMG_20190614_094718.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-14 14:25:17", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", - "handle": "IMG20230314142517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-23 14:34:06", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", - "handle": "IMG_20200123_143406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", - "width": 4618, - "height": 3464, - "rotation": 270, - "captureTime": "2020-02-22 12:56:44", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", - "handle": "IMG_20200222_125644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-23 14:34:12", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", - "handle": "IMG_20200123_143412.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-10-02 15:52:48", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", - "handle": "IMG_20191002_155248.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-02-07 16:05:41", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", - "handle": "IMG20230207160541.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 10:07:39", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", - "handle": "IMG_20200206_100739.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-16 19:56:08", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", - "handle": "IMG20230316195608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-01-13 17:38:22", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", - "handle": "IMG_20210113_173820.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", - "width": 3264, - "height": 1472, - "rotation": 270, - "captureTime": "2021-03-12 16:19:39", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", - "handle": "IMG_20210312_161937.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:37:59", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", - "handle": "IMG20230205123759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", - "handle": "IMG_6615.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:17:13", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", - "handle": "IMG_20221206_191712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:42", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", - "handle": "IMG20230315143642.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 17:46:23", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", - "handle": "IMG_20210630_174621.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 11:54:06", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", - "handle": "IMG20230205115406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", - "width": 3187, - "height": 2939, - "rotation": 0, - "captureTime": "2020-01-23 14:32:28", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", - "handle": "IMG_20200123_143228.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-02-05 13:38:33", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", - "handle": "IMG20230205133833.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-16 13:34:34", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", - "handle": "IMG20230316133434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-04-15 23:02:59", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", - "handle": "IMG_20180415_230258.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-08 10:52:22", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", - "handle": "IMG_20180308_105222.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:43", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", - "handle": "IMG20230315143643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", - "width": 3648, - "height": 2736, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", - "handle": "IMG_20200611_102853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", - "handle": "IMG_6614.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", - "width": 1599, - "height": 899, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", - "handle": "IMG-20170322-WA0004.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", - "width": 1600, - "height": 1600, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", - "handle": "IMG-20180316-WA0008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-01 10:24:51", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", - "handle": "IMG_20191001_102451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-07-11 14:58:01", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", - "handle": "IMG_20190711_145801.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", - "width": 767, - "height": 1280, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", - "handle": "B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2020-10-08 20:28:22", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", - "handle": "IMG_20201008_202819.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", - "width": 1800, - "height": 3228, - "rotation": 0, - "captureTime": "2022-09-30 11:11:40", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", - "handle": "IMG_20220930_111139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-04-25 19:15:16", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", - "handle": "IMG_20180425_191515.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-10-02 13:10:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", - "handle": "IMG_20191002_131042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 12:00:27", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", - "handle": "IMG_20180318_120027.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-01-25 15:21:55", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", - "handle": "IMG_20180125_152155.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:17", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", - "handle": "IMG_20190614_094716.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 23:34:51", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", - "handle": "IMG_20210629_233451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", - "width": 3648, - "height": 2736, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", - "handle": "IMG_20200611_102241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", - "width": 1800, - "height": 4000, - "rotation": 0, - "captureTime": "2022-09-30 11:11:23", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", - "handle": "IMG_20220930_111120.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-09-28 18:35:50", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", - "handle": "IMG_20190928_183550.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-02 07:37:14", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", - "handle": "IMG20230602073714.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-16 14:00:05", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", - "handle": "IMG20230316140005.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", - "handle": "IMG_6625.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", - "width": 4764, - "height": 3357, - "rotation": 0, - "captureTime": "2023-03-23 16:56:25", - "cameraModel": "iPhone 14 Pro Max", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", - "handle": "IMG_0526.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-12-04 13:38:57", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", - "handle": "IMG_20181204_133857.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-07 18:42:18", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", - "handle": "IMG20230207184218.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 12:53:58", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", - "handle": "IMG_20200206_125358.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-19 20:49:52", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", - "handle": "IMG_20210819_204949.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", - "width": 6144, - "height": 8192, - "rotation": 0, - "captureTime": "2023-03-31 13:53:11", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", - "handle": "IMG20230331135311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-02-06 10:03:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", - "handle": "IMG_20200206_100331.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-01-23 14:32:30", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", - "handle": "IMG_20200123_143230.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-02-12 18:09:47", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", - "handle": "IMG_20190212_180947.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 18:19:17", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", - "handle": "IMG_20221206_181914.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-05-20 20:21:28", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", - "handle": "IMG_20190520_202127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", - "width": 4623, - "height": 3460, - "rotation": 90, - "captureTime": "2019-11-11 13:32:07", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", - "handle": "IMG_20191111_133207.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", - "width": 4000, - "height": 2250, - "rotation": 90, - "captureTime": "2019-08-27 20:46:08", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", - "handle": "IMG_20190827_204608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-01 21:04:56", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", - "handle": "IMG20230601210456.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", - "width": 1080, - "height": 2400, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", - "handle": "Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", - "width": 4656, - "height": 2620, - "rotation": 0, - "captureTime": "2020-04-09 10:47:22", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", - "handle": "IMG_20200409_104722.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:53:15", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", - "handle": "IMG20230331125315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 18:41:40", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", - "handle": "IMG_20221206_184138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-05 19:25:58", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", - "handle": "IMG_20191205_192558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-06-01 11:27:17", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", - "handle": "IMG20230601112717.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-05 19:29:55", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", - "handle": "IMG_20191205_192955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-18 23:07:07", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", - "handle": "IMG_20210818_230707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-01 21:05:44", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", - "handle": "IMG20230601210544.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-11 15:33:23", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", - "handle": "IMG_20170211_153323.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 13:28:16", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", - "handle": "IMG_20200206_132816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 17:46:14", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", - "handle": "IMG_20210630_174610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-15 14:38:52", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", - "handle": "IMG_20210315_143849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", - "width": 694, - "height": 1051, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", - "handle": "VID_20200130_190011.mp4" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 11:56:40", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", - "handle": "IMG20230314115640.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-06-01 11:26:13", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", - "handle": "IMG20230601112613.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-12-31 20:12:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", - "handle": "IMG_20191231_201231.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-11-05 13:29:12", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", - "handle": "IMG_20181105_132912.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-17 07:01:21", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", - "handle": "IMG_20230317_092635.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 18:11:37", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", - "handle": "IMG_20221206_181134.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 14:35:39", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", - "handle": "IMG20230315143539.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:04", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", - "handle": "IMG_20190614_094703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-15 09:35:32", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", - "handle": "IMG20230315093532.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 10:36:51", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", - "handle": "IMG20230205103651.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", - "width": 3840, - "height": 1930, - "rotation": 0, - "captureTime": "2020-07-09 11:28:37", - "cameraModel": "MI 9", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", - "handle": "IMG_20200709_113134.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-10-25 16:36:57", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", - "handle": "IMG_20211025_163654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-03-11 15:38:59", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", - "handle": "IMG_20170311_153859.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-11 12:53:14", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", - "handle": "IMG_20170211_125314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-09-27 17:44:21", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", - "handle": "IMG_20190927_174421.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 15:33:35", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", - "handle": "IMG_20170211_153335.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-01-13 17:37:56", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", - "handle": "IMG_20210113_173754.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", - "width": 4608, - "height": 3456, - "rotation": 90, - "captureTime": "2021-06-29 22:09:58", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", - "handle": "IMG_20210629_220957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-11-27 18:59:10", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", - "handle": "IMG_20191127_185910.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 21:09:09", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", - "handle": "IMG_20221206_210907.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-01-23 14:32:33", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", - "handle": "IMG_20200123_143233.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-04-14 20:40:14", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", - "handle": "IMG_20180414_204014.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-02-06 15:30:30", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", - "handle": "IMG_20200206_153030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-07-05 18:42:37", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", - "handle": "IMG_20210705_184235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", - "width": 2304, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-07 15:18:17", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", - "handle": "IMG20230207151817.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2018-07-26 14:13:38", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", - "handle": "IMG_20180726_141338.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", - "width": 2304, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-07 09:09:11", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", - "handle": "IMG20230207090911.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-02 18:02:41", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", - "handle": "IMG_20191002_180241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-01 21:42:25", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", - "handle": "IMG20230601214225.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 11:55:09", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", - "handle": "IMG20230314115509.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-03-09 21:11:05", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", - "handle": "IMG_20180309_211105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-05-20 14:28:11", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", - "handle": "IMG_20170520_142811.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-22 18:12:41", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", - "handle": "IMG_20190922_181241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:57:06", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", - "handle": "IMG20230331125706.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 15:32:54", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", - "handle": "IMG_20170211_153254.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-06-01 15:13:38", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", - "handle": "IMG20230601151338.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 15:32:40", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", - "handle": "IMG_20170211_153240.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-16 14:00:07", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", - "handle": "IMG20230316140007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", - "width": 3603, - "height": 1784, - "rotation": 0, - "captureTime": "2021-03-12 11:20:00", - "cameraModel": "M2002J9G", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", - "handle": "IMG_20210312_112928.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-01-13 17:38:07", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", - "handle": "IMG_20210113_173806.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-06-10 18:03:08", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", - "handle": "IMG_20180610_180308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 17:01:27", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", - "handle": "IMG20230315170127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2021-07-01 12:31:42", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", - "handle": "IMG_20210701_123141.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-05-08 17:21:05", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", - "handle": "IMG_20190508_172105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", - "width": 4945, - "height": 5679, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", - "handle": "IMG20230602164104~2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 14:25:31", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", - "handle": "IMG20230314142531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 10:36:52", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", - "handle": "IMG20230205103652.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", - "width": 4608, - "height": 3456, - "rotation": 180, - "captureTime": "2021-03-12 16:20:40", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", - "handle": "IMG_20210312_162039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:02", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", - "handle": "IMG_20200710_140502_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-18 09:34:35", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", - "handle": "IMG_20191018_093435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-31 19:56:12", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", - "handle": "IMG_20191231_195612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", - "width": 3000, - "height": 4000, - "rotation": 0, - "captureTime": "2023-06-01 15:14:40", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", - "handle": "IMG20230601151440.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-15 14:39:07", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", - "handle": "IMG_20210315_143906.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", - "width": 3968, - "height": 2976, - "rotation": 0, - "captureTime": "2019-03-29 09:59:09", - "cameraModel": "MHA-L29", - "cameraMake": "HUAWEI", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", - "handle": "IMG_20190329_095908.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", - "width": 8000, - "height": 6000, - "rotation": 0, - "captureTime": "2023-06-01 21:05:49", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", - "handle": "IMG20230601210549.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-08 10:52:15", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", - "handle": "IMG_20180308_105215.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2023-05-31 21:09:01", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", - "handle": "IMG20230531210901.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-06-01 11:28:25", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", - "handle": "IMG20230601112825.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-10-02 18:02:45", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", - "handle": "IMG_20191002_180245.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-12 11:40:22", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", - "handle": "IMG_20210312_114018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", - "handle": "IMG_6597.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-08-14 11:59:23", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", - "handle": "IMG_20190814_115923.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", - "width": 1080, - "height": 2400, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-04-15 21:31:38", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", - "handle": "IMG_20180415_213138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2023-02-04 16:08:13", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", - "handle": "IMG20230204160813.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-05 19:29:53", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", - "handle": "IMG_20191205_192953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 17:46:18", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", - "handle": "IMG_20210630_174616.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-02-03 13:16:35", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", - "handle": "IMG20230203131635.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-15 14:39:14", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", - "handle": "IMG_20210315_143913.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:05", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", - "handle": "IMG_20190614_094705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-01-25 14:47:03", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", - "handle": "IMG_20180125_144703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-06-22 10:04:06", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", - "handle": "IMG_20200622_100406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2023-06-01 11:27:00", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", - "handle": "IMG20230601112700.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 14:25:22", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", - "handle": "IMG20230314142522.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-12-20 17:29:22", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", - "handle": "IMG_20191220_172922.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-01 16:45:35", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", - "handle": "IMG_20191001_164535.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-07-11 14:58:09", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", - "handle": "IMG_20190711_145809.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 10:59:40", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", - "handle": "IMG_20170211_105940.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2020-10-08 18:38:39", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", - "handle": "IMG_20201008_183838.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", - "width": 4032, - "height": 2268, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", - "handle": "IMG_6620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 17:10:16", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", - "handle": "IMG20230205171016.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-02-07 16:55:17", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", - "handle": "IMG_20200207_165517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-22 20:20:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", - "handle": "IMG_20190922_202040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", - "width": 3840, - "height": 2160, - "rotation": 90, - "captureTime": "2018-09-05 19:53:41", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", - "handle": "IMG_20180905_195339.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", - "width": 3008, - "height": 2000, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", - "handle": "2020_0207_18002200.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:15:33", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", - "handle": "IMG_20221206_191531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-10 17:27:04", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", - "handle": "IMG20230310172704.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", - "width": 4000, - "height": 3000, - "rotation": 270, - "captureTime": "2020-10-08 18:14:20", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", - "handle": "IMG_20201008_181418.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:53:04", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", - "handle": "IMG20230331125304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 16:16:29", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", - "handle": "IMG_20221206_161628.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-07-29 11:24:48", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", - "handle": "IMG_20190729_112448.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 12:01:38", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", - "handle": "IMG_20200710_120138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:15:22", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", - "handle": "IMG_20221206_191518.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2023-02-04 16:08:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", - "handle": "IMG20230204160810.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-28 12:43:47", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", - "handle": "IMG20230328124347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", - "width": 4896, - "height": 6528, - "rotation": 0, - "captureTime": "2023-03-16 17:21:14", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", - "handle": "IMG20230316172114_01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-05-02 20:47:13", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", - "handle": "IMG_20190502_204713.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-04 19:07:05", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", - "handle": "IMG20230204190705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-02-06 16:29:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", - "handle": "IMG_20200206_162942_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", - "width": 3968, - "height": 2976, - "rotation": 0, - "captureTime": "2019-03-29 09:58:56", - "cameraModel": "MHA-L29", - "cameraMake": "HUAWEI", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", - "handle": "IMG_20190329_095856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-03-17 08:01:18", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", - "handle": "IMG20230317080118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 20:41:55", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", - "handle": "IMG_20221206_204154.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:21:03", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", - "handle": "IMG20230205122103.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2018-07-26 14:15:11", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", - "handle": "IMG_20180726_141511.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 09:47:06", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", - "handle": "IMG_20190614_094706.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-18 12:00:06", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", - "handle": "IMG_20180318_120006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-12 11:20:00", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", - "handle": "IMG_20210312_111957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", - "width": 1600, - "height": 1200, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", - "handle": "IMG-20160122-WA0006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-12 16:20:10", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", - "handle": "IMG_20210312_162007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-06-01 17:45:49", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", - "handle": "IMG20230601174549.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-19 14:16:07", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", - "handle": "IMG_20210819_141606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", - "width": 6923, - "height": 2311, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", - "handle": "PANO_20200206_080703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 16:39:32", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", - "handle": "IMG_20200206_192546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-04 09:20:29", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", - "handle": "IMG20230204092029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-31 15:46:43", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", - "handle": "IMG_20200131_154643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:56:21", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", - "handle": "IMG_20200222_125621_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:22", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", - "handle": "IMG_20200710_140522.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-04 09:29:54", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", - "handle": "IMG20230204092954.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", - "width": 3000, - "height": 4000, - "rotation": 0, - "captureTime": "2023-06-01 15:13:53", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", - "handle": "IMG20230601151353.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:11", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", - "handle": "IMG20230315143611.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 14:29:04", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", - "handle": "IMG_20190614_142904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-02-07 19:45:24", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", - "handle": "IMG20230207194524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", - "width": 4608, - "height": 2592, - "rotation": 0, - "captureTime": "2019-12-20 16:24:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", - "handle": "IMG_20191220_162404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:30:52", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", - "handle": "IMG_5950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 12:09:42", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", - "handle": "IMG_5978.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", - "width": 2250, - "height": 4000, - "rotation": 0, - "captureTime": "2020-02-06 10:03:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", - "handle": "IMG_20200206_100408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 16:51:20", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", - "handle": "IMG_20200206_192618.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", - "width": 1080, - "height": 2400, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-16 15:09:02", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", - "handle": "IMG_20210316_150859.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-23 14:33:49", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", - "handle": "IMG_5993.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2020-10-08 18:14:44", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", - "handle": "IMG_20201008_181442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2020-10-08 20:29:03", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", - "handle": "IMG_20201008_202902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-04-18 14:56:17", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", - "handle": "IMG_20190418_145617.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-23 14:33:29", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", - "handle": "IMG_5992.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:54:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", - "handle": "IMG20230331125410.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", - "width": 6419, - "height": 2492, - "rotation": 0, - "captureTime": "2023-03-22 14:09:52", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", - "handle": "IMG_5979.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:54:50", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", - "handle": "IMG_5951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-02-22 12:56:38", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", - "handle": "IMG_20200222_125638_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-30 18:59:36", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", - "handle": "IMG_20200130_185936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2017-02-11 12:52:01", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", - "handle": "IMG_20170211_125201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:10", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", - "handle": "IMG20230315143610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-15 11:10:19", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", - "handle": "IMG_20210315_111017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-18 20:32:27", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", - "handle": "IMG_20210818_203225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-10-14 16:53:57", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", - "handle": "IMG_20191014_165357.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-02-05 12:13:22", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", - "handle": "IMG20230205121322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 14:15:35", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", - "handle": "IMG_20200206_141535.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-07-26 16:03:15", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", - "handle": "IMG_20210726_160314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-13 17:02:34", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", - "handle": "IMG20230313170234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:56:28", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", - "handle": "IMG_20200222_125628.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", - "width": 1080, - "height": 2400, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", - "handle": "Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-02-06 13:55:07", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", - "handle": "IMG_20200206_135507.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 16:42:50", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", - "handle": "IMG_20200206_192551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", - "width": 1800, - "height": 4000, - "rotation": 0, - "captureTime": "2022-12-06 20:06:35", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", - "handle": "IMG_20221206_200632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:21", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", - "handle": "IMG_20200710_140521.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:06", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", - "handle": "IMG20230315143606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", - "width": 3754, - "height": 2129, - "rotation": 0, - "captureTime": "2020-01-30 17:47:14", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", - "handle": "IMG_20200130_174715.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-02-07 16:54:06", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", - "handle": "IMG_20200207_165406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-03 19:56:55", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", - "handle": "IMG20230203195655.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:57:41", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", - "handle": "IMG_5953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-23 14:33:12", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", - "handle": "IMG_5990.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-12 19:27:49", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", - "handle": "IMG20230312192749.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-09 21:58:06", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", - "handle": "IMG20230309215806.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-23 14:33:15", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", - "handle": "IMG_5991.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-12-20 11:09:06", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", - "handle": "IMG_20191220_110906.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:57:39", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", - "handle": "IMG_5952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2022-12-06 19:34:22", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", - "handle": "IMG_20221206_193418.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 22:16:29", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", - "handle": "IMG_20210629_221626.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-30 15:01:07", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", - "handle": "IMG_20200130_150107.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2021-06-30 11:55:04", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", - "handle": "IMG_20210630_115503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 12:41:05", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", - "handle": "IMG20230315124105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-02-07 15:21:59", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", - "handle": "IMG20230207152159.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-14 19:58:10", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", - "handle": "IMG_20210314_195807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-12-20 18:51:00", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", - "handle": "IMG_20191220_185100.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-08-31 12:51:43", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", - "handle": "IMG_6644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-08-31 12:54:04", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", - "handle": "IMG_6650.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 14:23:23", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", - "handle": "IMG20230315142323.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-03-10 13:33:04", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", - "handle": "IMG20230310133304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-10-14 10:07:30", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", - "handle": "IMG_20191014_100731.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", - "width": 1200, - "height": 1600, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", - "handle": "IMG-20180223-WA0015.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2019-03-29 17:36:36", - "cameraModel": "Mi A1", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", - "handle": "IMG_20190329_173636.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-08-19 20:50:31", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", - "handle": "IMG_20210819_205029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", - "width": 2304, - "height": 4096, - "rotation": 0, - "captureTime": "2023-02-07 09:06:20", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", - "handle": "IMG20230207090620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-25 15:40:40", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", - "handle": "IMG_20200125_154040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", - "width": 3264, - "height": 2448, - "rotation": 0, - "captureTime": "2023-03-16 16:29:41", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", - "handle": "IMG20230316162941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-06-10 18:04:21", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", - "handle": "IMG_20180610_180421.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", - "width": 4608, - "height": 3456, - "rotation": 0, - "captureTime": "2023-05-31 21:08:58", - "cameraModel": "OnePlus 9", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", - "handle": "IMG20230531210858.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-30 11:45:55", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", - "handle": "IMG_20210630_114553.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-07 15:07:50", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", - "handle": "IMG_20200207_150750_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-08-17 14:55:39", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", - "handle": "IMG_20210817_145537.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:18", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", - "handle": "IMG_20200710_140518.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", - "width": 4656, - "height": 2620, - "rotation": 0, - "captureTime": "2020-02-07 10:30:23", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", - "handle": "IMG_20200207_103023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", - "width": 3264, - "height": 1472, - "rotation": 270, - "captureTime": "2021-08-17 12:53:49", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", - "handle": "IMG_20210817_125348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-09-10 10:21:16", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", - "handle": "IMG_20190910_102116.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", - "width": 917, - "height": 1391, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", - "handle": "Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:59:20", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", - "handle": "IMG_5956.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2020-04-09 09:44:33", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", - "handle": "IMG_20200409_094433.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", - "width": 3942, - "height": 2974, - "rotation": 0, - "captureTime": "2023-03-22 14:10:19", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", - "handle": "IMG_5980.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-06 09:58:31", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", - "handle": "IMG_20200206_095831.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-03-15 18:03:20", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", - "handle": "IMG_20210315_180318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-23 17:12:07", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", - "handle": "IMG_5994.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-03-22 15:11:39", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", - "handle": "IMG_20180322_151139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-06-29 23:35:57", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", - "handle": "IMG_20210629_233555.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:39:22", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", - "handle": "IMG_5957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", - "width": 4000, - "height": 3000, - "rotation": 0, - "captureTime": "2020-10-09 07:26:17", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", - "handle": "IMG_20201009_072614.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-15 14:36:02", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", - "handle": "IMG20230315143602.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-03-16 11:07:09", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", - "handle": "IMG_20210316_110705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 18:16:09", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", - "handle": "IMG_20210629_181607.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-07-10 14:05:19", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", - "handle": "IMG_20200710_140519.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:53", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", - "handle": "IMG20230315135353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:47", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", - "handle": "IMG20230315135347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-02-20 12:26:08", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", - "handle": "IMG_20190220_122607.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-31 13:20:22", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", - "handle": "IMG20230331132022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", - "width": 6528, - "height": 4896, - "rotation": 0, - "captureTime": "2023-02-07 15:22:02", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", - "handle": "IMG20230207152202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-10-01 13:59:00", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", - "handle": "IMG_20191001_135900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-22 20:47:26", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", - "handle": "IMG_20190922_204726.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2020-07-10 20:31:29", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", - "handle": "IMG_20200710_203129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", - "width": 1800, - "height": 4000, - "rotation": 0, - "captureTime": "2022-09-30 11:11:47", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", - "handle": "IMG_20220930_111146.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", - "width": 4618, - "height": 3464, - "rotation": 180, - "captureTime": "2019-09-28 04:23:42", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", - "handle": "IMG_20190928_042342.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:45", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", - "handle": "IMG20230315135345.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-14 16:52:31", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", - "handle": "IMG_20180314_165231.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-10-14 16:53:53", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", - "handle": "IMG_20191014_165353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-08-31 12:51:23", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", - "handle": "IMG_6643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", - "width": 4623, - "height": 3460, - "rotation": 0, - "captureTime": "2019-10-17 17:47:20", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", - "handle": "IMG_20191017_174720.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", - "width": 4000, - "height": 2250, - "rotation": 270, - "captureTime": "2019-09-22 20:20:37", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", - "handle": "IMG_20190922_202037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2019-06-14 11:13:42", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", - "handle": "IMG_20190614_111342.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", - "width": 4000, - "height": 1800, - "rotation": 270, - "captureTime": "2021-07-24 12:30:51", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", - "handle": "IMG_20210724_123049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2018-03-08 10:52:49", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", - "handle": "IMG_20180308_105249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:57:45", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", - "handle": "IMG_5955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 14:10:39", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", - "handle": "IMG_5982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", - "width": 3648, - "height": 2736, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", - "handle": "IMG_20200611_102347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-06-14 14:19:50", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", - "handle": "IMG_20190614_141950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-03-31 13:13:25", - "cameraModel": "Nokia 8", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", - "handle": "IMG_20190331_131324.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", - "width": 768, - "height": 1024, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", - "handle": "IMG-20170323-WA0003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", - "width": 3072, - "height": 4096, - "rotation": 0, - "captureTime": "2023-03-14 21:10:17", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", - "handle": "IMG20230314211017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", - "width": 4618, - "height": 3464, - "rotation": 0, - "captureTime": "2020-02-09 12:09:59", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", - "handle": "IMG_20200209_120959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-22 12:08:04", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", - "handle": "IMG_20200222_120804.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 14:10:41", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", - "handle": "IMG_5983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", - "width": 3840, - "height": 2160, - "rotation": 270, - "captureTime": "2019-05-20 20:21:40", - "cameraModel": "Nokia 8", - "cameraMake": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", - "handle": "IMG_20190520_202140.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 10:57:43", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", - "handle": "IMG_5954.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", - "width": 2420, - "height": 3221, - "rotation": 0, - "captureTime": "2016-07-27 18:27:50", - "cameraModel": "X-E2", - "cameraMake": "FUJIFILM", - "filename": "sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", - "handle": "DSCF8674.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", - "width": 2400, - "height": 1080, - "rotation": 0, - "captureTime": "2018-11-04 22:58:04", - "cameraModel": "N/A", - "cameraMake": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", - "width": 4032, - "height": 3024, - "rotation": 0, - "captureTime": "2023-03-22 11:51:47", - "cameraModel": "iPhone 12 Pro", - "cameraMake": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", - "handle": "IMG_5968.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", - "width": 4000, - "height": 1800, - "rotation": 0, - "captureTime": "2021-06-29 21:12:46", - "cameraModel": "M2002J9G", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", - "handle": "IMG_20210629_211244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-30 18:59:27", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", - "handle": "IMG_20200130_185927.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-31 12:58:30", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", - "handle": "IMG20230331125830.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-01-30 18:59:33", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", - "handle": "IMG_20200130_185933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", - "width": 2160, - "height": 3840, - "rotation": 0, - "captureTime": "2018-04-18 17:29:04", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", - "handle": "IMG_20180418_172904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-12-04 09:17:01", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", - "handle": "IMG_20191204_091701.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", - "width": 4656, - "height": 2620, - "rotation": 0, - "captureTime": "2020-02-06 11:54:05", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", - "handle": "IMG_20200206_115405.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", - "width": 8192, - "height": 6144, - "rotation": 0, - "captureTime": "2023-03-28 20:48:51", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", - "handle": "IMG20230328204851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 14:23:25", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", - "handle": "IMG20230315142325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", - "width": 3840, - "height": 2160, - "rotation": 0, - "captureTime": "2017-02-11 10:59:36", - "cameraModel": "ONE A2003", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", - "handle": "IMG_20170211_105936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", - "width": 4096, - "height": 3072, - "rotation": 0, - "captureTime": "2023-03-15 13:53:44", - "cameraModel": "OnePlus Nord2 5G", - "cameraMake": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", - "handle": "IMG20230315135344.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2020-02-07 11:36:36", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", - "handle": "IMG_20200207_113636.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", - "width": 4000, - "height": 2250, - "rotation": 0, - "captureTime": "2019-09-10 10:20:48", - "cameraModel": "MI 9", - "cameraMake": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", - "handle": "IMG_20190910_102048.jpg" - } - ] + "56K-Cloud-Experiences": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-13 17:02:02", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", + "handle": "IMG20230313170202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-11 12:51:57", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", + "handle": "IMG_20170211_125157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-28 20:15:15", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", + "handle": "IMG20230328201515.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:49", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", + "handle": "IMG20230315135349.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-18 20:32:13", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", + "handle": "IMG_20210818_203211.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", + "width": 3536, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-11 17:57:41", + "cameraModel": "M2002J9G", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", + "handle": "IMG_20210311_180021.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", + "width": 2265, + "height": 2545, + "rotation": 0, + "captureTime": "2020-01-23 14:31:38", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", + "handle": "IMG_20200123_143138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2023-03-30 13:28:46", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", + "handle": "IMG20230330132846.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-05-31 19:08:46", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", + "handle": "IMG20230531190846.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 12:40:52", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", + "handle": "IMG20230315124052.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", + "width": 2048, + "height": 1536, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", + "handle": "Chursirsten - Toggenburg.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-05 09:22:41", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", + "handle": "IMG20230205092241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-04-06 16:45:47", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", + "handle": "IMG_20200406_164547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 11:55:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", + "handle": "IMG_20191002_115540.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:44:21", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", + "handle": "IMG_5965.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", + "width": 4000, + "height": 3000, + "rotation": 270, + "captureTime": "2020-10-08 18:28:20", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", + "handle": "IMG_20201008_182817.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:55:25", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", + "handle": "IMG_5971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:39:50", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", + "handle": "IMG_5959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", + "width": 4096, + "height": 2304, + "rotation": 0, + "captureTime": "2023-02-06 21:49:02", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", + "handle": "IMG20230206214902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-07-01 11:46:28", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", + "handle": "IMG_20210701_114626.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-15 18:03:05", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", + "handle": "IMG_20210315_180302.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-14 17:04:23", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", + "handle": "IMG_20170214_170423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-12 15:44:45", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", + "handle": "IMG_20210312_154444.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-07-10 22:33:43", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", + "handle": "IMG_20200710_223343.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-01-18 13:30:27", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", + "handle": "IMG_20180118_133026.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:54:25", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", + "handle": "IMG20230331125425.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:39:48", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", + "handle": "IMG_5958.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:55:23", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", + "handle": "IMG_5970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:42:18", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", + "handle": "IMG_5964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 16:42:54", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", + "handle": "IMG_20200206_192610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-01-25 14:47:09", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", + "handle": "IMG_20180125_144708_02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-12-20 19:46:29", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", + "handle": "IMG_20191220_194629.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:04:31", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", + "handle": "IMG20230205120431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-12-05 17:45:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", + "handle": "IMG_20191205_174504.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-08-19 18:46:19", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", + "handle": "IMG_20210819_184618.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-15 11:10:24", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", + "handle": "IMG_20210315_111022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", + "width": 2605, + "height": 1312, + "rotation": 0, + "captureTime": "2021-05-04 12:02:53", + "cameraModel": "M2002J9G", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", + "handle": "IMG_20210504_140308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-09 11:27:24", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", + "handle": "IMG_20200709_112724.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2023-03-30 13:28:47", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", + "handle": "IMG20230330132847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:48", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", + "handle": "IMG20230315135348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-03-12 16:20:55", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", + "handle": "IMG_20210312_162054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", + "width": 3008, + "height": 2000, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", + "handle": "2020_0207_18072400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-13 17:02:03", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", + "handle": "IMG20230313170203.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", + "width": 2400, + "height": 1080, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", + "handle": "Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-16 13:49:21", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", + "handle": "IMG20230316134921.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2019-09-27 15:16:19", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", + "handle": "IMG_20190927_151620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-08-19 08:47:48", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", + "handle": "IMG_20210819_084746.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-10-08 20:11:05", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", + "handle": "IMG_20191008_201105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:17", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", + "handle": "IMG_5972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-04 19:05:42", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", + "handle": "IMG20230204190542.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", + "width": 3024, + "height": 4032, + "rotation": 0, + "captureTime": "2023-03-22 11:51:20", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", + "handle": "IMG_5966.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-12-14 11:56:29", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", + "handle": "IMG_20211214_115627.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", + "width": 5366, + "height": 2982, + "rotation": 0, + "captureTime": "2020-07-09 11:28:51", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", + "handle": "IMG_20200709_113028.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2020-10-09 07:26:21", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", + "handle": "IMG_20201009_072619.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-12 11:30:45", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", + "handle": "IMG_20210312_113042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-01-25 14:48:00", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", + "handle": "IMG_20180125_144800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", + "width": 4000, + "height": 1800, + "rotation": 180, + "captureTime": "2020-12-04 08:19:46", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", + "handle": "IMG_20201204_081944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:59:37", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", + "handle": "IMG_20221206_195935.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", + "width": 2592, + "height": 1944, + "rotation": 0, + "captureTime": "2018-01-29 21:58:58", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", + "handle": "IMG_20180129_215858.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:51:46", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", + "handle": "IMG_5967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:19", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", + "handle": "IMG_5973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-03-08 10:52:53", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", + "handle": "IMG_20180308_105253.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-10-13 17:48:00", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", + "handle": "IMG_20191013_174800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-19 14:15:56", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", + "handle": "IMG_20210819_141553.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", + "width": 6144, + "height": 8192, + "rotation": 0, + "captureTime": "2023-03-28 20:49:02", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", + "handle": "IMG20230328204902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-02-07 10:30:06", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", + "handle": "IMG_20200207_103006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:01", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", + "handle": "IMG_20200710_140501.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-15 12:40:44", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", + "handle": "IMG20230315124044.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", + "width": 4623, + "height": 3460, + "rotation": 90, + "captureTime": "2019-12-05 17:33:20", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", + "handle": "IMG_20191205_173320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-15 11:10:13", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", + "handle": "IMG_20210315_111009.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-19 06:46:46", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", + "handle": "IMG_20191019_064646.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", + "width": 4656, + "height": 2620, + "rotation": 270, + "captureTime": "2020-02-06 09:41:00", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", + "handle": "IMG_20200206_094100.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", + "width": 1800, + "height": 4000, + "rotation": 0, + "captureTime": "2021-03-02 21:16:58", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", + "handle": "IMG_20210302_211655.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-04 18:08:03", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", + "handle": "IMG20230204180803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-12 20:17:54", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", + "handle": "IMG20230312201754.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-06-01 11:25:12", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", + "handle": "IMG20230601112512.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-01-01 20:34:44", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", + "handle": "IMG_20210101_203442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-06 19:30:31", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", + "handle": "IMG20230206193031.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-02-06 16:39:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", + "handle": "IMG_20200206_163942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 07:36:35", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", + "handle": "IMG_20180318_073634.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-02-07 15:20:34", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", + "handle": "IMG20230207152034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-08-31 12:54:00", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", + "handle": "IMG_6649.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-15 12:40:40", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", + "handle": "IMG20230315124040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-10-17 17:47:02", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", + "handle": "IMG_20191017_174702.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", + "width": 3249, + "height": 1800, + "rotation": 0, + "captureTime": "2021-10-25 16:37:00", + "cameraModel": "M2002J9G", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", + "handle": "IMG_20211025_172332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:41", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", + "handle": "IMG_5977.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:40:59", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", + "handle": "IMG_5963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", + "width": 3000, + "height": 4000, + "rotation": 0, + "captureTime": "2023-06-01 19:18:55", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", + "handle": "IMG20230601191855.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-12 15:44:44", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", + "handle": "IMG_20210312_154442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-09 12:09:52", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", + "handle": "IMG_20200209_120952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-04-15 22:02:02", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", + "handle": "IMG_20180415_220200.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-03-31 13:13:13", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", + "handle": "IMG_20190331_131312.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:20:22", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", + "handle": "IMG20230205122022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:40:58", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", + "handle": "IMG_5962.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", + "width": 4656, + "height": 2620, + "rotation": 0, + "captureTime": "2020-02-06 19:35:08", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", + "handle": "IMG_20200206_193508.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-03-14 12:14:40", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", + "handle": "IMG_20190314_121440.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 18:41:42", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", + "handle": "IMG_20221206_184140.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:38", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", + "handle": "IMG_5976.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 12:01:45", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", + "handle": "IMG_20200710_120145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-09-05 13:09:21", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", + "handle": "IMG_20180905_130921.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:04:37", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", + "handle": "IMG20230205120437.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-01-25 14:50:59", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", + "handle": "IMG_20180125_145059.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-03-09 09:05:17", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", + "handle": "IMG20230309090517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-09 09:05:03", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", + "handle": "IMG20230309090503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", + "handle": "IMG_20200710_140504.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-16 17:20:25", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", + "handle": "IMG20230316172025.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 12:40:55", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", + "handle": "IMG20230315124055.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-05 16:20:14", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", + "handle": "IMG_20200205_165455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-02-11 13:01:35", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", + "handle": "IMG_20210211_130133.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-12 17:37:28", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", + "handle": "IMG_20191212_173728.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-04 11:02:26", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", + "handle": "IMG20230204110226.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-09-10 10:20:56", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", + "handle": "IMG_20190910_102056.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-04-14 20:41:26", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", + "handle": "IMG_20180414_204126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", + "width": 4311, + "height": 2423, + "rotation": 0, + "captureTime": "2019-08-14 12:01:38", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", + "handle": "IMG_20190814_120138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-02-24 18:02:36", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", + "handle": "IMG_20220224_180235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2019-12-20 18:49:53", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", + "handle": "IMG_20191220_184953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 22:19:48", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", + "handle": "IMG_20210629_221947.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-04 18:08:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", + "handle": "IMG20230204180810.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:55:41", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", + "handle": "IMG20230331125541.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:56:09", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", + "handle": "IMG_20200222_125609_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-12-20 13:35:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", + "handle": "IMG_20191220_133531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-14 14:34:16", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", + "handle": "IMG_20170214_143417.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-25 16:03:40", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", + "handle": "IMG_20210325_160337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-02-08 08:02:35", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", + "handle": "IMG_20200208_080235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:09", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", + "handle": "IMG20230315143609.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 12:49:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", + "handle": "IMG_20200206_124940.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:30:42", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", + "handle": "IMG_5948.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:39:55", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", + "handle": "IMG_5960.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:21", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", + "handle": "IMG_5974.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", + "width": 4000, + "height": 1800, + "rotation": 180, + "captureTime": "2020-12-04 08:20:00", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", + "handle": "IMG_20201204_081957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 18:02:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", + "handle": "IMG_20191002_180204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 18:02:38", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", + "handle": "IMG_20191002_180238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-02-02 15:19:18", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", + "handle": "IMG_20220202_151917.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:59:36", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", + "handle": "IMG_20221206_195933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 18:02:11", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", + "handle": "IMG_20191002_180211.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2018-07-26 14:13:41", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", + "handle": "IMG_20180726_141341.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:22", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", + "handle": "IMG_5975.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", + "width": 4656, + "height": 2620, + "rotation": 0, + "captureTime": "2020-05-11 09:52:05", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", + "handle": "IMG_20200511_095205.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:40:29", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", + "handle": "IMG_5961.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 16:42:56", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", + "handle": "IMG_20200206_192615.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:30:44", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", + "handle": "IMG_5949.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 10:14:36", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", + "handle": "IMG_20170211_101436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-03-03 10:57:41", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", + "handle": "IMG_20200303_105741.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", + "width": 4623, + "height": 3460, + "rotation": 180, + "captureTime": "2019-11-12 16:43:17", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", + "handle": "IMG_20191112_164317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 11:38:16", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", + "handle": "IMG_20210630_113814.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2019-08-28 10:59:53", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", + "handle": "IMG_20190828_105953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:38:40", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", + "handle": "IMG20230205123840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-09 09:05:00", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", + "handle": "IMG20230309090500.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-12 17:26:31", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", + "handle": "IMG_20190612_172631.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", + "width": 4000, + "height": 1800, + "rotation": 180, + "captureTime": "2020-12-04 08:18:38", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", + "handle": "IMG_20201204_081836.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 21:02:25", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", + "handle": "IMG_20210629_210225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2020-10-08 20:28:54", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", + "handle": "IMG_20201008_202852.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", + "width": 4000, + "height": 1800, + "rotation": 180, + "captureTime": "2020-12-04 08:18:26", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", + "handle": "IMG_20201204_081822.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 11:59:55", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", + "handle": "IMG_20180318_115955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2020-10-08 17:11:23", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", + "handle": "IMG_20201008_171122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", + "width": 1920, + "height": 1920, + "rotation": 0, + "captureTime": "2023-03-23 09:43:28", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", + "handle": "IMG20230323094328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-25 15:40:28", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", + "handle": "IMG_20200125_154028.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", + "width": 3000, + "height": 4000, + "rotation": 0, + "captureTime": "2023-06-01 19:38:02", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", + "handle": "IMG20230601193802.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", + "width": 1800, + "height": 4000, + "rotation": 0, + "captureTime": "2022-09-30 11:11:30", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", + "handle": "IMG_20220930_111129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2020-10-08 20:28:37", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", + "handle": "IMG_20201008_202835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-02-20 12:26:56", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", + "handle": "IMG_20190220_122656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-02-07 15:20:45", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", + "handle": "IMG20230207152045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-19 08:47:35", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", + "handle": "IMG_20210819_084732.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:55:37", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", + "handle": "IMG_20200222_125537.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:44", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", + "handle": "IMG20230315143644_01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-05 19:25:50", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", + "handle": "IMG_20191205_192550.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-10 17:27:20", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", + "handle": "IMG20230310172720.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 22:18:42", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", + "handle": "IMG_20210629_221840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-07-26 14:13:28", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", + "handle": "IMG_20180726_141327.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-27 12:55:13", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", + "handle": "IMG_20190927_125513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", + "width": 4000, + "height": 2250, + "rotation": 90, + "captureTime": "2020-02-08 09:03:37", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", + "handle": "IMG_20200208_090337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:53:08", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", + "handle": "IMG20230331125308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:54:52", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", + "handle": "IMG20230331125452.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:46:56", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", + "handle": "IMG_20190614_094656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", + "width": 1920, + "height": 1080, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", + "handle": "VID_20190614_140423.mp4" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-07 11:59:43", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", + "handle": "IMG_20200207_115943.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", + "width": 3264, + "height": 1472, + "rotation": 270, + "captureTime": "2021-03-12 16:19:31", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", + "handle": "IMG_20210312_161927.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-01-24 09:07:36", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", + "handle": "IMG_20190124_090735.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-19 20:59:32", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", + "handle": "IMG_20210819_205929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", + "width": 3264, + "height": 1472, + "rotation": 0, + "captureTime": "2021-08-19 19:49:41", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", + "handle": "IMG_20210819_194939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-10-02 13:10:45", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", + "handle": "IMG_20191002_131045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-20 18:49:36", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", + "handle": "IMG_20191220_184936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-03-18 07:36:53", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", + "handle": "IMG_20180318_073652.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-02-01 18:05:35", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", + "handle": "IMG_20190201_180534.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:18:35", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", + "handle": "IMG20230205121835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:57:32", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", + "handle": "IMG20230331125732.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", + "width": 2448, + "height": 3264, + "rotation": 0, + "captureTime": "2023-03-16 16:03:20", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", + "handle": "IMG20230316160320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-09-03 18:01:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", + "handle": "IMG_20200903_180204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-15 21:10:25", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", + "handle": "IMG20230315211025.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:44", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", + "handle": "IMG20230315143644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-02 16:41:04", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", + "handle": "IMG20230602164104.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-02-07 09:44:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", + "handle": "IMG_20200207_094442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 13:28:21", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", + "handle": "IMG_20200206_132821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 18:59:49", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", + "handle": "IMG_20221206_185946.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-12-20 19:46:48", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", + "handle": "IMG_20191220_194648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-02-12 18:09:59", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", + "handle": "IMG_20190212_180959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 11:55:29", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", + "handle": "IMG20230314115529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-05 17:17:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", + "handle": "IMG_20200205_171731.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", + "width": 3024, + "height": 4032, + "rotation": 0, + "captureTime": "2022-09-16 08:48:55", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", + "handle": "IMG_5078.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:54:51", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", + "handle": "IMG20230331125451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", + "width": 2304, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-07 15:18:23", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", + "handle": "IMG20230207151823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 18:02:48", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", + "handle": "IMG_20191002_180248.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-16 13:34:33", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", + "handle": "IMG20230316133433.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-19 11:36:01", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", + "handle": "IMG_20210819_113600_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", + "width": 3708, + "height": 1581, + "rotation": 0, + "captureTime": "2023-03-15 16:01:30", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", + "handle": "IMG_20230315_224557.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2020-10-08 18:38:01", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", + "handle": "IMG_20201008_183759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 11:45:55", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", + "handle": "IMG_20210630_114553~2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-15 14:38:58", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", + "handle": "IMG_20210315_143857.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", + "width": 4608, + "height": 3456, + "rotation": 90, + "captureTime": "2021-08-19 15:19:06", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", + "handle": "IMG_20210819_151904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 17:46:34", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", + "handle": "IMG_20210630_174632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-26 19:16:19", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", + "handle": "IMG_20190926_191620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 15:32:49", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", + "handle": "IMG_20170211_153249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", + "width": 2448, + "height": 3264, + "rotation": 0, + "captureTime": "2023-03-16 16:03:21", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", + "handle": "IMG20230316160321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:30:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", + "handle": "IMG20230205123010.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", + "handle": "IMG_6612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", + "width": 3008, + "height": 2000, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", + "handle": "2020_0207_18060500.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-24 12:23:05", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", + "handle": "IMG_20190924_122305.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-07-13 12:38:13", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", + "handle": "IMG_20210713_123811.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-07-11 14:58:07", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", + "handle": "IMG_20190711_145807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", + "width": 2400, + "height": 1080, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", + "handle": "Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:53:27", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", + "handle": "IMG_20200222_125327.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 21:16:40", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", + "handle": "IMG_20210629_211638.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-14 14:25:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", + "handle": "IMG20230314142510.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", + "width": 4618, + "height": 3464, + "rotation": 270, + "captureTime": "2020-02-22 12:56:56", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", + "handle": "IMG_20200222_125657.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 12:00:09", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", + "handle": "IMG_20180318_120009.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:19", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", + "handle": "IMG_20190614_094719.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-20 18:49:33", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", + "handle": "IMG_20191220_184933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2020-10-08 17:11:31", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", + "handle": "IMG_20201008_171130.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-23 14:34:05", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", + "handle": "IMG_20200123_143405.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-10-25 16:37:00", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", + "handle": "IMG_20211025_163658.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", + "width": 1186, + "height": 1600, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", + "handle": "IMG-20160309-WA0003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-07-09 11:27:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", + "handle": "IMG_20200709_112740.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-13 17:01:39", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", + "handle": "IMG20230313170139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-18 16:57:51", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", + "handle": "IMG_20191018_165751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-05-02 20:47:19", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", + "handle": "IMG_20190502_204718.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-02 21:17:54", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", + "handle": "IMG_20210302_211752.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 15:33:39", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", + "handle": "IMG_20170211_153339.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-03-03 11:34:32", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", + "handle": "IMG_20200303_113432.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-12 15:44:39", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", + "handle": "IMG_20210312_154435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-04-05 10:33:26", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", + "handle": "IMG_20190405_103326.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-07-10 22:33:32", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", + "handle": "IMG_20200710_223332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", + "width": 4000, + "height": 2250, + "rotation": 90, + "captureTime": "2019-08-27 20:46:12", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", + "handle": "IMG_20190827_204612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 22:18:48", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", + "handle": "IMG_20210629_221846.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-07 19:36:13", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", + "handle": "IMG_20210807_193612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:20:30", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", + "handle": "IMG_20221206_192027.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 19:11:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", + "handle": "IMG_20191002_191142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-02 07:37:21", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", + "handle": "IMG20230602073721.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:40", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", + "handle": "IMG20230315143640.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-04-18 17:29:45", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", + "handle": "IMG_20180418_172945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", + "width": 2448, + "height": 3264, + "rotation": 0, + "captureTime": "2023-02-05 11:38:40", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", + "handle": "IMG20230205113840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-01 15:03:00", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", + "handle": "IMG_20191001_150300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 07:36:42", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", + "handle": "IMG_20180318_073642.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-13 09:08:12", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", + "handle": "IMG20230313090812.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-02-20 12:26:45", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", + "handle": "IMG_20190220_122645.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-23 14:34:10", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", + "handle": "IMG_20200123_143410.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-07-01 11:39:21", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", + "handle": "IMG_20210701_113918.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 12:00:31", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", + "handle": "IMG_20180318_120030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-01-25 14:47:34", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", + "handle": "IMG_20180125_144734.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-07-13 11:35:20", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", + "handle": "IMG_20210713_113519.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:18", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", + "handle": "IMG_20190614_094718.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-14 14:25:17", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", + "handle": "IMG20230314142517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-23 14:34:06", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", + "handle": "IMG_20200123_143406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", + "width": 4618, + "height": 3464, + "rotation": 270, + "captureTime": "2020-02-22 12:56:44", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", + "handle": "IMG_20200222_125644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-23 14:34:12", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", + "handle": "IMG_20200123_143412.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-10-02 15:52:48", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", + "handle": "IMG_20191002_155248.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-02-07 16:05:41", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", + "handle": "IMG20230207160541.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 10:07:39", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", + "handle": "IMG_20200206_100739.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-16 19:56:08", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", + "handle": "IMG20230316195608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-01-13 17:38:22", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", + "handle": "IMG_20210113_173820.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", + "width": 3264, + "height": 1472, + "rotation": 270, + "captureTime": "2021-03-12 16:19:39", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", + "handle": "IMG_20210312_161937.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:37:59", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", + "handle": "IMG20230205123759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", + "handle": "IMG_6615.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:17:13", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", + "handle": "IMG_20221206_191712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:42", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", + "handle": "IMG20230315143642.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 17:46:23", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", + "handle": "IMG_20210630_174621.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 11:54:06", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", + "handle": "IMG20230205115406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", + "width": 3187, + "height": 2939, + "rotation": 0, + "captureTime": "2020-01-23 14:32:28", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", + "handle": "IMG_20200123_143228.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-02-05 13:38:33", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", + "handle": "IMG20230205133833.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-16 13:34:34", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", + "handle": "IMG20230316133434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-04-15 23:02:59", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", + "handle": "IMG_20180415_230258.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-08 10:52:22", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", + "handle": "IMG_20180308_105222.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:43", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", + "handle": "IMG20230315143643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", + "width": 3648, + "height": 2736, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", + "handle": "IMG_20200611_102853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", + "handle": "IMG_6614.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", + "width": 1599, + "height": 899, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", + "handle": "IMG-20170322-WA0004.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", + "width": 1600, + "height": 1600, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", + "handle": "IMG-20180316-WA0008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-01 10:24:51", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", + "handle": "IMG_20191001_102451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-07-11 14:58:01", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", + "handle": "IMG_20190711_145801.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", + "width": 767, + "height": 1280, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", + "handle": "B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2020-10-08 20:28:22", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", + "handle": "IMG_20201008_202819.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", + "width": 1800, + "height": 3228, + "rotation": 0, + "captureTime": "2022-09-30 11:11:40", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", + "handle": "IMG_20220930_111139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-04-25 19:15:16", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", + "handle": "IMG_20180425_191515.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-10-02 13:10:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", + "handle": "IMG_20191002_131042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 12:00:27", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", + "handle": "IMG_20180318_120027.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-01-25 15:21:55", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", + "handle": "IMG_20180125_152155.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:17", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", + "handle": "IMG_20190614_094716.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 23:34:51", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", + "handle": "IMG_20210629_233451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", + "width": 3648, + "height": 2736, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", + "handle": "IMG_20200611_102241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", + "width": 1800, + "height": 4000, + "rotation": 0, + "captureTime": "2022-09-30 11:11:23", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", + "handle": "IMG_20220930_111120.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-09-28 18:35:50", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", + "handle": "IMG_20190928_183550.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-02 07:37:14", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", + "handle": "IMG20230602073714.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-16 14:00:05", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", + "handle": "IMG20230316140005.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", + "handle": "IMG_6625.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", + "width": 4764, + "height": 3357, + "rotation": 0, + "captureTime": "2023-03-23 16:56:25", + "cameraModel": "iPhone 14 Pro Max", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", + "handle": "IMG_0526.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-12-04 13:38:57", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", + "handle": "IMG_20181204_133857.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-07 18:42:18", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", + "handle": "IMG20230207184218.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 12:53:58", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", + "handle": "IMG_20200206_125358.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-19 20:49:52", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", + "handle": "IMG_20210819_204949.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", + "width": 6144, + "height": 8192, + "rotation": 0, + "captureTime": "2023-03-31 13:53:11", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", + "handle": "IMG20230331135311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-02-06 10:03:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", + "handle": "IMG_20200206_100331.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-01-23 14:32:30", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", + "handle": "IMG_20200123_143230.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-02-12 18:09:47", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", + "handle": "IMG_20190212_180947.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 18:19:17", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", + "handle": "IMG_20221206_181914.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-05-20 20:21:28", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", + "handle": "IMG_20190520_202127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", + "width": 4623, + "height": 3460, + "rotation": 90, + "captureTime": "2019-11-11 13:32:07", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", + "handle": "IMG_20191111_133207.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", + "width": 4000, + "height": 2250, + "rotation": 90, + "captureTime": "2019-08-27 20:46:08", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", + "handle": "IMG_20190827_204608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-01 21:04:56", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", + "handle": "IMG20230601210456.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", + "width": 1080, + "height": 2400, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", + "handle": "Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", + "width": 4656, + "height": 2620, + "rotation": 0, + "captureTime": "2020-04-09 10:47:22", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", + "handle": "IMG_20200409_104722.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:53:15", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", + "handle": "IMG20230331125315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 18:41:40", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", + "handle": "IMG_20221206_184138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-05 19:25:58", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", + "handle": "IMG_20191205_192558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-06-01 11:27:17", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", + "handle": "IMG20230601112717.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-05 19:29:55", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", + "handle": "IMG_20191205_192955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-18 23:07:07", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", + "handle": "IMG_20210818_230707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-01 21:05:44", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", + "handle": "IMG20230601210544.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-11 15:33:23", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", + "handle": "IMG_20170211_153323.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 13:28:16", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", + "handle": "IMG_20200206_132816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 17:46:14", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", + "handle": "IMG_20210630_174610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-15 14:38:52", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", + "handle": "IMG_20210315_143849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", + "width": 694, + "height": 1051, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", + "handle": "VID_20200130_190011.mp4" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 11:56:40", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", + "handle": "IMG20230314115640.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-06-01 11:26:13", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", + "handle": "IMG20230601112613.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-12-31 20:12:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", + "handle": "IMG_20191231_201231.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-11-05 13:29:12", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", + "handle": "IMG_20181105_132912.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-17 07:01:21", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", + "handle": "IMG_20230317_092635.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 18:11:37", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", + "handle": "IMG_20221206_181134.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 14:35:39", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", + "handle": "IMG20230315143539.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:04", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", + "handle": "IMG_20190614_094703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-15 09:35:32", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", + "handle": "IMG20230315093532.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 10:36:51", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", + "handle": "IMG20230205103651.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", + "width": 3840, + "height": 1930, + "rotation": 0, + "captureTime": "2020-07-09 11:28:37", + "cameraModel": "MI 9", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", + "handle": "IMG_20200709_113134.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-10-25 16:36:57", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", + "handle": "IMG_20211025_163654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-03-11 15:38:59", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", + "handle": "IMG_20170311_153859.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-11 12:53:14", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", + "handle": "IMG_20170211_125314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-09-27 17:44:21", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", + "handle": "IMG_20190927_174421.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 15:33:35", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", + "handle": "IMG_20170211_153335.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-01-13 17:37:56", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", + "handle": "IMG_20210113_173754.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", + "width": 4608, + "height": 3456, + "rotation": 90, + "captureTime": "2021-06-29 22:09:58", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", + "handle": "IMG_20210629_220957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-11-27 18:59:10", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", + "handle": "IMG_20191127_185910.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 21:09:09", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", + "handle": "IMG_20221206_210907.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-01-23 14:32:33", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", + "handle": "IMG_20200123_143233.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-04-14 20:40:14", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", + "handle": "IMG_20180414_204014.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-02-06 15:30:30", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", + "handle": "IMG_20200206_153030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-07-05 18:42:37", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", + "handle": "IMG_20210705_184235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", + "width": 2304, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-07 15:18:17", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", + "handle": "IMG20230207151817.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2018-07-26 14:13:38", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", + "handle": "IMG_20180726_141338.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", + "width": 2304, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-07 09:09:11", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", + "handle": "IMG20230207090911.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-02 18:02:41", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", + "handle": "IMG_20191002_180241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-01 21:42:25", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", + "handle": "IMG20230601214225.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 11:55:09", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", + "handle": "IMG20230314115509.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-03-09 21:11:05", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", + "handle": "IMG_20180309_211105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-05-20 14:28:11", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", + "handle": "IMG_20170520_142811.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-22 18:12:41", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", + "handle": "IMG_20190922_181241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:57:06", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", + "handle": "IMG20230331125706.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 15:32:54", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", + "handle": "IMG_20170211_153254.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-06-01 15:13:38", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", + "handle": "IMG20230601151338.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 15:32:40", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", + "handle": "IMG_20170211_153240.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-16 14:00:07", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", + "handle": "IMG20230316140007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", + "width": 3603, + "height": 1784, + "rotation": 0, + "captureTime": "2021-03-12 11:20:00", + "cameraModel": "M2002J9G", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", + "handle": "IMG_20210312_112928.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-01-13 17:38:07", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", + "handle": "IMG_20210113_173806.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-06-10 18:03:08", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", + "handle": "IMG_20180610_180308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 17:01:27", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", + "handle": "IMG20230315170127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2021-07-01 12:31:42", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", + "handle": "IMG_20210701_123141.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-05-08 17:21:05", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", + "handle": "IMG_20190508_172105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", + "width": 4945, + "height": 5679, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", + "handle": "IMG20230602164104~2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 14:25:31", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", + "handle": "IMG20230314142531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 10:36:52", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", + "handle": "IMG20230205103652.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", + "width": 4608, + "height": 3456, + "rotation": 180, + "captureTime": "2021-03-12 16:20:40", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", + "handle": "IMG_20210312_162039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:02", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", + "handle": "IMG_20200710_140502_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-18 09:34:35", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", + "handle": "IMG_20191018_093435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-31 19:56:12", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", + "handle": "IMG_20191231_195612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", + "width": 3000, + "height": 4000, + "rotation": 0, + "captureTime": "2023-06-01 15:14:40", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", + "handle": "IMG20230601151440.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-15 14:39:07", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", + "handle": "IMG_20210315_143906.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", + "width": 3968, + "height": 2976, + "rotation": 0, + "captureTime": "2019-03-29 09:59:09", + "cameraModel": "MHA-L29", + "cameraMake": "HUAWEI", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", + "handle": "IMG_20190329_095908.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", + "width": 8000, + "height": 6000, + "rotation": 0, + "captureTime": "2023-06-01 21:05:49", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", + "handle": "IMG20230601210549.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-08 10:52:15", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", + "handle": "IMG_20180308_105215.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2023-05-31 21:09:01", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", + "handle": "IMG20230531210901.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-06-01 11:28:25", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", + "handle": "IMG20230601112825.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-10-02 18:02:45", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", + "handle": "IMG_20191002_180245.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-12 11:40:22", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", + "handle": "IMG_20210312_114018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", + "handle": "IMG_6597.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-08-14 11:59:23", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", + "handle": "IMG_20190814_115923.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", + "width": 1080, + "height": 2400, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-04-15 21:31:38", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", + "handle": "IMG_20180415_213138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2023-02-04 16:08:13", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", + "handle": "IMG20230204160813.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-05 19:29:53", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", + "handle": "IMG_20191205_192953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 17:46:18", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", + "handle": "IMG_20210630_174616.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-02-03 13:16:35", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", + "handle": "IMG20230203131635.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-15 14:39:14", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", + "handle": "IMG_20210315_143913.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:05", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", + "handle": "IMG_20190614_094705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-01-25 14:47:03", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", + "handle": "IMG_20180125_144703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-06-22 10:04:06", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", + "handle": "IMG_20200622_100406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2023-06-01 11:27:00", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", + "handle": "IMG20230601112700.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 14:25:22", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", + "handle": "IMG20230314142522.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-12-20 17:29:22", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", + "handle": "IMG_20191220_172922.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-01 16:45:35", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", + "handle": "IMG_20191001_164535.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-07-11 14:58:09", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", + "handle": "IMG_20190711_145809.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 10:59:40", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", + "handle": "IMG_20170211_105940.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2020-10-08 18:38:39", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", + "handle": "IMG_20201008_183838.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", + "width": 4032, + "height": 2268, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", + "handle": "IMG_6620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 17:10:16", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", + "handle": "IMG20230205171016.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-02-07 16:55:17", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", + "handle": "IMG_20200207_165517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-22 20:20:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", + "handle": "IMG_20190922_202040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", + "width": 3840, + "height": 2160, + "rotation": 90, + "captureTime": "2018-09-05 19:53:41", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", + "handle": "IMG_20180905_195339.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", + "width": 3008, + "height": 2000, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", + "handle": "2020_0207_18002200.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:15:33", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", + "handle": "IMG_20221206_191531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-10 17:27:04", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", + "handle": "IMG20230310172704.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", + "width": 4000, + "height": 3000, + "rotation": 270, + "captureTime": "2020-10-08 18:14:20", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", + "handle": "IMG_20201008_181418.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:53:04", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", + "handle": "IMG20230331125304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 16:16:29", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", + "handle": "IMG_20221206_161628.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-07-29 11:24:48", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", + "handle": "IMG_20190729_112448.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 12:01:38", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", + "handle": "IMG_20200710_120138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:15:22", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", + "handle": "IMG_20221206_191518.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2023-02-04 16:08:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", + "handle": "IMG20230204160810.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-28 12:43:47", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", + "handle": "IMG20230328124347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", + "width": 4896, + "height": 6528, + "rotation": 0, + "captureTime": "2023-03-16 17:21:14", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", + "handle": "IMG20230316172114_01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-05-02 20:47:13", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", + "handle": "IMG_20190502_204713.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-04 19:07:05", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", + "handle": "IMG20230204190705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-02-06 16:29:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", + "handle": "IMG_20200206_162942_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", + "width": 3968, + "height": 2976, + "rotation": 0, + "captureTime": "2019-03-29 09:58:56", + "cameraModel": "MHA-L29", + "cameraMake": "HUAWEI", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", + "handle": "IMG_20190329_095856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-03-17 08:01:18", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", + "handle": "IMG20230317080118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 20:41:55", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", + "handle": "IMG_20221206_204154.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:21:03", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", + "handle": "IMG20230205122103.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2018-07-26 14:15:11", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", + "handle": "IMG_20180726_141511.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 09:47:06", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", + "handle": "IMG_20190614_094706.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-18 12:00:06", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", + "handle": "IMG_20180318_120006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-12 11:20:00", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", + "handle": "IMG_20210312_111957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", + "width": 1600, + "height": 1200, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", + "handle": "IMG-20160122-WA0006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-12 16:20:10", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", + "handle": "IMG_20210312_162007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-06-01 17:45:49", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", + "handle": "IMG20230601174549.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-19 14:16:07", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", + "handle": "IMG_20210819_141606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", + "width": 6923, + "height": 2311, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", + "handle": "PANO_20200206_080703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 16:39:32", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", + "handle": "IMG_20200206_192546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-04 09:20:29", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", + "handle": "IMG20230204092029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-31 15:46:43", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", + "handle": "IMG_20200131_154643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:56:21", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", + "handle": "IMG_20200222_125621_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:22", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", + "handle": "IMG_20200710_140522.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-04 09:29:54", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", + "handle": "IMG20230204092954.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", + "width": 3000, + "height": 4000, + "rotation": 0, + "captureTime": "2023-06-01 15:13:53", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", + "handle": "IMG20230601151353.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:11", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", + "handle": "IMG20230315143611.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 14:29:04", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", + "handle": "IMG_20190614_142904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-02-07 19:45:24", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", + "handle": "IMG20230207194524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", + "width": 4608, + "height": 2592, + "rotation": 0, + "captureTime": "2019-12-20 16:24:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", + "handle": "IMG_20191220_162404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:30:52", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", + "handle": "IMG_5950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 12:09:42", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", + "handle": "IMG_5978.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", + "width": 2250, + "height": 4000, + "rotation": 0, + "captureTime": "2020-02-06 10:03:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", + "handle": "IMG_20200206_100408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 16:51:20", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", + "handle": "IMG_20200206_192618.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", + "width": 1080, + "height": 2400, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-16 15:09:02", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", + "handle": "IMG_20210316_150859.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-23 14:33:49", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", + "handle": "IMG_5993.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2020-10-08 18:14:44", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", + "handle": "IMG_20201008_181442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2020-10-08 20:29:03", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", + "handle": "IMG_20201008_202902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-04-18 14:56:17", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", + "handle": "IMG_20190418_145617.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-23 14:33:29", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", + "handle": "IMG_5992.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:54:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", + "handle": "IMG20230331125410.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", + "width": 6419, + "height": 2492, + "rotation": 0, + "captureTime": "2023-03-22 14:09:52", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", + "handle": "IMG_5979.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:54:50", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", + "handle": "IMG_5951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-02-22 12:56:38", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", + "handle": "IMG_20200222_125638_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-30 18:59:36", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", + "handle": "IMG_20200130_185936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2017-02-11 12:52:01", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", + "handle": "IMG_20170211_125201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:10", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", + "handle": "IMG20230315143610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-15 11:10:19", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", + "handle": "IMG_20210315_111017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-18 20:32:27", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", + "handle": "IMG_20210818_203225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-10-14 16:53:57", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", + "handle": "IMG_20191014_165357.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-02-05 12:13:22", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", + "handle": "IMG20230205121322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 14:15:35", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", + "handle": "IMG_20200206_141535.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-07-26 16:03:15", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", + "handle": "IMG_20210726_160314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-13 17:02:34", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", + "handle": "IMG20230313170234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:56:28", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", + "handle": "IMG_20200222_125628.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", + "width": 1080, + "height": 2400, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", + "handle": "Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-02-06 13:55:07", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", + "handle": "IMG_20200206_135507.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 16:42:50", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", + "handle": "IMG_20200206_192551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", + "width": 1800, + "height": 4000, + "rotation": 0, + "captureTime": "2022-12-06 20:06:35", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", + "handle": "IMG_20221206_200632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:21", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", + "handle": "IMG_20200710_140521.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:06", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", + "handle": "IMG20230315143606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", + "width": 3754, + "height": 2129, + "rotation": 0, + "captureTime": "2020-01-30 17:47:14", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", + "handle": "IMG_20200130_174715.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-02-07 16:54:06", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", + "handle": "IMG_20200207_165406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-03 19:56:55", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", + "handle": "IMG20230203195655.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:57:41", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", + "handle": "IMG_5953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-23 14:33:12", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", + "handle": "IMG_5990.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-12 19:27:49", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", + "handle": "IMG20230312192749.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-09 21:58:06", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", + "handle": "IMG20230309215806.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-23 14:33:15", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", + "handle": "IMG_5991.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-12-20 11:09:06", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", + "handle": "IMG_20191220_110906.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:57:39", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", + "handle": "IMG_5952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2022-12-06 19:34:22", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", + "handle": "IMG_20221206_193418.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 22:16:29", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", + "handle": "IMG_20210629_221626.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-30 15:01:07", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", + "handle": "IMG_20200130_150107.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2021-06-30 11:55:04", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", + "handle": "IMG_20210630_115503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 12:41:05", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", + "handle": "IMG20230315124105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-02-07 15:21:59", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", + "handle": "IMG20230207152159.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-14 19:58:10", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", + "handle": "IMG_20210314_195807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-12-20 18:51:00", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", + "handle": "IMG_20191220_185100.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-08-31 12:51:43", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", + "handle": "IMG_6644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-08-31 12:54:04", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", + "handle": "IMG_6650.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 14:23:23", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", + "handle": "IMG20230315142323.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-03-10 13:33:04", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", + "handle": "IMG20230310133304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-10-14 10:07:30", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", + "handle": "IMG_20191014_100731.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", + "width": 1200, + "height": 1600, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", + "handle": "IMG-20180223-WA0015.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2019-03-29 17:36:36", + "cameraModel": "Mi A1", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", + "handle": "IMG_20190329_173636.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-08-19 20:50:31", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", + "handle": "IMG_20210819_205029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", + "width": 2304, + "height": 4096, + "rotation": 0, + "captureTime": "2023-02-07 09:06:20", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", + "handle": "IMG20230207090620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-25 15:40:40", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", + "handle": "IMG_20200125_154040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", + "width": 3264, + "height": 2448, + "rotation": 0, + "captureTime": "2023-03-16 16:29:41", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", + "handle": "IMG20230316162941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-06-10 18:04:21", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", + "handle": "IMG_20180610_180421.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", + "width": 4608, + "height": 3456, + "rotation": 0, + "captureTime": "2023-05-31 21:08:58", + "cameraModel": "OnePlus 9", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", + "handle": "IMG20230531210858.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-30 11:45:55", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", + "handle": "IMG_20210630_114553.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-07 15:07:50", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", + "handle": "IMG_20200207_150750_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-08-17 14:55:39", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", + "handle": "IMG_20210817_145537.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:18", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", + "handle": "IMG_20200710_140518.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", + "width": 4656, + "height": 2620, + "rotation": 0, + "captureTime": "2020-02-07 10:30:23", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", + "handle": "IMG_20200207_103023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", + "width": 3264, + "height": 1472, + "rotation": 270, + "captureTime": "2021-08-17 12:53:49", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", + "handle": "IMG_20210817_125348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-09-10 10:21:16", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", + "handle": "IMG_20190910_102116.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", + "width": 917, + "height": 1391, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", + "handle": "Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:59:20", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", + "handle": "IMG_5956.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2020-04-09 09:44:33", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", + "handle": "IMG_20200409_094433.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", + "width": 3942, + "height": 2974, + "rotation": 0, + "captureTime": "2023-03-22 14:10:19", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", + "handle": "IMG_5980.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-06 09:58:31", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", + "handle": "IMG_20200206_095831.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-03-15 18:03:20", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", + "handle": "IMG_20210315_180318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-23 17:12:07", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", + "handle": "IMG_5994.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-03-22 15:11:39", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", + "handle": "IMG_20180322_151139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-06-29 23:35:57", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", + "handle": "IMG_20210629_233555.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:39:22", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", + "handle": "IMG_5957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", + "width": 4000, + "height": 3000, + "rotation": 0, + "captureTime": "2020-10-09 07:26:17", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", + "handle": "IMG_20201009_072614.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-15 14:36:02", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", + "handle": "IMG20230315143602.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-03-16 11:07:09", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", + "handle": "IMG_20210316_110705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 18:16:09", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", + "handle": "IMG_20210629_181607.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-07-10 14:05:19", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", + "handle": "IMG_20200710_140519.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:53", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", + "handle": "IMG20230315135353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:47", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", + "handle": "IMG20230315135347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-02-20 12:26:08", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", + "handle": "IMG_20190220_122607.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-31 13:20:22", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", + "handle": "IMG20230331132022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", + "width": 6528, + "height": 4896, + "rotation": 0, + "captureTime": "2023-02-07 15:22:02", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", + "handle": "IMG20230207152202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-10-01 13:59:00", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", + "handle": "IMG_20191001_135900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-22 20:47:26", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", + "handle": "IMG_20190922_204726.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2020-07-10 20:31:29", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", + "handle": "IMG_20200710_203129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", + "width": 1800, + "height": 4000, + "rotation": 0, + "captureTime": "2022-09-30 11:11:47", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", + "handle": "IMG_20220930_111146.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", + "width": 4618, + "height": 3464, + "rotation": 180, + "captureTime": "2019-09-28 04:23:42", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", + "handle": "IMG_20190928_042342.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:45", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", + "handle": "IMG20230315135345.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-14 16:52:31", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", + "handle": "IMG_20180314_165231.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-10-14 16:53:53", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", + "handle": "IMG_20191014_165353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-08-31 12:51:23", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", + "handle": "IMG_6643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", + "width": 4623, + "height": 3460, + "rotation": 0, + "captureTime": "2019-10-17 17:47:20", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", + "handle": "IMG_20191017_174720.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", + "width": 4000, + "height": 2250, + "rotation": 270, + "captureTime": "2019-09-22 20:20:37", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", + "handle": "IMG_20190922_202037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2019-06-14 11:13:42", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", + "handle": "IMG_20190614_111342.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", + "width": 4000, + "height": 1800, + "rotation": 270, + "captureTime": "2021-07-24 12:30:51", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", + "handle": "IMG_20210724_123049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2018-03-08 10:52:49", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", + "handle": "IMG_20180308_105249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:57:45", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", + "handle": "IMG_5955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 14:10:39", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", + "handle": "IMG_5982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", + "width": 3648, + "height": 2736, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", + "handle": "IMG_20200611_102347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-06-14 14:19:50", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", + "handle": "IMG_20190614_141950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-03-31 13:13:25", + "cameraModel": "Nokia 8", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", + "handle": "IMG_20190331_131324.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", + "width": 768, + "height": 1024, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", + "handle": "IMG-20170323-WA0003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", + "width": 3072, + "height": 4096, + "rotation": 0, + "captureTime": "2023-03-14 21:10:17", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", + "handle": "IMG20230314211017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", + "width": 4618, + "height": 3464, + "rotation": 0, + "captureTime": "2020-02-09 12:09:59", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", + "handle": "IMG_20200209_120959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-22 12:08:04", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", + "handle": "IMG_20200222_120804.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 14:10:41", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", + "handle": "IMG_5983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", + "width": 3840, + "height": 2160, + "rotation": 270, + "captureTime": "2019-05-20 20:21:40", + "cameraModel": "Nokia 8", + "cameraMake": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", + "handle": "IMG_20190520_202140.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 10:57:43", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", + "handle": "IMG_5954.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", + "width": 2420, + "height": 3221, + "rotation": 0, + "captureTime": "2016-07-27 18:27:50", + "cameraModel": "X-E2", + "cameraMake": "FUJIFILM", + "filename": "sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", + "handle": "DSCF8674.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", + "width": 2400, + "height": 1080, + "rotation": 0, + "captureTime": "2018-11-04 22:58:04", + "cameraModel": "N/A", + "cameraMake": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", + "width": 4032, + "height": 3024, + "rotation": 0, + "captureTime": "2023-03-22 11:51:47", + "cameraModel": "iPhone 12 Pro", + "cameraMake": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", + "handle": "IMG_5968.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", + "width": 4000, + "height": 1800, + "rotation": 0, + "captureTime": "2021-06-29 21:12:46", + "cameraModel": "M2002J9G", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", + "handle": "IMG_20210629_211244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-30 18:59:27", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", + "handle": "IMG_20200130_185927.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-31 12:58:30", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", + "handle": "IMG20230331125830.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-01-30 18:59:33", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", + "handle": "IMG_20200130_185933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", + "width": 2160, + "height": 3840, + "rotation": 0, + "captureTime": "2018-04-18 17:29:04", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", + "handle": "IMG_20180418_172904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-12-04 09:17:01", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", + "handle": "IMG_20191204_091701.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", + "width": 4656, + "height": 2620, + "rotation": 0, + "captureTime": "2020-02-06 11:54:05", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", + "handle": "IMG_20200206_115405.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", + "width": 8192, + "height": 6144, + "rotation": 0, + "captureTime": "2023-03-28 20:48:51", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", + "handle": "IMG20230328204851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 14:23:25", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", + "handle": "IMG20230315142325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", + "width": 3840, + "height": 2160, + "rotation": 0, + "captureTime": "2017-02-11 10:59:36", + "cameraModel": "ONE A2003", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", + "handle": "IMG_20170211_105936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", + "width": 4096, + "height": 3072, + "rotation": 0, + "captureTime": "2023-03-15 13:53:44", + "cameraModel": "OnePlus Nord2 5G", + "cameraMake": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", + "handle": "IMG20230315135344.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2020-02-07 11:36:36", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", + "handle": "IMG_20200207_113636.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", + "width": 4000, + "height": 2250, + "rotation": 0, + "captureTime": "2019-09-10 10:20:48", + "cameraModel": "MI 9", + "cameraMake": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", + "handle": "IMG_20190910_102048.jpg" + } + ] } diff --git a/core/data/image-sets/56K-Cloud-Experiences.json b/core/data/image-sets/56K-Cloud-Experiences.json index 3621638..785dfc7 100644 --- a/core/data/image-sets/56K-Cloud-Experiences.json +++ b/core/data/image-sets/56K-Cloud-Experiences.json @@ -1,6450 +1,6450 @@ { - "56K-Cloud-Experiences": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-13 17:02:02", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", - "handle": "IMG20230313170202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-11 12:51:57", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", - "handle": "IMG_20170211_125157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-28 20:15:15", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", - "handle": "IMG20230328201515.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:49", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", - "handle": "IMG20230315135349.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-18 20:32:13", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", - "handle": "IMG_20210818_203211.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", - "width": 3536, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-11 17:57:41", - "camera": "M2002J9G", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", - "handle": "IMG_20210311_180021.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", - "width": 2265, - "height": 2545, - "orientation": 0, - "taken_at": "2020-01-23 14:31:38", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", - "handle": "IMG_20200123_143138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2023-03-30 13:28:46", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", - "handle": "IMG20230330132846.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-05-31 19:08:46", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", - "handle": "IMG20230531190846.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 12:40:52", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", - "handle": "IMG20230315124052.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", - "width": 2048, - "height": 1536, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", - "handle": "Chursirsten - Toggenburg.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-05 09:22:41", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", - "handle": "IMG20230205092241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-04-06 16:45:47", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", - "handle": "IMG_20200406_164547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 11:55:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", - "handle": "IMG_20191002_115540.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:44:21", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", - "handle": "IMG_5965.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", - "width": 4000, - "height": 3000, - "orientation": 270, - "taken_at": "2020-10-08 18:28:20", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", - "handle": "IMG_20201008_182817.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:55:25", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", - "handle": "IMG_5971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:39:50", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", - "handle": "IMG_5959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", - "width": 4096, - "height": 2304, - "orientation": 0, - "taken_at": "2023-02-06 21:49:02", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", - "handle": "IMG20230206214902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-07-01 11:46:28", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", - "handle": "IMG_20210701_114626.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-15 18:03:05", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", - "handle": "IMG_20210315_180302.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-14 17:04:23", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", - "handle": "IMG_20170214_170423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-12 15:44:45", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", - "handle": "IMG_20210312_154444.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-07-10 22:33:43", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", - "handle": "IMG_20200710_223343.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-01-18 13:30:27", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", - "handle": "IMG_20180118_133026.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:54:25", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", - "handle": "IMG20230331125425.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:39:48", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", - "handle": "IMG_5958.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:55:23", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", - "handle": "IMG_5970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:42:18", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", - "handle": "IMG_5964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 16:42:54", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", - "handle": "IMG_20200206_192610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-01-25 14:47:09", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", - "handle": "IMG_20180125_144708_02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-12-20 19:46:29", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", - "handle": "IMG_20191220_194629.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:04:31", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", - "handle": "IMG20230205120431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-12-05 17:45:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", - "handle": "IMG_20191205_174504.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-08-19 18:46:19", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", - "handle": "IMG_20210819_184618.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-15 11:10:24", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", - "handle": "IMG_20210315_111022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", - "width": 2605, - "height": 1312, - "orientation": 0, - "taken_at": "2021-05-04 12:02:53", - "camera": "M2002J9G", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", - "handle": "IMG_20210504_140308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-09 11:27:24", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", - "handle": "IMG_20200709_112724.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2023-03-30 13:28:47", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", - "handle": "IMG20230330132847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:48", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", - "handle": "IMG20230315135348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-03-12 16:20:55", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", - "handle": "IMG_20210312_162054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", - "width": 3008, - "height": 2000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", - "handle": "2020_0207_18072400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-13 17:02:03", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", - "handle": "IMG20230313170203.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", - "width": 2400, - "height": 1080, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", - "handle": "Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-16 13:49:21", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", - "handle": "IMG20230316134921.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2019-09-27 15:16:19", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", - "handle": "IMG_20190927_151620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-08-19 08:47:48", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", - "handle": "IMG_20210819_084746.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-10-08 20:11:05", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", - "handle": "IMG_20191008_201105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:17", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", - "handle": "IMG_5972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-04 19:05:42", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", - "handle": "IMG20230204190542.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", - "width": 3024, - "height": 4032, - "orientation": 0, - "taken_at": "2023-03-22 11:51:20", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", - "handle": "IMG_5966.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-12-14 11:56:29", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", - "handle": "IMG_20211214_115627.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", - "width": 5366, - "height": 2982, - "orientation": 0, - "taken_at": "2020-07-09 11:28:51", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", - "handle": "IMG_20200709_113028.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2020-10-09 07:26:21", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", - "handle": "IMG_20201009_072619.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-12 11:30:45", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", - "handle": "IMG_20210312_113042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-01-25 14:48:00", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", - "handle": "IMG_20180125_144800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", - "width": 4000, - "height": 1800, - "orientation": 180, - "taken_at": "2020-12-04 08:19:46", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", - "handle": "IMG_20201204_081944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:59:37", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", - "handle": "IMG_20221206_195935.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", - "width": 2592, - "height": 1944, - "orientation": 0, - "taken_at": "2018-01-29 21:58:58", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", - "handle": "IMG_20180129_215858.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:51:46", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", - "handle": "IMG_5967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:19", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", - "handle": "IMG_5973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-03-08 10:52:53", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", - "handle": "IMG_20180308_105253.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-10-13 17:48:00", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", - "handle": "IMG_20191013_174800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-19 14:15:56", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", - "handle": "IMG_20210819_141553.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", - "width": 6144, - "height": 8192, - "orientation": 0, - "taken_at": "2023-03-28 20:49:02", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", - "handle": "IMG20230328204902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-02-07 10:30:06", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", - "handle": "IMG_20200207_103006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:01", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", - "handle": "IMG_20200710_140501.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-15 12:40:44", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", - "handle": "IMG20230315124044.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", - "width": 4623, - "height": 3460, - "orientation": 90, - "taken_at": "2019-12-05 17:33:20", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", - "handle": "IMG_20191205_173320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-15 11:10:13", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", - "handle": "IMG_20210315_111009.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-19 06:46:46", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", - "handle": "IMG_20191019_064646.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", - "width": 4656, - "height": 2620, - "orientation": 270, - "taken_at": "2020-02-06 09:41:00", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", - "handle": "IMG_20200206_094100.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", - "width": 1800, - "height": 4000, - "orientation": 0, - "taken_at": "2021-03-02 21:16:58", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", - "handle": "IMG_20210302_211655.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-04 18:08:03", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", - "handle": "IMG20230204180803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-12 20:17:54", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", - "handle": "IMG20230312201754.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-06-01 11:25:12", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", - "handle": "IMG20230601112512.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-01-01 20:34:44", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", - "handle": "IMG_20210101_203442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-06 19:30:31", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", - "handle": "IMG20230206193031.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-02-06 16:39:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", - "handle": "IMG_20200206_163942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 07:36:35", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", - "handle": "IMG_20180318_073634.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-02-07 15:20:34", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", - "handle": "IMG20230207152034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-08-31 12:54:00", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", - "handle": "IMG_6649.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-15 12:40:40", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", - "handle": "IMG20230315124040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-10-17 17:47:02", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", - "handle": "IMG_20191017_174702.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", - "width": 3249, - "height": 1800, - "orientation": 0, - "taken_at": "2021-10-25 16:37:00", - "camera": "M2002J9G", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", - "handle": "IMG_20211025_172332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:41", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", - "handle": "IMG_5977.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:40:59", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", - "handle": "IMG_5963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", - "width": 3000, - "height": 4000, - "orientation": 0, - "taken_at": "2023-06-01 19:18:55", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", - "handle": "IMG20230601191855.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-12 15:44:44", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", - "handle": "IMG_20210312_154442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-09 12:09:52", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", - "handle": "IMG_20200209_120952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-04-15 22:02:02", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", - "handle": "IMG_20180415_220200.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-03-31 13:13:13", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", - "handle": "IMG_20190331_131312.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:20:22", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", - "handle": "IMG20230205122022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:40:58", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", - "handle": "IMG_5962.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", - "width": 4656, - "height": 2620, - "orientation": 0, - "taken_at": "2020-02-06 19:35:08", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", - "handle": "IMG_20200206_193508.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-03-14 12:14:40", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", - "handle": "IMG_20190314_121440.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 18:41:42", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", - "handle": "IMG_20221206_184140.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:38", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", - "handle": "IMG_5976.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 12:01:45", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", - "handle": "IMG_20200710_120145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-09-05 13:09:21", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", - "handle": "IMG_20180905_130921.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:04:37", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", - "handle": "IMG20230205120437.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-01-25 14:50:59", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", - "handle": "IMG_20180125_145059.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-03-09 09:05:17", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", - "handle": "IMG20230309090517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-09 09:05:03", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", - "handle": "IMG20230309090503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", - "handle": "IMG_20200710_140504.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-16 17:20:25", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", - "handle": "IMG20230316172025.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 12:40:55", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", - "handle": "IMG20230315124055.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-05 16:20:14", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", - "handle": "IMG_20200205_165455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-02-11 13:01:35", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", - "handle": "IMG_20210211_130133.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-12 17:37:28", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", - "handle": "IMG_20191212_173728.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-04 11:02:26", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", - "handle": "IMG20230204110226.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-09-10 10:20:56", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", - "handle": "IMG_20190910_102056.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-04-14 20:41:26", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", - "handle": "IMG_20180414_204126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", - "width": 4311, - "height": 2423, - "orientation": 0, - "taken_at": "2019-08-14 12:01:38", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", - "handle": "IMG_20190814_120138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-02-24 18:02:36", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", - "handle": "IMG_20220224_180235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2019-12-20 18:49:53", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", - "handle": "IMG_20191220_184953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 22:19:48", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", - "handle": "IMG_20210629_221947.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-04 18:08:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", - "handle": "IMG20230204180810.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:55:41", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", - "handle": "IMG20230331125541.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:56:09", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", - "handle": "IMG_20200222_125609_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-12-20 13:35:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", - "handle": "IMG_20191220_133531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-14 14:34:16", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", - "handle": "IMG_20170214_143417.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-25 16:03:40", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", - "handle": "IMG_20210325_160337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-02-08 08:02:35", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", - "handle": "IMG_20200208_080235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:09", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", - "handle": "IMG20230315143609.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 12:49:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", - "handle": "IMG_20200206_124940.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:30:42", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", - "handle": "IMG_5948.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:39:55", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", - "handle": "IMG_5960.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:21", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", - "handle": "IMG_5974.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", - "width": 4000, - "height": 1800, - "orientation": 180, - "taken_at": "2020-12-04 08:20:00", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", - "handle": "IMG_20201204_081957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 18:02:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", - "handle": "IMG_20191002_180204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 18:02:38", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", - "handle": "IMG_20191002_180238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-02-02 15:19:18", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", - "handle": "IMG_20220202_151917.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:59:36", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", - "handle": "IMG_20221206_195933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 18:02:11", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", - "handle": "IMG_20191002_180211.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2018-07-26 14:13:41", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", - "handle": "IMG_20180726_141341.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:22", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", - "handle": "IMG_5975.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", - "width": 4656, - "height": 2620, - "orientation": 0, - "taken_at": "2020-05-11 09:52:05", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", - "handle": "IMG_20200511_095205.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:40:29", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", - "handle": "IMG_5961.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 16:42:56", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", - "handle": "IMG_20200206_192615.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:30:44", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", - "handle": "IMG_5949.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 10:14:36", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", - "handle": "IMG_20170211_101436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-03-03 10:57:41", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", - "handle": "IMG_20200303_105741.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", - "width": 4623, - "height": 3460, - "orientation": 180, - "taken_at": "2019-11-12 16:43:17", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", - "handle": "IMG_20191112_164317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 11:38:16", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", - "handle": "IMG_20210630_113814.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2019-08-28 10:59:53", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", - "handle": "IMG_20190828_105953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:38:40", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", - "handle": "IMG20230205123840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-09 09:05:00", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", - "handle": "IMG20230309090500.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-12 17:26:31", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", - "handle": "IMG_20190612_172631.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", - "width": 4000, - "height": 1800, - "orientation": 180, - "taken_at": "2020-12-04 08:18:38", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", - "handle": "IMG_20201204_081836.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 21:02:25", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", - "handle": "IMG_20210629_210225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2020-10-08 20:28:54", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", - "handle": "IMG_20201008_202852.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", - "width": 4000, - "height": 1800, - "orientation": 180, - "taken_at": "2020-12-04 08:18:26", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", - "handle": "IMG_20201204_081822.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 11:59:55", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", - "handle": "IMG_20180318_115955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2020-10-08 17:11:23", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", - "handle": "IMG_20201008_171122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", - "width": 1920, - "height": 1920, - "orientation": 0, - "taken_at": "2023-03-23 09:43:28", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", - "handle": "IMG20230323094328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-25 15:40:28", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", - "handle": "IMG_20200125_154028.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", - "width": 3000, - "height": 4000, - "orientation": 0, - "taken_at": "2023-06-01 19:38:02", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", - "handle": "IMG20230601193802.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", - "width": 1800, - "height": 4000, - "orientation": 0, - "taken_at": "2022-09-30 11:11:30", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", - "handle": "IMG_20220930_111129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2020-10-08 20:28:37", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", - "handle": "IMG_20201008_202835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-02-20 12:26:56", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", - "handle": "IMG_20190220_122656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-02-07 15:20:45", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", - "handle": "IMG20230207152045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-19 08:47:35", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", - "handle": "IMG_20210819_084732.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:55:37", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", - "handle": "IMG_20200222_125537.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:44", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", - "handle": "IMG20230315143644_01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-05 19:25:50", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", - "handle": "IMG_20191205_192550.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-10 17:27:20", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", - "handle": "IMG20230310172720.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 22:18:42", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", - "handle": "IMG_20210629_221840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-07-26 14:13:28", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", - "handle": "IMG_20180726_141327.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-27 12:55:13", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", - "handle": "IMG_20190927_125513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", - "width": 4000, - "height": 2250, - "orientation": 90, - "taken_at": "2020-02-08 09:03:37", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", - "handle": "IMG_20200208_090337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:53:08", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", - "handle": "IMG20230331125308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:54:52", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", - "handle": "IMG20230331125452.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:46:56", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", - "handle": "IMG_20190614_094656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", - "width": 1920, - "height": 1080, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", - "handle": "VID_20190614_140423.mp4" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-07 11:59:43", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", - "handle": "IMG_20200207_115943.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", - "width": 3264, - "height": 1472, - "orientation": 270, - "taken_at": "2021-03-12 16:19:31", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", - "handle": "IMG_20210312_161927.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-01-24 09:07:36", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", - "handle": "IMG_20190124_090735.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-19 20:59:32", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", - "handle": "IMG_20210819_205929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", - "width": 3264, - "height": 1472, - "orientation": 0, - "taken_at": "2021-08-19 19:49:41", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", - "handle": "IMG_20210819_194939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-10-02 13:10:45", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", - "handle": "IMG_20191002_131045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-20 18:49:36", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", - "handle": "IMG_20191220_184936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-03-18 07:36:53", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", - "handle": "IMG_20180318_073652.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-02-01 18:05:35", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", - "handle": "IMG_20190201_180534.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:18:35", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", - "handle": "IMG20230205121835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:57:32", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", - "handle": "IMG20230331125732.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", - "width": 2448, - "height": 3264, - "orientation": 0, - "taken_at": "2023-03-16 16:03:20", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", - "handle": "IMG20230316160320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-09-03 18:01:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", - "handle": "IMG_20200903_180204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-15 21:10:25", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", - "handle": "IMG20230315211025.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:44", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", - "handle": "IMG20230315143644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-02 16:41:04", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", - "handle": "IMG20230602164104.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-02-07 09:44:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", - "handle": "IMG_20200207_094442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 13:28:21", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", - "handle": "IMG_20200206_132821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 18:59:49", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", - "handle": "IMG_20221206_185946.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-12-20 19:46:48", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", - "handle": "IMG_20191220_194648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-02-12 18:09:59", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", - "handle": "IMG_20190212_180959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 11:55:29", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", - "handle": "IMG20230314115529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-05 17:17:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", - "handle": "IMG_20200205_171731.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", - "width": 3024, - "height": 4032, - "orientation": 0, - "taken_at": "2022-09-16 08:48:55", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", - "handle": "IMG_5078.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:54:51", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", - "handle": "IMG20230331125451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", - "width": 2304, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-07 15:18:23", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", - "handle": "IMG20230207151823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 18:02:48", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", - "handle": "IMG_20191002_180248.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-16 13:34:33", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", - "handle": "IMG20230316133433.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-19 11:36:01", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", - "handle": "IMG_20210819_113600_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", - "width": 3708, - "height": 1581, - "orientation": 0, - "taken_at": "2023-03-15 16:01:30", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", - "handle": "IMG_20230315_224557.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2020-10-08 18:38:01", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", - "handle": "IMG_20201008_183759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 11:45:55", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", - "handle": "IMG_20210630_114553~2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-15 14:38:58", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", - "handle": "IMG_20210315_143857.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", - "width": 4608, - "height": 3456, - "orientation": 90, - "taken_at": "2021-08-19 15:19:06", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", - "handle": "IMG_20210819_151904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 17:46:34", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", - "handle": "IMG_20210630_174632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-26 19:16:19", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", - "handle": "IMG_20190926_191620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 15:32:49", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", - "handle": "IMG_20170211_153249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", - "width": 2448, - "height": 3264, - "orientation": 0, - "taken_at": "2023-03-16 16:03:21", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", - "handle": "IMG20230316160321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:30:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", - "handle": "IMG20230205123010.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", - "handle": "IMG_6612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", - "width": 3008, - "height": 2000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", - "handle": "2020_0207_18060500.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-24 12:23:05", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", - "handle": "IMG_20190924_122305.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-07-13 12:38:13", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", - "handle": "IMG_20210713_123811.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-07-11 14:58:07", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", - "handle": "IMG_20190711_145807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", - "width": 2400, - "height": 1080, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", - "handle": "Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:53:27", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", - "handle": "IMG_20200222_125327.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 21:16:40", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", - "handle": "IMG_20210629_211638.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-14 14:25:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", - "handle": "IMG20230314142510.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", - "width": 4618, - "height": 3464, - "orientation": 270, - "taken_at": "2020-02-22 12:56:56", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", - "handle": "IMG_20200222_125657.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 12:00:09", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", - "handle": "IMG_20180318_120009.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:19", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", - "handle": "IMG_20190614_094719.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-20 18:49:33", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", - "handle": "IMG_20191220_184933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2020-10-08 17:11:31", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", - "handle": "IMG_20201008_171130.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-23 14:34:05", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", - "handle": "IMG_20200123_143405.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-10-25 16:37:00", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", - "handle": "IMG_20211025_163658.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", - "width": 1186, - "height": 1600, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", - "handle": "IMG-20160309-WA0003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-07-09 11:27:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", - "handle": "IMG_20200709_112740.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-13 17:01:39", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", - "handle": "IMG20230313170139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-18 16:57:51", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", - "handle": "IMG_20191018_165751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-05-02 20:47:19", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", - "handle": "IMG_20190502_204718.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-02 21:17:54", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", - "handle": "IMG_20210302_211752.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 15:33:39", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", - "handle": "IMG_20170211_153339.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-03-03 11:34:32", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", - "handle": "IMG_20200303_113432.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-12 15:44:39", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", - "handle": "IMG_20210312_154435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-04-05 10:33:26", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", - "handle": "IMG_20190405_103326.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-07-10 22:33:32", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", - "handle": "IMG_20200710_223332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", - "width": 4000, - "height": 2250, - "orientation": 90, - "taken_at": "2019-08-27 20:46:12", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", - "handle": "IMG_20190827_204612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 22:18:48", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", - "handle": "IMG_20210629_221846.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-07 19:36:13", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", - "handle": "IMG_20210807_193612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:20:30", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", - "handle": "IMG_20221206_192027.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 19:11:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", - "handle": "IMG_20191002_191142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-02 07:37:21", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", - "handle": "IMG20230602073721.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:40", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", - "handle": "IMG20230315143640.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-04-18 17:29:45", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", - "handle": "IMG_20180418_172945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", - "width": 2448, - "height": 3264, - "orientation": 0, - "taken_at": "2023-02-05 11:38:40", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", - "handle": "IMG20230205113840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-01 15:03:00", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", - "handle": "IMG_20191001_150300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 07:36:42", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", - "handle": "IMG_20180318_073642.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-13 09:08:12", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", - "handle": "IMG20230313090812.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-02-20 12:26:45", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", - "handle": "IMG_20190220_122645.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-23 14:34:10", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", - "handle": "IMG_20200123_143410.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-07-01 11:39:21", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", - "handle": "IMG_20210701_113918.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 12:00:31", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", - "handle": "IMG_20180318_120030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-01-25 14:47:34", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", - "handle": "IMG_20180125_144734.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-07-13 11:35:20", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", - "handle": "IMG_20210713_113519.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:18", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", - "handle": "IMG_20190614_094718.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-14 14:25:17", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", - "handle": "IMG20230314142517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-23 14:34:06", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", - "handle": "IMG_20200123_143406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", - "width": 4618, - "height": 3464, - "orientation": 270, - "taken_at": "2020-02-22 12:56:44", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", - "handle": "IMG_20200222_125644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-23 14:34:12", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", - "handle": "IMG_20200123_143412.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-10-02 15:52:48", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", - "handle": "IMG_20191002_155248.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-02-07 16:05:41", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", - "handle": "IMG20230207160541.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 10:07:39", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", - "handle": "IMG_20200206_100739.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-16 19:56:08", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", - "handle": "IMG20230316195608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-01-13 17:38:22", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", - "handle": "IMG_20210113_173820.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", - "width": 3264, - "height": 1472, - "orientation": 270, - "taken_at": "2021-03-12 16:19:39", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", - "handle": "IMG_20210312_161937.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:37:59", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", - "handle": "IMG20230205123759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", - "handle": "IMG_6615.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:17:13", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", - "handle": "IMG_20221206_191712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:42", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", - "handle": "IMG20230315143642.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 17:46:23", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", - "handle": "IMG_20210630_174621.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 11:54:06", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", - "handle": "IMG20230205115406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", - "width": 3187, - "height": 2939, - "orientation": 0, - "taken_at": "2020-01-23 14:32:28", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", - "handle": "IMG_20200123_143228.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-02-05 13:38:33", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", - "handle": "IMG20230205133833.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-16 13:34:34", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", - "handle": "IMG20230316133434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-04-15 23:02:59", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", - "handle": "IMG_20180415_230258.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-08 10:52:22", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", - "handle": "IMG_20180308_105222.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:43", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", - "handle": "IMG20230315143643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", - "width": 3648, - "height": 2736, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", - "handle": "IMG_20200611_102853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", - "handle": "IMG_6614.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", - "width": 1599, - "height": 899, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", - "handle": "IMG-20170322-WA0004.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", - "width": 1600, - "height": 1600, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", - "handle": "IMG-20180316-WA0008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-01 10:24:51", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", - "handle": "IMG_20191001_102451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-07-11 14:58:01", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", - "handle": "IMG_20190711_145801.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", - "width": 767, - "height": 1280, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", - "handle": "B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2020-10-08 20:28:22", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", - "handle": "IMG_20201008_202819.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", - "width": 1800, - "height": 3228, - "orientation": 0, - "taken_at": "2022-09-30 11:11:40", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", - "handle": "IMG_20220930_111139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-04-25 19:15:16", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", - "handle": "IMG_20180425_191515.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-10-02 13:10:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", - "handle": "IMG_20191002_131042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 12:00:27", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", - "handle": "IMG_20180318_120027.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-01-25 15:21:55", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", - "handle": "IMG_20180125_152155.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:17", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", - "handle": "IMG_20190614_094716.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 23:34:51", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", - "handle": "IMG_20210629_233451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", - "width": 3648, - "height": 2736, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", - "handle": "IMG_20200611_102241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", - "width": 1800, - "height": 4000, - "orientation": 0, - "taken_at": "2022-09-30 11:11:23", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", - "handle": "IMG_20220930_111120.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-09-28 18:35:50", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", - "handle": "IMG_20190928_183550.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-02 07:37:14", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", - "handle": "IMG20230602073714.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-16 14:00:05", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", - "handle": "IMG20230316140005.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", - "handle": "IMG_6625.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", - "width": 4764, - "height": 3357, - "orientation": 0, - "taken_at": "2023-03-23 16:56:25", - "camera": "iPhone 14 Pro Max", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", - "handle": "IMG_0526.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-12-04 13:38:57", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", - "handle": "IMG_20181204_133857.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-07 18:42:18", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", - "handle": "IMG20230207184218.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 12:53:58", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", - "handle": "IMG_20200206_125358.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-19 20:49:52", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", - "handle": "IMG_20210819_204949.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", - "width": 6144, - "height": 8192, - "orientation": 0, - "taken_at": "2023-03-31 13:53:11", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", - "handle": "IMG20230331135311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-02-06 10:03:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", - "handle": "IMG_20200206_100331.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-01-23 14:32:30", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", - "handle": "IMG_20200123_143230.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-02-12 18:09:47", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", - "handle": "IMG_20190212_180947.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 18:19:17", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", - "handle": "IMG_20221206_181914.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-05-20 20:21:28", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", - "handle": "IMG_20190520_202127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", - "width": 4623, - "height": 3460, - "orientation": 90, - "taken_at": "2019-11-11 13:32:07", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", - "handle": "IMG_20191111_133207.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", - "width": 4000, - "height": 2250, - "orientation": 90, - "taken_at": "2019-08-27 20:46:08", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", - "handle": "IMG_20190827_204608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-01 21:04:56", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", - "handle": "IMG20230601210456.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", - "width": 1080, - "height": 2400, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", - "handle": "Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", - "width": 4656, - "height": 2620, - "orientation": 0, - "taken_at": "2020-04-09 10:47:22", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", - "handle": "IMG_20200409_104722.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:53:15", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", - "handle": "IMG20230331125315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 18:41:40", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", - "handle": "IMG_20221206_184138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-05 19:25:58", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", - "handle": "IMG_20191205_192558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-06-01 11:27:17", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", - "handle": "IMG20230601112717.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-05 19:29:55", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", - "handle": "IMG_20191205_192955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-18 23:07:07", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", - "handle": "IMG_20210818_230707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-01 21:05:44", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", - "handle": "IMG20230601210544.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-11 15:33:23", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", - "handle": "IMG_20170211_153323.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 13:28:16", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", - "handle": "IMG_20200206_132816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 17:46:14", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", - "handle": "IMG_20210630_174610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-15 14:38:52", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", - "handle": "IMG_20210315_143849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", - "width": 694, - "height": 1051, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", - "handle": "VID_20200130_190011.mp4" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 11:56:40", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", - "handle": "IMG20230314115640.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-06-01 11:26:13", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", - "handle": "IMG20230601112613.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-12-31 20:12:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", - "handle": "IMG_20191231_201231.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-11-05 13:29:12", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", - "handle": "IMG_20181105_132912.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-17 07:01:21", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", - "handle": "IMG_20230317_092635.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 18:11:37", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", - "handle": "IMG_20221206_181134.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 14:35:39", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", - "handle": "IMG20230315143539.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:04", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", - "handle": "IMG_20190614_094703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-15 09:35:32", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", - "handle": "IMG20230315093532.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 10:36:51", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", - "handle": "IMG20230205103651.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", - "width": 3840, - "height": 1930, - "orientation": 0, - "taken_at": "2020-07-09 11:28:37", - "camera": "MI 9", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", - "handle": "IMG_20200709_113134.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-10-25 16:36:57", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", - "handle": "IMG_20211025_163654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-03-11 15:38:59", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", - "handle": "IMG_20170311_153859.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-11 12:53:14", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", - "handle": "IMG_20170211_125314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-09-27 17:44:21", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", - "handle": "IMG_20190927_174421.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 15:33:35", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", - "handle": "IMG_20170211_153335.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-01-13 17:37:56", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", - "handle": "IMG_20210113_173754.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", - "width": 4608, - "height": 3456, - "orientation": 90, - "taken_at": "2021-06-29 22:09:58", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", - "handle": "IMG_20210629_220957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-11-27 18:59:10", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", - "handle": "IMG_20191127_185910.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 21:09:09", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", - "handle": "IMG_20221206_210907.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-01-23 14:32:33", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", - "handle": "IMG_20200123_143233.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-04-14 20:40:14", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", - "handle": "IMG_20180414_204014.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-02-06 15:30:30", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", - "handle": "IMG_20200206_153030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-07-05 18:42:37", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", - "handle": "IMG_20210705_184235.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", - "width": 2304, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-07 15:18:17", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", - "handle": "IMG20230207151817.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2018-07-26 14:13:38", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", - "handle": "IMG_20180726_141338.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", - "width": 2304, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-07 09:09:11", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", - "handle": "IMG20230207090911.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-02 18:02:41", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", - "handle": "IMG_20191002_180241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-01 21:42:25", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", - "handle": "IMG20230601214225.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 11:55:09", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", - "handle": "IMG20230314115509.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-03-09 21:11:05", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", - "handle": "IMG_20180309_211105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-05-20 14:28:11", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", - "handle": "IMG_20170520_142811.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-22 18:12:41", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", - "handle": "IMG_20190922_181241.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:57:06", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", - "handle": "IMG20230331125706.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 15:32:54", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", - "handle": "IMG_20170211_153254.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-06-01 15:13:38", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", - "handle": "IMG20230601151338.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 15:32:40", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", - "handle": "IMG_20170211_153240.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-16 14:00:07", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", - "handle": "IMG20230316140007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", - "width": 3603, - "height": 1784, - "orientation": 0, - "taken_at": "2021-03-12 11:20:00", - "camera": "M2002J9G", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", - "handle": "IMG_20210312_112928.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-01-13 17:38:07", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", - "handle": "IMG_20210113_173806.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-06-10 18:03:08", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", - "handle": "IMG_20180610_180308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 17:01:27", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", - "handle": "IMG20230315170127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2021-07-01 12:31:42", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", - "handle": "IMG_20210701_123141.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-05-08 17:21:05", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", - "handle": "IMG_20190508_172105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", - "width": 4945, - "height": 5679, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", - "handle": "IMG20230602164104~2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 14:25:31", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", - "handle": "IMG20230314142531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 10:36:52", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", - "handle": "IMG20230205103652.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", - "width": 4608, - "height": 3456, - "orientation": 180, - "taken_at": "2021-03-12 16:20:40", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", - "handle": "IMG_20210312_162039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:02", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", - "handle": "IMG_20200710_140502_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-18 09:34:35", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", - "handle": "IMG_20191018_093435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-31 19:56:12", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", - "handle": "IMG_20191231_195612.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", - "width": 3000, - "height": 4000, - "orientation": 0, - "taken_at": "2023-06-01 15:14:40", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", - "handle": "IMG20230601151440.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-15 14:39:07", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", - "handle": "IMG_20210315_143906.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", - "width": 3968, - "height": 2976, - "orientation": 0, - "taken_at": "2019-03-29 09:59:09", - "camera": "MHA-L29", - "camera_make": "HUAWEI", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", - "handle": "IMG_20190329_095908.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", - "width": 8000, - "height": 6000, - "orientation": 0, - "taken_at": "2023-06-01 21:05:49", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", - "handle": "IMG20230601210549.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-08 10:52:15", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", - "handle": "IMG_20180308_105215.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2023-05-31 21:09:01", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", - "handle": "IMG20230531210901.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-06-01 11:28:25", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", - "handle": "IMG20230601112825.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-10-02 18:02:45", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", - "handle": "IMG_20191002_180245.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-12 11:40:22", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", - "handle": "IMG_20210312_114018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", - "handle": "IMG_6597.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-08-14 11:59:23", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", - "handle": "IMG_20190814_115923.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", - "width": 1080, - "height": 2400, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-04-15 21:31:38", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", - "handle": "IMG_20180415_213138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2023-02-04 16:08:13", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", - "handle": "IMG20230204160813.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-05 19:29:53", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", - "handle": "IMG_20191205_192953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 17:46:18", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", - "handle": "IMG_20210630_174616.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-02-03 13:16:35", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", - "handle": "IMG20230203131635.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-15 14:39:14", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", - "handle": "IMG_20210315_143913.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:05", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", - "handle": "IMG_20190614_094705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-01-25 14:47:03", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", - "handle": "IMG_20180125_144703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-06-22 10:04:06", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", - "handle": "IMG_20200622_100406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2023-06-01 11:27:00", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", - "handle": "IMG20230601112700.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 14:25:22", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", - "handle": "IMG20230314142522.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-12-20 17:29:22", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", - "handle": "IMG_20191220_172922.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-01 16:45:35", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", - "handle": "IMG_20191001_164535.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-07-11 14:58:09", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", - "handle": "IMG_20190711_145809.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 10:59:40", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", - "handle": "IMG_20170211_105940.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2020-10-08 18:38:39", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", - "handle": "IMG_20201008_183838.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", - "width": 4032, - "height": 2268, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", - "handle": "IMG_6620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 17:10:16", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", - "handle": "IMG20230205171016.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-02-07 16:55:17", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", - "handle": "IMG_20200207_165517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-22 20:20:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", - "handle": "IMG_20190922_202040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", - "width": 3840, - "height": 2160, - "orientation": 90, - "taken_at": "2018-09-05 19:53:41", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", - "handle": "IMG_20180905_195339.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", - "width": 3008, - "height": 2000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", - "handle": "2020_0207_18002200.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:15:33", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", - "handle": "IMG_20221206_191531.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-10 17:27:04", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", - "handle": "IMG20230310172704.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", - "width": 4000, - "height": 3000, - "orientation": 270, - "taken_at": "2020-10-08 18:14:20", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", - "handle": "IMG_20201008_181418.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:53:04", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", - "handle": "IMG20230331125304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 16:16:29", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", - "handle": "IMG_20221206_161628.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-07-29 11:24:48", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", - "handle": "IMG_20190729_112448.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 12:01:38", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", - "handle": "IMG_20200710_120138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:15:22", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", - "handle": "IMG_20221206_191518.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2023-02-04 16:08:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", - "handle": "IMG20230204160810.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-28 12:43:47", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", - "handle": "IMG20230328124347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", - "width": 4896, - "height": 6528, - "orientation": 0, - "taken_at": "2023-03-16 17:21:14", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", - "handle": "IMG20230316172114_01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-05-02 20:47:13", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", - "handle": "IMG_20190502_204713.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-04 19:07:05", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", - "handle": "IMG20230204190705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-02-06 16:29:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", - "handle": "IMG_20200206_162942_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", - "width": 3968, - "height": 2976, - "orientation": 0, - "taken_at": "2019-03-29 09:58:56", - "camera": "MHA-L29", - "camera_make": "HUAWEI", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", - "handle": "IMG_20190329_095856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-03-17 08:01:18", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", - "handle": "IMG20230317080118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 20:41:55", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", - "handle": "IMG_20221206_204154.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:21:03", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", - "handle": "IMG20230205122103.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2018-07-26 14:15:11", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", - "handle": "IMG_20180726_141511.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 09:47:06", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", - "handle": "IMG_20190614_094706.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-18 12:00:06", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", - "handle": "IMG_20180318_120006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-12 11:20:00", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", - "handle": "IMG_20210312_111957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", - "handle": "IMG-20160122-WA0006.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-12 16:20:10", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", - "handle": "IMG_20210312_162007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-06-01 17:45:49", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", - "handle": "IMG20230601174549.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-19 14:16:07", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", - "handle": "IMG_20210819_141606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", - "width": 6923, - "height": 2311, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", - "handle": "PANO_20200206_080703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 16:39:32", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", - "handle": "IMG_20200206_192546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-04 09:20:29", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", - "handle": "IMG20230204092029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-31 15:46:43", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", - "handle": "IMG_20200131_154643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:56:21", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", - "handle": "IMG_20200222_125621_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:22", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", - "handle": "IMG_20200710_140522.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-04 09:29:54", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", - "handle": "IMG20230204092954.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", - "width": 3000, - "height": 4000, - "orientation": 0, - "taken_at": "2023-06-01 15:13:53", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", - "handle": "IMG20230601151353.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:11", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", - "handle": "IMG20230315143611.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 14:29:04", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", - "handle": "IMG_20190614_142904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-02-07 19:45:24", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", - "handle": "IMG20230207194524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", - "width": 4608, - "height": 2592, - "orientation": 0, - "taken_at": "2019-12-20 16:24:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", - "handle": "IMG_20191220_162404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:30:52", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", - "handle": "IMG_5950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 12:09:42", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", - "handle": "IMG_5978.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", - "width": 2250, - "height": 4000, - "orientation": 0, - "taken_at": "2020-02-06 10:03:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", - "handle": "IMG_20200206_100408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 16:51:20", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", - "handle": "IMG_20200206_192618.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", - "width": 1080, - "height": 2400, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-16 15:09:02", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", - "handle": "IMG_20210316_150859.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-23 14:33:49", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", - "handle": "IMG_5993.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2020-10-08 18:14:44", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", - "handle": "IMG_20201008_181442.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2020-10-08 20:29:03", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", - "handle": "IMG_20201008_202902.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-04-18 14:56:17", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", - "handle": "IMG_20190418_145617.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-23 14:33:29", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", - "handle": "IMG_5992.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:54:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", - "handle": "IMG20230331125410.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", - "width": 6419, - "height": 2492, - "orientation": 0, - "taken_at": "2023-03-22 14:09:52", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", - "handle": "IMG_5979.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:54:50", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", - "handle": "IMG_5951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-02-22 12:56:38", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", - "handle": "IMG_20200222_125638_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-30 18:59:36", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", - "handle": "IMG_20200130_185936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2017-02-11 12:52:01", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", - "handle": "IMG_20170211_125201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:10", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", - "handle": "IMG20230315143610.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-15 11:10:19", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", - "handle": "IMG_20210315_111017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-18 20:32:27", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", - "handle": "IMG_20210818_203225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-10-14 16:53:57", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", - "handle": "IMG_20191014_165357.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-02-05 12:13:22", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", - "handle": "IMG20230205121322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 14:15:35", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", - "handle": "IMG_20200206_141535.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-07-26 16:03:15", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", - "handle": "IMG_20210726_160314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-13 17:02:34", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", - "handle": "IMG20230313170234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:56:28", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", - "handle": "IMG_20200222_125628.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", - "width": 1080, - "height": 2400, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", - "handle": "Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-02-06 13:55:07", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", - "handle": "IMG_20200206_135507.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 16:42:50", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", - "handle": "IMG_20200206_192551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", - "width": 1800, - "height": 4000, - "orientation": 0, - "taken_at": "2022-12-06 20:06:35", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", - "handle": "IMG_20221206_200632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:21", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", - "handle": "IMG_20200710_140521.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:06", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", - "handle": "IMG20230315143606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", - "width": 3754, - "height": 2129, - "orientation": 0, - "taken_at": "2020-01-30 17:47:14", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", - "handle": "IMG_20200130_174715.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-02-07 16:54:06", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", - "handle": "IMG_20200207_165406.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-03 19:56:55", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", - "handle": "IMG20230203195655.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:57:41", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", - "handle": "IMG_5953.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-23 14:33:12", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", - "handle": "IMG_5990.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-12 19:27:49", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", - "handle": "IMG20230312192749.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-09 21:58:06", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", - "handle": "IMG20230309215806.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-23 14:33:15", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", - "handle": "IMG_5991.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-12-20 11:09:06", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", - "handle": "IMG_20191220_110906.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:57:39", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", - "handle": "IMG_5952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2022-12-06 19:34:22", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", - "handle": "IMG_20221206_193418.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 22:16:29", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", - "handle": "IMG_20210629_221626.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-30 15:01:07", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", - "handle": "IMG_20200130_150107.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2021-06-30 11:55:04", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", - "handle": "IMG_20210630_115503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 12:41:05", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", - "handle": "IMG20230315124105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-02-07 15:21:59", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", - "handle": "IMG20230207152159.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-14 19:58:10", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", - "handle": "IMG_20210314_195807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-12-20 18:51:00", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", - "handle": "IMG_20191220_185100.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-08-31 12:51:43", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", - "handle": "IMG_6644.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-08-31 12:54:04", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", - "handle": "IMG_6650.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 14:23:23", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", - "handle": "IMG20230315142323.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-03-10 13:33:04", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", - "handle": "IMG20230310133304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-10-14 10:07:30", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", - "handle": "IMG_20191014_100731.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", - "handle": "IMG-20180223-WA0015.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2019-03-29 17:36:36", - "camera": "Mi A1", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", - "handle": "IMG_20190329_173636.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-08-19 20:50:31", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", - "handle": "IMG_20210819_205029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", - "width": 2304, - "height": 4096, - "orientation": 0, - "taken_at": "2023-02-07 09:06:20", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", - "handle": "IMG20230207090620.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-25 15:40:40", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", - "handle": "IMG_20200125_154040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2023-03-16 16:29:41", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", - "handle": "IMG20230316162941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-06-10 18:04:21", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", - "handle": "IMG_20180610_180421.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", - "width": 4608, - "height": 3456, - "orientation": 0, - "taken_at": "2023-05-31 21:08:58", - "camera": "OnePlus 9", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", - "handle": "IMG20230531210858.heic" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-30 11:45:55", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", - "handle": "IMG_20210630_114553.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-07 15:07:50", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", - "handle": "IMG_20200207_150750_1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-08-17 14:55:39", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", - "handle": "IMG_20210817_145537.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:18", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", - "handle": "IMG_20200710_140518.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", - "width": 4656, - "height": 2620, - "orientation": 0, - "taken_at": "2020-02-07 10:30:23", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", - "handle": "IMG_20200207_103023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", - "width": 3264, - "height": 1472, - "orientation": 270, - "taken_at": "2021-08-17 12:53:49", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", - "handle": "IMG_20210817_125348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-09-10 10:21:16", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", - "handle": "IMG_20190910_102116.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", - "width": 917, - "height": 1391, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", - "handle": "Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:59:20", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", - "handle": "IMG_5956.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2020-04-09 09:44:33", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", - "handle": "IMG_20200409_094433.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", - "width": 3942, - "height": 2974, - "orientation": 0, - "taken_at": "2023-03-22 14:10:19", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", - "handle": "IMG_5980.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-06 09:58:31", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", - "handle": "IMG_20200206_095831.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-03-15 18:03:20", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", - "handle": "IMG_20210315_180318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-23 17:12:07", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", - "handle": "IMG_5994.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-03-22 15:11:39", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", - "handle": "IMG_20180322_151139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-06-29 23:35:57", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", - "handle": "IMG_20210629_233555.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:39:22", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", - "handle": "IMG_5957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", - "width": 4000, - "height": 3000, - "orientation": 0, - "taken_at": "2020-10-09 07:26:17", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", - "handle": "IMG_20201009_072614.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-15 14:36:02", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", - "handle": "IMG20230315143602.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-03-16 11:07:09", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", - "handle": "IMG_20210316_110705.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 18:16:09", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", - "handle": "IMG_20210629_181607.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-07-10 14:05:19", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", - "handle": "IMG_20200710_140519.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:53", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", - "handle": "IMG20230315135353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:47", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", - "handle": "IMG20230315135347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-02-20 12:26:08", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", - "handle": "IMG_20190220_122607.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-31 13:20:22", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", - "handle": "IMG20230331132022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", - "width": 6528, - "height": 4896, - "orientation": 0, - "taken_at": "2023-02-07 15:22:02", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", - "handle": "IMG20230207152202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-10-01 13:59:00", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", - "handle": "IMG_20191001_135900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-22 20:47:26", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", - "handle": "IMG_20190922_204726.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2020-07-10 20:31:29", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", - "handle": "IMG_20200710_203129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", - "width": 1800, - "height": 4000, - "orientation": 0, - "taken_at": "2022-09-30 11:11:47", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", - "handle": "IMG_20220930_111146.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", - "width": 4618, - "height": 3464, - "orientation": 180, - "taken_at": "2019-09-28 04:23:42", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", - "handle": "IMG_20190928_042342.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:45", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", - "handle": "IMG20230315135345.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-14 16:52:31", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", - "handle": "IMG_20180314_165231.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-10-14 16:53:53", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", - "handle": "IMG_20191014_165353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-08-31 12:51:23", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", - "handle": "IMG_6643.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", - "width": 4623, - "height": 3460, - "orientation": 0, - "taken_at": "2019-10-17 17:47:20", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", - "handle": "IMG_20191017_174720.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", - "width": 4000, - "height": 2250, - "orientation": 270, - "taken_at": "2019-09-22 20:20:37", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", - "handle": "IMG_20190922_202037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2019-06-14 11:13:42", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", - "handle": "IMG_20190614_111342.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", - "width": 4000, - "height": 1800, - "orientation": 270, - "taken_at": "2021-07-24 12:30:51", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", - "handle": "IMG_20210724_123049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2018-03-08 10:52:49", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", - "handle": "IMG_20180308_105249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:57:45", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", - "handle": "IMG_5955.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 14:10:39", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", - "handle": "IMG_5982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", - "width": 3648, - "height": 2736, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", - "handle": "IMG_20200611_102347.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-06-14 14:19:50", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", - "handle": "IMG_20190614_141950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-03-31 13:13:25", - "camera": "Nokia 8", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", - "handle": "IMG_20190331_131324.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", - "width": 768, - "height": 1024, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", - "handle": "IMG-20170323-WA0003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", - "width": 3072, - "height": 4096, - "orientation": 0, - "taken_at": "2023-03-14 21:10:17", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", - "handle": "IMG20230314211017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", - "width": 4618, - "height": 3464, - "orientation": 0, - "taken_at": "2020-02-09 12:09:59", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", - "handle": "IMG_20200209_120959.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-22 12:08:04", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", - "handle": "IMG_20200222_120804.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 14:10:41", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", - "handle": "IMG_5983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", - "width": 3840, - "height": 2160, - "orientation": 270, - "taken_at": "2019-05-20 20:21:40", - "camera": "Nokia 8", - "camera_make": "HMD Global", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", - "handle": "IMG_20190520_202140.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 10:57:43", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", - "handle": "IMG_5954.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", - "width": 2420, - "height": 3221, - "orientation": 0, - "taken_at": "2016-07-27 18:27:50", - "camera": "X-E2", - "camera_make": "FUJIFILM", - "filename": "sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", - "handle": "DSCF8674.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", - "width": 2400, - "height": 1080, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", - "handle": "Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", - "width": 4032, - "height": 3024, - "orientation": 0, - "taken_at": "2023-03-22 11:51:47", - "camera": "iPhone 12 Pro", - "camera_make": "Apple", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", - "handle": "IMG_5968.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", - "width": 4000, - "height": 1800, - "orientation": 0, - "taken_at": "2021-06-29 21:12:46", - "camera": "M2002J9G", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", - "handle": "IMG_20210629_211244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-30 18:59:27", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", - "handle": "IMG_20200130_185927.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-31 12:58:30", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", - "handle": "IMG20230331125830.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-01-30 18:59:33", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", - "handle": "IMG_20200130_185933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", - "width": 2160, - "height": 3840, - "orientation": 0, - "taken_at": "2018-04-18 17:29:04", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", - "handle": "IMG_20180418_172904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-12-04 09:17:01", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", - "handle": "IMG_20191204_091701.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", - "width": 4656, - "height": 2620, - "orientation": 0, - "taken_at": "2020-02-06 11:54:05", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", - "handle": "IMG_20200206_115405.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", - "width": 8192, - "height": 6144, - "orientation": 0, - "taken_at": "2023-03-28 20:48:51", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", - "handle": "IMG20230328204851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 14:23:25", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", - "handle": "IMG20230315142325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", - "width": 3840, - "height": 2160, - "orientation": 0, - "taken_at": "2017-02-11 10:59:36", - "camera": "ONE A2003", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", - "handle": "IMG_20170211_105936.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", - "width": 4096, - "height": 3072, - "orientation": 0, - "taken_at": "2023-03-15 13:53:44", - "camera": "OnePlus Nord2 5G", - "camera_make": "OnePlus", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", - "handle": "IMG20230315135344.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2020-02-07 11:36:36", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", - "handle": "IMG_20200207_113636.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", - "width": 4000, - "height": 2250, - "orientation": 0, - "taken_at": "2019-09-10 10:20:48", - "camera": "MI 9", - "camera_make": "Xiaomi", - "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", - "handle": "IMG_20190910_102048.jpg" - } - ] + "56K-Cloud-Experiences": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-13 17:02:02", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170202.jpg", + "handle": "IMG20230313170202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-11 12:51:57", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125157.jpg", + "handle": "IMG_20170211_125157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-28 20:15:15", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328201515.jpg", + "handle": "IMG20230328201515.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:49", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135349.jpg", + "handle": "IMG20230315135349.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-18 20:32:13", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203211.jpg", + "handle": "IMG_20210818_203211.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", + "width": 3536, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-11 17:57:41", + "camera": "M2002J9G", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210311_180021.jpg", + "handle": "IMG_20210311_180021.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", + "width": 2265, + "height": 2545, + "orientation": 0, + "taken_at": "2020-01-23 14:31:38", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143138.jpg", + "handle": "IMG_20200123_143138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2023-03-30 13:28:46", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132846.jpg", + "handle": "IMG20230330132846.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-05-31 19:08:46", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531190846.heic", + "handle": "IMG20230531190846.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 12:40:52", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124052.jpg", + "handle": "IMG20230315124052.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", + "width": 2048, + "height": 1536, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Chursirsten - Toggenburg.jpg", + "handle": "Chursirsten - Toggenburg.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-05 09:22:41", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205092241.jpg", + "handle": "IMG20230205092241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-04-06 16:45:47", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200406_164547.jpg", + "handle": "IMG_20200406_164547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 11:55:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_115540.jpg", + "handle": "IMG_20191002_115540.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:44:21", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5965.jpg", + "handle": "IMG_5965.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", + "width": 4000, + "height": 3000, + "orientation": 270, + "taken_at": "2020-10-08 18:28:20", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_182817.jpg", + "handle": "IMG_20201008_182817.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:55:25", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5971.jpg", + "handle": "IMG_5971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:39:50", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5959.jpg", + "handle": "IMG_5959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", + "width": 4096, + "height": 2304, + "orientation": 0, + "taken_at": "2023-02-06 21:49:02", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206214902.jpg", + "handle": "IMG20230206214902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-07-01 11:46:28", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_114626.jpg", + "handle": "IMG_20210701_114626.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-15 18:03:05", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180302.jpg", + "handle": "IMG_20210315_180302.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-14 17:04:23", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_170423.jpg", + "handle": "IMG_20170214_170423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-12 15:44:45", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154444.jpg", + "handle": "IMG_20210312_154444.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-07-10 22:33:43", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223343.jpg", + "handle": "IMG_20200710_223343.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-01-18 13:30:27", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180118_133026.jpg", + "handle": "IMG_20180118_133026.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:54:25", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125425.jpg", + "handle": "IMG20230331125425.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:39:48", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5958.jpg", + "handle": "IMG_5958.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:55:23", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5970.jpg", + "handle": "IMG_5970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:42:18", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5964.jpg", + "handle": "IMG_5964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 16:42:54", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192610.jpg", + "handle": "IMG_20200206_192610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-01-25 14:47:09", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144708_02.jpg", + "handle": "IMG_20180125_144708_02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-12-20 19:46:29", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194629.jpg", + "handle": "IMG_20191220_194629.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:04:31", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120431.jpg", + "handle": "IMG20230205120431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-12-05 17:45:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_174504.jpg", + "handle": "IMG_20191205_174504.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-08-19 18:46:19", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_184618.jpg", + "handle": "IMG_20210819_184618.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-15 11:10:24", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111022.jpg", + "handle": "IMG_20210315_111022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", + "width": 2605, + "height": 1312, + "orientation": 0, + "taken_at": "2021-05-04 12:02:53", + "camera": "M2002J9G", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210504_140308.jpg", + "handle": "IMG_20210504_140308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-09 11:27:24", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112724.jpg", + "handle": "IMG_20200709_112724.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2023-03-30 13:28:47", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230330132847.jpg", + "handle": "IMG20230330132847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:48", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135348.jpg", + "handle": "IMG20230315135348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-03-12 16:20:55", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162054.jpg", + "handle": "IMG_20210312_162054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", + "width": 3008, + "height": 2000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18072400.jpg", + "handle": "2020_0207_18072400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-13 17:02:03", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170203.jpg", + "handle": "IMG20230313170203.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", + "width": 2400, + "height": 1080, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg", + "handle": "Screenshot_2021-07-14-08-50-34-314_com.linkedin.android.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-16 13:49:21", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316134921.jpg", + "handle": "IMG20230316134921.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2019-09-27 15:16:19", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_151620.jpg", + "handle": "IMG_20190927_151620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-08-19 08:47:48", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084746.jpg", + "handle": "IMG_20210819_084746.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-10-08 20:11:05", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191008_201105.jpg", + "handle": "IMG_20191008_201105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:17", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5972.jpg", + "handle": "IMG_5972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-04 19:05:42", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190542.jpg", + "handle": "IMG20230204190542.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", + "width": 3024, + "height": 4032, + "orientation": 0, + "taken_at": "2023-03-22 11:51:20", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5966.jpg", + "handle": "IMG_5966.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-12-14 11:56:29", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211214_115627.jpg", + "handle": "IMG_20211214_115627.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", + "width": 5366, + "height": 2982, + "orientation": 0, + "taken_at": "2020-07-09 11:28:51", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113028.jpg", + "handle": "IMG_20200709_113028.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2020-10-09 07:26:21", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072619.jpg", + "handle": "IMG_20201009_072619.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-12 11:30:45", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_113042.jpg", + "handle": "IMG_20210312_113042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-01-25 14:48:00", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144800.jpg", + "handle": "IMG_20180125_144800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", + "width": 4000, + "height": 1800, + "orientation": 180, + "taken_at": "2020-12-04 08:19:46", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081944.jpg", + "handle": "IMG_20201204_081944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:59:37", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195935.jpg", + "handle": "IMG_20221206_195935.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", + "width": 2592, + "height": 1944, + "orientation": 0, + "taken_at": "2018-01-29 21:58:58", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180129_215858.jpg", + "handle": "IMG_20180129_215858.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:51:46", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5967.jpg", + "handle": "IMG_5967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:19", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5973.jpg", + "handle": "IMG_5973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-03-08 10:52:53", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105253.jpg", + "handle": "IMG_20180308_105253.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-10-13 17:48:00", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191013_174800.jpg", + "handle": "IMG_20191013_174800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-19 14:15:56", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141553.jpg", + "handle": "IMG_20210819_141553.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", + "width": 6144, + "height": 8192, + "orientation": 0, + "taken_at": "2023-03-28 20:49:02", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204902.jpg", + "handle": "IMG20230328204902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-02-07 10:30:06", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103006.jpg", + "handle": "IMG_20200207_103006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:01", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140501.jpg", + "handle": "IMG_20200710_140501.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-15 12:40:44", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124044.jpg", + "handle": "IMG20230315124044.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", + "width": 4623, + "height": 3460, + "orientation": 90, + "taken_at": "2019-12-05 17:33:20", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_173320.jpg", + "handle": "IMG_20191205_173320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-15 11:10:13", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111009.jpg", + "handle": "IMG_20210315_111009.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-19 06:46:46", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191019_064646.jpg", + "handle": "IMG_20191019_064646.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", + "width": 4656, + "height": 2620, + "orientation": 270, + "taken_at": "2020-02-06 09:41:00", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_094100.jpg", + "handle": "IMG_20200206_094100.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", + "width": 1800, + "height": 4000, + "orientation": 0, + "taken_at": "2021-03-02 21:16:58", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211655.jpg", + "handle": "IMG_20210302_211655.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-04 18:08:03", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180803.jpg", + "handle": "IMG20230204180803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-12 20:17:54", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312201754.jpg", + "handle": "IMG20230312201754.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-06-01 11:25:12", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112512.heic", + "handle": "IMG20230601112512.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-01-01 20:34:44", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210101_203442.jpg", + "handle": "IMG_20210101_203442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-06 19:30:31", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230206193031.jpg", + "handle": "IMG20230206193031.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-02-06 16:39:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_163942.jpg", + "handle": "IMG_20200206_163942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 07:36:35", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073634.jpg", + "handle": "IMG_20180318_073634.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-02-07 15:20:34", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152034.jpg", + "handle": "IMG20230207152034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-08-31 12:54:00", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6649.jpg", + "handle": "IMG_6649.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-15 12:40:40", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124040.jpg", + "handle": "IMG20230315124040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-10-17 17:47:02", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174702.jpg", + "handle": "IMG_20191017_174702.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", + "width": 3249, + "height": 1800, + "orientation": 0, + "taken_at": "2021-10-25 16:37:00", + "camera": "M2002J9G", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_172332.jpg", + "handle": "IMG_20211025_172332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:41", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5977.jpg", + "handle": "IMG_5977.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:40:59", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5963.jpg", + "handle": "IMG_5963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", + "width": 3000, + "height": 4000, + "orientation": 0, + "taken_at": "2023-06-01 19:18:55", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601191855.heic", + "handle": "IMG20230601191855.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-12 15:44:44", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154442.jpg", + "handle": "IMG_20210312_154442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-09 12:09:52", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120952.jpg", + "handle": "IMG_20200209_120952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-04-15 22:02:02", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_220200.jpg", + "handle": "IMG_20180415_220200.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-03-31 13:13:13", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131312.jpg", + "handle": "IMG_20190331_131312.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:20:22", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122022.jpg", + "handle": "IMG20230205122022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:40:58", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5962.jpg", + "handle": "IMG_5962.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", + "width": 4656, + "height": 2620, + "orientation": 0, + "taken_at": "2020-02-06 19:35:08", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_193508.jpg", + "handle": "IMG_20200206_193508.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-03-14 12:14:40", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190314_121440.jpg", + "handle": "IMG_20190314_121440.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 18:41:42", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184140.jpg", + "handle": "IMG_20221206_184140.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:38", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5976.jpg", + "handle": "IMG_5976.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 12:01:45", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120145.jpg", + "handle": "IMG_20200710_120145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-09-05 13:09:21", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_130921.jpg", + "handle": "IMG_20180905_130921.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:04:37", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205120437.jpg", + "handle": "IMG20230205120437.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-01-25 14:50:59", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_145059.jpg", + "handle": "IMG_20180125_145059.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-03-09 09:05:17", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090517.jpg", + "handle": "IMG20230309090517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-09 09:05:03", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090503.jpg", + "handle": "IMG20230309090503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140504.jpg", + "handle": "IMG_20200710_140504.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-16 17:20:25", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172025.jpg", + "handle": "IMG20230316172025.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 12:40:55", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124055.jpg", + "handle": "IMG20230315124055.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-05 16:20:14", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_165455.jpg", + "handle": "IMG_20200205_165455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-02-11 13:01:35", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210211_130133.jpg", + "handle": "IMG_20210211_130133.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-12 17:37:28", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191212_173728.jpg", + "handle": "IMG_20191212_173728.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-04 11:02:26", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204110226.jpg", + "handle": "IMG20230204110226.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-09-10 10:20:56", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102056.jpg", + "handle": "IMG_20190910_102056.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-04-14 20:41:26", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204126.jpg", + "handle": "IMG_20180414_204126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", + "width": 4311, + "height": 2423, + "orientation": 0, + "taken_at": "2019-08-14 12:01:38", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_120138.jpg", + "handle": "IMG_20190814_120138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-02-24 18:02:36", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220224_180235.jpg", + "handle": "IMG_20220224_180235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2019-12-20 18:49:53", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184953.jpg", + "handle": "IMG_20191220_184953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 22:19:48", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221947.jpg", + "handle": "IMG_20210629_221947.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-04 18:08:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204180810.jpg", + "handle": "IMG20230204180810.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:55:41", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125541.jpg", + "handle": "IMG20230331125541.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:56:09", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125609_1.jpg", + "handle": "IMG_20200222_125609_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-12-20 13:35:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_133531.jpg", + "handle": "IMG_20191220_133531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-14 14:34:16", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170214_143417.jpg", + "handle": "IMG_20170214_143417.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-25 16:03:40", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210325_160337.jpg", + "handle": "IMG_20210325_160337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-02-08 08:02:35", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_080235.jpg", + "handle": "IMG_20200208_080235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:09", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143609.jpg", + "handle": "IMG20230315143609.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 12:49:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_124940.jpg", + "handle": "IMG_20200206_124940.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:30:42", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5948.jpg", + "handle": "IMG_5948.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:39:55", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5960.jpg", + "handle": "IMG_5960.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:21", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5974.jpg", + "handle": "IMG_5974.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", + "width": 4000, + "height": 1800, + "orientation": 180, + "taken_at": "2020-12-04 08:20:00", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081957.jpg", + "handle": "IMG_20201204_081957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 18:02:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180204.jpg", + "handle": "IMG_20191002_180204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 18:02:38", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180238.jpg", + "handle": "IMG_20191002_180238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-02-02 15:19:18", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220202_151917.jpg", + "handle": "IMG_20220202_151917.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:59:36", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_195933.jpg", + "handle": "IMG_20221206_195933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 18:02:11", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180211.jpg", + "handle": "IMG_20191002_180211.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2018-07-26 14:13:41", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141341.jpg", + "handle": "IMG_20180726_141341.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:22", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5975.jpg", + "handle": "IMG_5975.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", + "width": 4656, + "height": 2620, + "orientation": 0, + "taken_at": "2020-05-11 09:52:05", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200511_095205.jpg", + "handle": "IMG_20200511_095205.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:40:29", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5961.jpg", + "handle": "IMG_5961.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 16:42:56", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192615.jpg", + "handle": "IMG_20200206_192615.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:30:44", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5949.jpg", + "handle": "IMG_5949.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 10:14:36", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_101436.jpg", + "handle": "IMG_20170211_101436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-03-03 10:57:41", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_105741.jpg", + "handle": "IMG_20200303_105741.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", + "width": 4623, + "height": 3460, + "orientation": 180, + "taken_at": "2019-11-12 16:43:17", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191112_164317.jpg", + "handle": "IMG_20191112_164317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 11:38:16", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_113814.jpg", + "handle": "IMG_20210630_113814.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2019-08-28 10:59:53", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190828_105953.jpg", + "handle": "IMG_20190828_105953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:38:40", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123840.jpg", + "handle": "IMG20230205123840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-09 09:05:00", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309090500.jpg", + "handle": "IMG20230309090500.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-12 17:26:31", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190612_172631.jpg", + "handle": "IMG_20190612_172631.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", + "width": 4000, + "height": 1800, + "orientation": 180, + "taken_at": "2020-12-04 08:18:38", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081836.jpg", + "handle": "IMG_20201204_081836.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 21:02:25", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_210225.jpg", + "handle": "IMG_20210629_210225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2020-10-08 20:28:54", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202852.jpg", + "handle": "IMG_20201008_202852.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", + "width": 4000, + "height": 1800, + "orientation": 180, + "taken_at": "2020-12-04 08:18:26", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201204_081822.jpg", + "handle": "IMG_20201204_081822.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 11:59:55", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_115955.jpg", + "handle": "IMG_20180318_115955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2020-10-08 17:11:23", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171122.jpg", + "handle": "IMG_20201008_171122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", + "width": 1920, + "height": 1920, + "orientation": 0, + "taken_at": "2023-03-23 09:43:28", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230323094328.jpg", + "handle": "IMG20230323094328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-25 15:40:28", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154028.jpg", + "handle": "IMG_20200125_154028.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", + "width": 3000, + "height": 4000, + "orientation": 0, + "taken_at": "2023-06-01 19:38:02", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601193802.heic", + "handle": "IMG20230601193802.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", + "width": 1800, + "height": 4000, + "orientation": 0, + "taken_at": "2022-09-30 11:11:30", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111129.jpg", + "handle": "IMG_20220930_111129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2020-10-08 20:28:37", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202835.jpg", + "handle": "IMG_20201008_202835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-02-20 12:26:56", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122656.jpg", + "handle": "IMG_20190220_122656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-02-07 15:20:45", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152045.jpg", + "handle": "IMG20230207152045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-19 08:47:35", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_084732.jpg", + "handle": "IMG_20210819_084732.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:55:37", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125537.jpg", + "handle": "IMG_20200222_125537.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:44", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644_01.jpg", + "handle": "IMG20230315143644_01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-05 19:25:50", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192550.jpg", + "handle": "IMG_20191205_192550.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-10 17:27:20", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172720.jpg", + "handle": "IMG20230310172720.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 22:18:42", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221840.jpg", + "handle": "IMG_20210629_221840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-07-26 14:13:28", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141327.jpg", + "handle": "IMG_20180726_141327.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-27 12:55:13", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_125513.jpg", + "handle": "IMG_20190927_125513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", + "width": 4000, + "height": 2250, + "orientation": 90, + "taken_at": "2020-02-08 09:03:37", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200208_090337.jpg", + "handle": "IMG_20200208_090337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:53:08", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125308.jpg", + "handle": "IMG20230331125308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:54:52", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125452.jpg", + "handle": "IMG20230331125452.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:46:56", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094656.jpg", + "handle": "IMG_20190614_094656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", + "width": 1920, + "height": 1080, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20190614_140423.mp4", + "handle": "VID_20190614_140423.mp4" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-07 11:59:43", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_115943.jpg", + "handle": "IMG_20200207_115943.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", + "width": 3264, + "height": 1472, + "orientation": 270, + "taken_at": "2021-03-12 16:19:31", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161927.jpg", + "handle": "IMG_20210312_161927.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-01-24 09:07:36", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190124_090735.jpg", + "handle": "IMG_20190124_090735.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-19 20:59:32", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205929.jpg", + "handle": "IMG_20210819_205929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", + "width": 3264, + "height": 1472, + "orientation": 0, + "taken_at": "2021-08-19 19:49:41", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_194939.jpg", + "handle": "IMG_20210819_194939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-10-02 13:10:45", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131045.jpg", + "handle": "IMG_20191002_131045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-20 18:49:36", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184936.jpg", + "handle": "IMG_20191220_184936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-03-18 07:36:53", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073652.jpg", + "handle": "IMG_20180318_073652.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-02-01 18:05:35", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190201_180534.jpg", + "handle": "IMG_20190201_180534.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:18:35", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121835.jpg", + "handle": "IMG20230205121835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:57:32", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125732.jpg", + "handle": "IMG20230331125732.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", + "width": 2448, + "height": 3264, + "orientation": 0, + "taken_at": "2023-03-16 16:03:20", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160320.jpg", + "handle": "IMG20230316160320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-09-03 18:01:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200903_180204.jpg", + "handle": "IMG_20200903_180204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-15 21:10:25", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315211025.jpg", + "handle": "IMG20230315211025.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:44", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143644.jpg", + "handle": "IMG20230315143644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-02 16:41:04", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104.heic", + "handle": "IMG20230602164104.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-02-07 09:44:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_094442.jpg", + "handle": "IMG_20200207_094442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 13:28:21", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132821.jpg", + "handle": "IMG_20200206_132821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 18:59:49", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_185946.jpg", + "handle": "IMG_20221206_185946.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-12-20 19:46:48", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_194648.jpg", + "handle": "IMG_20191220_194648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-02-12 18:09:59", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180959.jpg", + "handle": "IMG_20190212_180959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 11:55:29", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115529.jpg", + "handle": "IMG20230314115529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-05 17:17:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200205_171731.jpg", + "handle": "IMG_20200205_171731.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", + "width": 3024, + "height": 4032, + "orientation": 0, + "taken_at": "2022-09-16 08:48:55", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5078.jpg", + "handle": "IMG_5078.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:54:51", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125451.jpg", + "handle": "IMG20230331125451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", + "width": 2304, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-07 15:18:23", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151823.jpg", + "handle": "IMG20230207151823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 18:02:48", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180248.jpg", + "handle": "IMG_20191002_180248.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-16 13:34:33", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133433.jpg", + "handle": "IMG20230316133433.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-19 11:36:01", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_113600_1.jpg", + "handle": "IMG_20210819_113600_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", + "width": 3708, + "height": 1581, + "orientation": 0, + "taken_at": "2023-03-15 16:01:30", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230315_224557.jpg", + "handle": "IMG_20230315_224557.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2020-10-08 18:38:01", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183759.jpg", + "handle": "IMG_20201008_183759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 11:45:55", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553~2.jpg", + "handle": "IMG_20210630_114553~2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-15 14:38:58", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143857.jpg", + "handle": "IMG_20210315_143857.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", + "width": 4608, + "height": 3456, + "orientation": 90, + "taken_at": "2021-08-19 15:19:06", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_151904.jpg", + "handle": "IMG_20210819_151904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 17:46:34", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174632.jpg", + "handle": "IMG_20210630_174632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-26 19:16:19", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190926_191620.jpg", + "handle": "IMG_20190926_191620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 15:32:49", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153249.jpg", + "handle": "IMG_20170211_153249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", + "width": 2448, + "height": 3264, + "orientation": 0, + "taken_at": "2023-03-16 16:03:21", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316160321.jpg", + "handle": "IMG20230316160321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:30:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123010.jpg", + "handle": "IMG20230205123010.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6612.jpg", + "handle": "IMG_6612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", + "width": 3008, + "height": 2000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18060500.jpg", + "handle": "2020_0207_18060500.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-24 12:23:05", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190924_122305.jpg", + "handle": "IMG_20190924_122305.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-07-13 12:38:13", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_123811.jpg", + "handle": "IMG_20210713_123811.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-07-11 14:58:07", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145807.jpg", + "handle": "IMG_20190711_145807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", + "width": 2400, + "height": 1080, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg", + "handle": "Screenshot_2021-07-01-18-48-44-422_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:53:27", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125327.jpg", + "handle": "IMG_20200222_125327.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 21:16:40", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211638.jpg", + "handle": "IMG_20210629_211638.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-14 14:25:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142510.jpg", + "handle": "IMG20230314142510.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", + "width": 4618, + "height": 3464, + "orientation": 270, + "taken_at": "2020-02-22 12:56:56", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125657.jpg", + "handle": "IMG_20200222_125657.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 12:00:09", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120009.jpg", + "handle": "IMG_20180318_120009.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:19", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094719.jpg", + "handle": "IMG_20190614_094719.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-20 18:49:33", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_184933.jpg", + "handle": "IMG_20191220_184933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2020-10-08 17:11:31", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_171130.jpg", + "handle": "IMG_20201008_171130.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-23 14:34:05", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143405.jpg", + "handle": "IMG_20200123_143405.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-10-25 16:37:00", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163658.jpg", + "handle": "IMG_20211025_163658.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", + "width": 1186, + "height": 1600, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160309-WA0003.jpg", + "handle": "IMG-20160309-WA0003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-07-09 11:27:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_112740.jpg", + "handle": "IMG_20200709_112740.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-13 17:01:39", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170139.jpg", + "handle": "IMG20230313170139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-18 16:57:51", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_165751.jpg", + "handle": "IMG_20191018_165751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-05-02 20:47:19", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204718.jpg", + "handle": "IMG_20190502_204718.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-02 21:17:54", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210302_211752.jpg", + "handle": "IMG_20210302_211752.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 15:33:39", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153339.jpg", + "handle": "IMG_20170211_153339.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-03-03 11:34:32", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200303_113432.jpg", + "handle": "IMG_20200303_113432.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-12 15:44:39", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_154435.jpg", + "handle": "IMG_20210312_154435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-04-05 10:33:26", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190405_103326.jpg", + "handle": "IMG_20190405_103326.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-07-10 22:33:32", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_223332.jpg", + "handle": "IMG_20200710_223332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", + "width": 4000, + "height": 2250, + "orientation": 90, + "taken_at": "2019-08-27 20:46:12", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204612.jpg", + "handle": "IMG_20190827_204612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 22:18:48", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221846.jpg", + "handle": "IMG_20210629_221846.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-07 19:36:13", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210807_193612.jpg", + "handle": "IMG_20210807_193612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:20:30", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_192027.jpg", + "handle": "IMG_20221206_192027.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 19:11:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_191142.jpg", + "handle": "IMG_20191002_191142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-02 07:37:21", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073721.heic", + "handle": "IMG20230602073721.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:40", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143640.jpg", + "handle": "IMG20230315143640.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-04-18 17:29:45", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172945.jpg", + "handle": "IMG_20180418_172945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", + "width": 2448, + "height": 3264, + "orientation": 0, + "taken_at": "2023-02-05 11:38:40", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205113840.jpg", + "handle": "IMG20230205113840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-01 15:03:00", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_150300.jpg", + "handle": "IMG_20191001_150300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 07:36:42", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_073642.jpg", + "handle": "IMG_20180318_073642.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-13 09:08:12", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313090812.jpg", + "handle": "IMG20230313090812.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-02-20 12:26:45", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122645.jpg", + "handle": "IMG_20190220_122645.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-23 14:34:10", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143410.jpg", + "handle": "IMG_20200123_143410.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-07-01 11:39:21", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_113918.jpg", + "handle": "IMG_20210701_113918.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 12:00:31", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120030.jpg", + "handle": "IMG_20180318_120030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-01-25 14:47:34", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144734.jpg", + "handle": "IMG_20180125_144734.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-07-13 11:35:20", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210713_113519.jpg", + "handle": "IMG_20210713_113519.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:18", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094718.jpg", + "handle": "IMG_20190614_094718.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-14 14:25:17", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142517.jpg", + "handle": "IMG20230314142517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-23 14:34:06", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143406.jpg", + "handle": "IMG_20200123_143406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", + "width": 4618, + "height": 3464, + "orientation": 270, + "taken_at": "2020-02-22 12:56:44", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125644.jpg", + "handle": "IMG_20200222_125644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-23 14:34:12", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143412.jpg", + "handle": "IMG_20200123_143412.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-10-02 15:52:48", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_155248.jpg", + "handle": "IMG_20191002_155248.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-02-07 16:05:41", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207160541.jpg", + "handle": "IMG20230207160541.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 10:07:39", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100739.jpg", + "handle": "IMG_20200206_100739.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-16 19:56:08", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316195608.jpg", + "handle": "IMG20230316195608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-01-13 17:38:22", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173820.jpg", + "handle": "IMG_20210113_173820.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", + "width": 3264, + "height": 1472, + "orientation": 270, + "taken_at": "2021-03-12 16:19:39", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_161937.jpg", + "handle": "IMG_20210312_161937.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:37:59", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205123759.jpg", + "handle": "IMG20230205123759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6615.jpg", + "handle": "IMG_6615.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:17:13", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191712.jpg", + "handle": "IMG_20221206_191712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:42", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143642.jpg", + "handle": "IMG20230315143642.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 17:46:23", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174621.jpg", + "handle": "IMG_20210630_174621.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 11:54:06", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205115406.jpg", + "handle": "IMG20230205115406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", + "width": 3187, + "height": 2939, + "orientation": 0, + "taken_at": "2020-01-23 14:32:28", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143228.jpg", + "handle": "IMG_20200123_143228.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-02-05 13:38:33", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205133833.jpg", + "handle": "IMG20230205133833.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-16 13:34:34", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316133434.jpg", + "handle": "IMG20230316133434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-04-15 23:02:59", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_230258.jpg", + "handle": "IMG_20180415_230258.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-08 10:52:22", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105222.jpg", + "handle": "IMG_20180308_105222.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:43", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143643.jpg", + "handle": "IMG20230315143643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", + "width": 3648, + "height": 2736, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102853.jpg", + "handle": "IMG_20200611_102853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6614.jpg", + "handle": "IMG_6614.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", + "width": 1599, + "height": 899, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170322-WA0004.jpg", + "handle": "IMG-20170322-WA0004.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", + "width": 1600, + "height": 1600, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180316-WA0008.jpg", + "handle": "IMG-20180316-WA0008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-01 10:24:51", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_102451.jpg", + "handle": "IMG_20191001_102451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-07-11 14:58:01", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145801.jpg", + "handle": "IMG_20190711_145801.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", + "width": 767, + "height": 1280, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg", + "handle": "B60496E3-F55F-4DC5-AED2-8FA02441B223.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2020-10-08 20:28:22", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202819.jpg", + "handle": "IMG_20201008_202819.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", + "width": 1800, + "height": 3228, + "orientation": 0, + "taken_at": "2022-09-30 11:11:40", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111139.jpg", + "handle": "IMG_20220930_111139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-04-25 19:15:16", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180425_191515.jpg", + "handle": "IMG_20180425_191515.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-10-02 13:10:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_131042.jpg", + "handle": "IMG_20191002_131042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 12:00:27", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120027.jpg", + "handle": "IMG_20180318_120027.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-01-25 15:21:55", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_152155.jpg", + "handle": "IMG_20180125_152155.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:17", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094716.jpg", + "handle": "IMG_20190614_094716.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 23:34:51", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233451.jpg", + "handle": "IMG_20210629_233451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", + "width": 3648, + "height": 2736, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102241.jpg", + "handle": "IMG_20200611_102241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", + "width": 1800, + "height": 4000, + "orientation": 0, + "taken_at": "2022-09-30 11:11:23", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111120.jpg", + "handle": "IMG_20220930_111120.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-09-28 18:35:50", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_183550.jpg", + "handle": "IMG_20190928_183550.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-02 07:37:14", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602073714.heic", + "handle": "IMG20230602073714.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-16 14:00:05", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140005.jpg", + "handle": "IMG20230316140005.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6625.jpg", + "handle": "IMG_6625.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", + "width": 4764, + "height": 3357, + "orientation": 0, + "taken_at": "2023-03-23 16:56:25", + "camera": "iPhone 14 Pro Max", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_0526.jpg", + "handle": "IMG_0526.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-12-04 13:38:57", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181204_133857.jpg", + "handle": "IMG_20181204_133857.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-07 18:42:18", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207184218.jpg", + "handle": "IMG20230207184218.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 12:53:58", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_125358.jpg", + "handle": "IMG_20200206_125358.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-19 20:49:52", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_204949.jpg", + "handle": "IMG_20210819_204949.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", + "width": 6144, + "height": 8192, + "orientation": 0, + "taken_at": "2023-03-31 13:53:11", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331135311.jpg", + "handle": "IMG20230331135311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-02-06 10:03:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100331.jpg", + "handle": "IMG_20200206_100331.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-01-23 14:32:30", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143230.jpg", + "handle": "IMG_20200123_143230.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-02-12 18:09:47", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190212_180947.jpg", + "handle": "IMG_20190212_180947.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 18:19:17", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181914.jpg", + "handle": "IMG_20221206_181914.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-05-20 20:21:28", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202127.jpg", + "handle": "IMG_20190520_202127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", + "width": 4623, + "height": 3460, + "orientation": 90, + "taken_at": "2019-11-11 13:32:07", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191111_133207.jpg", + "handle": "IMG_20191111_133207.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", + "width": 4000, + "height": 2250, + "orientation": 90, + "taken_at": "2019-08-27 20:46:08", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190827_204608.jpg", + "handle": "IMG_20190827_204608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-01 21:04:56", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210456.heic", + "handle": "IMG20230601210456.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", + "width": 1080, + "height": 2400, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg", + "handle": "Screenshot_2021-03-05-15-56-59-562_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", + "width": 4656, + "height": 2620, + "orientation": 0, + "taken_at": "2020-04-09 10:47:22", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_104722.jpg", + "handle": "IMG_20200409_104722.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:53:15", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125315.jpg", + "handle": "IMG20230331125315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 18:41:40", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_184138.jpg", + "handle": "IMG_20221206_184138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-05 19:25:58", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192558.jpg", + "handle": "IMG_20191205_192558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-06-01 11:27:17", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112717.heic", + "handle": "IMG20230601112717.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-05 19:29:55", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192955.jpg", + "handle": "IMG_20191205_192955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-18 23:07:07", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_230707.jpg", + "handle": "IMG_20210818_230707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-01 21:05:44", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210544.heic", + "handle": "IMG20230601210544.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-11 15:33:23", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153323.jpg", + "handle": "IMG_20170211_153323.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 13:28:16", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_132816.jpg", + "handle": "IMG_20200206_132816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 17:46:14", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174610.jpg", + "handle": "IMG_20210630_174610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-15 14:38:52", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143849.jpg", + "handle": "IMG_20210315_143849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", + "width": 694, + "height": 1051, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/VID_20200130_190011.mp4", + "handle": "VID_20200130_190011.mp4" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 11:56:40", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115640.jpg", + "handle": "IMG20230314115640.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-06-01 11:26:13", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112613.heic", + "handle": "IMG20230601112613.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-12-31 20:12:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_201231.jpg", + "handle": "IMG_20191231_201231.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-11-05 13:29:12", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20181105_132912.jpg", + "handle": "IMG_20181105_132912.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-17 07:01:21", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20230317_092635.jpg", + "handle": "IMG_20230317_092635.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 18:11:37", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_181134.jpg", + "handle": "IMG_20221206_181134.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 14:35:39", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143539.jpg", + "handle": "IMG20230315143539.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:04", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094703.jpg", + "handle": "IMG_20190614_094703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-15 09:35:32", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315093532.jpg", + "handle": "IMG20230315093532.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 10:36:51", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103651.jpg", + "handle": "IMG20230205103651.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", + "width": 3840, + "height": 1930, + "orientation": 0, + "taken_at": "2020-07-09 11:28:37", + "camera": "MI 9", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200709_113134.jpg", + "handle": "IMG_20200709_113134.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-10-25 16:36:57", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20211025_163654.jpg", + "handle": "IMG_20211025_163654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-03-11 15:38:59", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170311_153859.jpg", + "handle": "IMG_20170311_153859.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-11 12:53:14", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125314.jpg", + "handle": "IMG_20170211_125314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-09-27 17:44:21", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190927_174421.jpg", + "handle": "IMG_20190927_174421.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 15:33:35", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153335.jpg", + "handle": "IMG_20170211_153335.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-01-13 17:37:56", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173754.jpg", + "handle": "IMG_20210113_173754.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", + "width": 4608, + "height": 3456, + "orientation": 90, + "taken_at": "2021-06-29 22:09:58", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_220957.jpg", + "handle": "IMG_20210629_220957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-11-27 18:59:10", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191127_185910.jpg", + "handle": "IMG_20191127_185910.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 21:09:09", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_210907.jpg", + "handle": "IMG_20221206_210907.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-01-23 14:32:33", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200123_143233.jpg", + "handle": "IMG_20200123_143233.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-04-14 20:40:14", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180414_204014.jpg", + "handle": "IMG_20180414_204014.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-02-06 15:30:30", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_153030.jpg", + "handle": "IMG_20200206_153030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-07-05 18:42:37", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210705_184235.jpg", + "handle": "IMG_20210705_184235.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", + "width": 2304, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-07 15:18:17", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207151817.jpg", + "handle": "IMG20230207151817.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2018-07-26 14:13:38", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141338.jpg", + "handle": "IMG_20180726_141338.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", + "width": 2304, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-07 09:09:11", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090911.jpg", + "handle": "IMG20230207090911.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-02 18:02:41", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180241.jpg", + "handle": "IMG_20191002_180241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-01 21:42:25", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601214225.heic", + "handle": "IMG20230601214225.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 11:55:09", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314115509.jpg", + "handle": "IMG20230314115509.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-03-09 21:11:05", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180309_211105.jpg", + "handle": "IMG_20180309_211105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-05-20 14:28:11", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170520_142811.jpg", + "handle": "IMG_20170520_142811.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-22 18:12:41", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_181241.jpg", + "handle": "IMG_20190922_181241.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:57:06", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125706.jpg", + "handle": "IMG20230331125706.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 15:32:54", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153254.jpg", + "handle": "IMG_20170211_153254.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-06-01 15:13:38", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151338.heic", + "handle": "IMG20230601151338.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 15:32:40", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_153240.jpg", + "handle": "IMG_20170211_153240.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-16 14:00:07", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316140007.jpg", + "handle": "IMG20230316140007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", + "width": 3603, + "height": 1784, + "orientation": 0, + "taken_at": "2021-03-12 11:20:00", + "camera": "M2002J9G", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_112928.jpg", + "handle": "IMG_20210312_112928.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-01-13 17:38:07", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210113_173806.jpg", + "handle": "IMG_20210113_173806.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-06-10 18:03:08", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180308.jpg", + "handle": "IMG_20180610_180308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 17:01:27", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315170127.jpg", + "handle": "IMG20230315170127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2021-07-01 12:31:42", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210701_123141.jpg", + "handle": "IMG_20210701_123141.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-05-08 17:21:05", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190508_172105.jpg", + "handle": "IMG_20190508_172105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", + "width": 4945, + "height": 5679, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230602164104~2.jpg", + "handle": "IMG20230602164104~2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 14:25:31", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142531.jpg", + "handle": "IMG20230314142531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 10:36:52", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205103652.jpg", + "handle": "IMG20230205103652.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", + "width": 4608, + "height": 3456, + "orientation": 180, + "taken_at": "2021-03-12 16:20:40", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162039.jpg", + "handle": "IMG_20210312_162039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:02", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140502_1.jpg", + "handle": "IMG_20200710_140502_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-18 09:34:35", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191018_093435.jpg", + "handle": "IMG_20191018_093435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-31 19:56:12", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191231_195612.jpg", + "handle": "IMG_20191231_195612.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", + "width": 3000, + "height": 4000, + "orientation": 0, + "taken_at": "2023-06-01 15:14:40", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151440.heic", + "handle": "IMG20230601151440.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-15 14:39:07", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143906.jpg", + "handle": "IMG_20210315_143906.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", + "width": 3968, + "height": 2976, + "orientation": 0, + "taken_at": "2019-03-29 09:59:09", + "camera": "MHA-L29", + "camera_make": "HUAWEI", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095908.jpg", + "handle": "IMG_20190329_095908.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", + "width": 8000, + "height": 6000, + "orientation": 0, + "taken_at": "2023-06-01 21:05:49", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601210549.heic", + "handle": "IMG20230601210549.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-08 10:52:15", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105215.jpg", + "handle": "IMG_20180308_105215.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2023-05-31 21:09:01", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210901.heic", + "handle": "IMG20230531210901.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-06-01 11:28:25", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112825.heic", + "handle": "IMG20230601112825.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-10-02 18:02:45", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191002_180245.jpg", + "handle": "IMG_20191002_180245.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-12 11:40:22", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_114018.jpg", + "handle": "IMG_20210312_114018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6597.jpg", + "handle": "IMG_6597.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-08-14 11:59:23", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190814_115923.jpg", + "handle": "IMG_20190814_115923.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", + "width": 1080, + "height": 2400, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-03-12-14-44-21-364_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-04-15 21:31:38", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180415_213138.jpg", + "handle": "IMG_20180415_213138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2023-02-04 16:08:13", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160813.jpg", + "handle": "IMG20230204160813.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-05 19:29:53", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191205_192953.jpg", + "handle": "IMG_20191205_192953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 17:46:18", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_174616.jpg", + "handle": "IMG_20210630_174616.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-02-03 13:16:35", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203131635.jpg", + "handle": "IMG20230203131635.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-15 14:39:14", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_143913.jpg", + "handle": "IMG_20210315_143913.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:05", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094705.jpg", + "handle": "IMG_20190614_094705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-01-25 14:47:03", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180125_144703.jpg", + "handle": "IMG_20180125_144703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-06-22 10:04:06", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200622_100406.jpg", + "handle": "IMG_20200622_100406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2023-06-01 11:27:00", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601112700.heic", + "handle": "IMG20230601112700.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 14:25:22", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314142522.jpg", + "handle": "IMG20230314142522.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-12-20 17:29:22", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_172922.jpg", + "handle": "IMG_20191220_172922.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-01 16:45:35", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_164535.jpg", + "handle": "IMG_20191001_164535.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-07-11 14:58:09", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190711_145809.jpg", + "handle": "IMG_20190711_145809.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 10:59:40", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105940.jpg", + "handle": "IMG_20170211_105940.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2020-10-08 18:38:39", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_183838.jpg", + "handle": "IMG_20201008_183838.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", + "width": 4032, + "height": 2268, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6620.jpg", + "handle": "IMG_6620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 17:10:16", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205171016.jpg", + "handle": "IMG20230205171016.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-02-07 16:55:17", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165517.jpg", + "handle": "IMG_20200207_165517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-22 20:20:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202040.jpg", + "handle": "IMG_20190922_202040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", + "width": 3840, + "height": 2160, + "orientation": 90, + "taken_at": "2018-09-05 19:53:41", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180905_195339.jpg", + "handle": "IMG_20180905_195339.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", + "width": 3008, + "height": 2000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/2020_0207_18002200.jpg", + "handle": "2020_0207_18002200.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:15:33", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191531.jpg", + "handle": "IMG_20221206_191531.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-10 17:27:04", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310172704.jpg", + "handle": "IMG20230310172704.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", + "width": 4000, + "height": 3000, + "orientation": 270, + "taken_at": "2020-10-08 18:14:20", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181418.jpg", + "handle": "IMG_20201008_181418.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:53:04", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125304.jpg", + "handle": "IMG20230331125304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 16:16:29", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_161628.jpg", + "handle": "IMG_20221206_161628.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-07-29 11:24:48", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190729_112448.jpg", + "handle": "IMG_20190729_112448.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 12:01:38", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_120138.jpg", + "handle": "IMG_20200710_120138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:15:22", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_191518.jpg", + "handle": "IMG_20221206_191518.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2023-02-04 16:08:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204160810.jpg", + "handle": "IMG20230204160810.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-28 12:43:47", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328124347.jpg", + "handle": "IMG20230328124347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", + "width": 4896, + "height": 6528, + "orientation": 0, + "taken_at": "2023-03-16 17:21:14", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316172114_01.jpg", + "handle": "IMG20230316172114_01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-05-02 20:47:13", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190502_204713.jpg", + "handle": "IMG_20190502_204713.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-04 19:07:05", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204190705.jpg", + "handle": "IMG20230204190705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-02-06 16:29:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_162942_1.jpg", + "handle": "IMG_20200206_162942_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", + "width": 3968, + "height": 2976, + "orientation": 0, + "taken_at": "2019-03-29 09:58:56", + "camera": "MHA-L29", + "camera_make": "HUAWEI", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_095856.jpg", + "handle": "IMG_20190329_095856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-03-17 08:01:18", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230317080118.jpg", + "handle": "IMG20230317080118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 20:41:55", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_204154.jpg", + "handle": "IMG_20221206_204154.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:21:03", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205122103.jpg", + "handle": "IMG20230205122103.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2018-07-26 14:15:11", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180726_141511.jpg", + "handle": "IMG_20180726_141511.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 09:47:06", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_094706.jpg", + "handle": "IMG_20190614_094706.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-18 12:00:06", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180318_120006.jpg", + "handle": "IMG_20180318_120006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-12 11:20:00", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_111957.jpg", + "handle": "IMG_20210312_111957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20160122-WA0006.jpg", + "handle": "IMG-20160122-WA0006.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-12 16:20:10", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210312_162007.jpg", + "handle": "IMG_20210312_162007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-06-01 17:45:49", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601174549.heic", + "handle": "IMG20230601174549.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-19 14:16:07", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_141606.jpg", + "handle": "IMG_20210819_141606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", + "width": 6923, + "height": 2311, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/PANO_20200206_080703.jpg", + "handle": "PANO_20200206_080703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 16:39:32", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192546.jpg", + "handle": "IMG_20200206_192546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-04 09:20:29", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092029.jpg", + "handle": "IMG20230204092029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-31 15:46:43", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200131_154643.jpg", + "handle": "IMG_20200131_154643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:56:21", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125621_1.jpg", + "handle": "IMG_20200222_125621_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:22", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140522.jpg", + "handle": "IMG_20200710_140522.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-04 09:29:54", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230204092954.jpg", + "handle": "IMG20230204092954.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", + "width": 3000, + "height": 4000, + "orientation": 0, + "taken_at": "2023-06-01 15:13:53", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230601151353.heic", + "handle": "IMG20230601151353.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:11", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143611.jpg", + "handle": "IMG20230315143611.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 14:29:04", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_142904.jpg", + "handle": "IMG_20190614_142904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-02-07 19:45:24", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207194524.jpg", + "handle": "IMG20230207194524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", + "width": 4608, + "height": 2592, + "orientation": 0, + "taken_at": "2019-12-20 16:24:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_162404.jpg", + "handle": "IMG_20191220_162404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:30:52", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5950.jpg", + "handle": "IMG_5950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 12:09:42", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5978.jpg", + "handle": "IMG_5978.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", + "width": 2250, + "height": 4000, + "orientation": 0, + "taken_at": "2020-02-06 10:03:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_100408.jpg", + "handle": "IMG_20200206_100408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 16:51:20", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192618.jpg", + "handle": "IMG_20200206_192618.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", + "width": 1080, + "height": 2400, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-03-12-14-19-05-314_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-16 15:09:02", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_150859.jpg", + "handle": "IMG_20210316_150859.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-23 14:33:49", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5993.jpg", + "handle": "IMG_5993.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2020-10-08 18:14:44", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_181442.jpg", + "handle": "IMG_20201008_181442.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2020-10-08 20:29:03", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201008_202902.jpg", + "handle": "IMG_20201008_202902.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-04-18 14:56:17", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190418_145617.jpg", + "handle": "IMG_20190418_145617.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-23 14:33:29", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5992.jpg", + "handle": "IMG_5992.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:54:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125410.jpg", + "handle": "IMG20230331125410.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", + "width": 6419, + "height": 2492, + "orientation": 0, + "taken_at": "2023-03-22 14:09:52", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5979.jpg", + "handle": "IMG_5979.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:54:50", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5951.jpg", + "handle": "IMG_5951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-02-22 12:56:38", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125638_1.jpg", + "handle": "IMG_20200222_125638_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-30 18:59:36", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185936.jpg", + "handle": "IMG_20200130_185936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2017-02-11 12:52:01", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_125201.jpg", + "handle": "IMG_20170211_125201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:10", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143610.jpg", + "handle": "IMG20230315143610.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-15 11:10:19", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_111017.jpg", + "handle": "IMG_20210315_111017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-18 20:32:27", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210818_203225.jpg", + "handle": "IMG_20210818_203225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-10-14 16:53:57", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165357.jpg", + "handle": "IMG_20191014_165357.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-02-05 12:13:22", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230205121322.jpg", + "handle": "IMG20230205121322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 14:15:35", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_141535.jpg", + "handle": "IMG_20200206_141535.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-07-26 16:03:15", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210726_160314.jpg", + "handle": "IMG_20210726_160314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-13 17:02:34", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230313170234.jpg", + "handle": "IMG20230313170234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:56:28", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_125628.jpg", + "handle": "IMG_20200222_125628.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", + "width": 1080, + "height": 2400, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg", + "handle": "Screenshot_2021-03-25-11-59-14-666_com.android.chrome.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-02-06 13:55:07", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_135507.jpg", + "handle": "IMG_20200206_135507.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 16:42:50", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_192551.jpg", + "handle": "IMG_20200206_192551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", + "width": 1800, + "height": 4000, + "orientation": 0, + "taken_at": "2022-12-06 20:06:35", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_200632.jpg", + "handle": "IMG_20221206_200632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:21", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140521.jpg", + "handle": "IMG_20200710_140521.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:06", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143606.jpg", + "handle": "IMG20230315143606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", + "width": 3754, + "height": 2129, + "orientation": 0, + "taken_at": "2020-01-30 17:47:14", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_174715.jpg", + "handle": "IMG_20200130_174715.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-02-07 16:54:06", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_165406.jpg", + "handle": "IMG_20200207_165406.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-03 19:56:55", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230203195655.jpg", + "handle": "IMG20230203195655.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:57:41", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5953.jpg", + "handle": "IMG_5953.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-23 14:33:12", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5990.jpg", + "handle": "IMG_5990.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-12 19:27:49", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230312192749.jpg", + "handle": "IMG20230312192749.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-09 21:58:06", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230309215806.jpg", + "handle": "IMG20230309215806.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-23 14:33:15", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5991.jpg", + "handle": "IMG_5991.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-12-20 11:09:06", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_110906.jpg", + "handle": "IMG_20191220_110906.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:57:39", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5952.jpg", + "handle": "IMG_5952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2022-12-06 19:34:22", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20221206_193418.jpg", + "handle": "IMG_20221206_193418.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 22:16:29", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_221626.jpg", + "handle": "IMG_20210629_221626.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-30 15:01:07", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_150107.jpg", + "handle": "IMG_20200130_150107.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2021-06-30 11:55:04", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_115503.jpg", + "handle": "IMG_20210630_115503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 12:41:05", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315124105.jpg", + "handle": "IMG20230315124105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-02-07 15:21:59", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152159.jpg", + "handle": "IMG20230207152159.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-14 19:58:10", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210314_195807.jpg", + "handle": "IMG_20210314_195807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-12-20 18:51:00", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191220_185100.jpg", + "handle": "IMG_20191220_185100.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-08-31 12:51:43", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6644.jpg", + "handle": "IMG_6644.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-08-31 12:54:04", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6650.jpg", + "handle": "IMG_6650.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 14:23:23", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142323.jpg", + "handle": "IMG20230315142323.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-03-10 13:33:04", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230310133304.jpg", + "handle": "IMG20230310133304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-10-14 10:07:30", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_100731.jpg", + "handle": "IMG_20191014_100731.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20180223-WA0015.jpg", + "handle": "IMG-20180223-WA0015.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2019-03-29 17:36:36", + "camera": "Mi A1", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190329_173636.jpg", + "handle": "IMG_20190329_173636.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-08-19 20:50:31", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210819_205029.jpg", + "handle": "IMG_20210819_205029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", + "width": 2304, + "height": 4096, + "orientation": 0, + "taken_at": "2023-02-07 09:06:20", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207090620.jpg", + "handle": "IMG20230207090620.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-25 15:40:40", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200125_154040.jpg", + "handle": "IMG_20200125_154040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2023-03-16 16:29:41", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230316162941.jpg", + "handle": "IMG20230316162941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-06-10 18:04:21", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180610_180421.jpg", + "handle": "IMG_20180610_180421.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", + "width": 4608, + "height": 3456, + "orientation": 0, + "taken_at": "2023-05-31 21:08:58", + "camera": "OnePlus 9", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230531210858.heic", + "handle": "IMG20230531210858.heic" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-30 11:45:55", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210630_114553.jpg", + "handle": "IMG_20210630_114553.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-07 15:07:50", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_150750_1.jpg", + "handle": "IMG_20200207_150750_1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-08-17 14:55:39", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_145537.jpg", + "handle": "IMG_20210817_145537.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:18", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140518.jpg", + "handle": "IMG_20200710_140518.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", + "width": 4656, + "height": 2620, + "orientation": 0, + "taken_at": "2020-02-07 10:30:23", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_103023.jpg", + "handle": "IMG_20200207_103023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", + "width": 3264, + "height": 1472, + "orientation": 270, + "taken_at": "2021-08-17 12:53:49", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210817_125348.jpg", + "handle": "IMG_20210817_125348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-09-10 10:21:16", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102116.jpg", + "handle": "IMG_20190910_102116.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", + "width": 917, + "height": 1391, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg", + "handle": "Screenshot_2019-12-20-21-23-31-664_com.Slack.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:59:20", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5956.jpg", + "handle": "IMG_5956.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2020-04-09 09:44:33", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200409_094433.jpg", + "handle": "IMG_20200409_094433.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", + "width": 3942, + "height": 2974, + "orientation": 0, + "taken_at": "2023-03-22 14:10:19", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5980.jpg", + "handle": "IMG_5980.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-06 09:58:31", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_095831.jpg", + "handle": "IMG_20200206_095831.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-03-15 18:03:20", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210315_180318.jpg", + "handle": "IMG_20210315_180318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-23 17:12:07", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5994.jpg", + "handle": "IMG_5994.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-03-22 15:11:39", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180322_151139.jpg", + "handle": "IMG_20180322_151139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-06-29 23:35:57", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_233555.jpg", + "handle": "IMG_20210629_233555.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:39:22", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5957.jpg", + "handle": "IMG_5957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", + "width": 4000, + "height": 3000, + "orientation": 0, + "taken_at": "2020-10-09 07:26:17", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20201009_072614.jpg", + "handle": "IMG_20201009_072614.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-15 14:36:02", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315143602.jpg", + "handle": "IMG20230315143602.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-03-16 11:07:09", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210316_110705.jpg", + "handle": "IMG_20210316_110705.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 18:16:09", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_181607.jpg", + "handle": "IMG_20210629_181607.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-07-10 14:05:19", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_140519.jpg", + "handle": "IMG_20200710_140519.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:53", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135353.jpg", + "handle": "IMG20230315135353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:47", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135347.jpg", + "handle": "IMG20230315135347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-02-20 12:26:08", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190220_122607.jpg", + "handle": "IMG_20190220_122607.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-31 13:20:22", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331132022.jpg", + "handle": "IMG20230331132022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", + "width": 6528, + "height": 4896, + "orientation": 0, + "taken_at": "2023-02-07 15:22:02", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230207152202.jpg", + "handle": "IMG20230207152202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-10-01 13:59:00", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191001_135900.jpg", + "handle": "IMG_20191001_135900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-22 20:47:26", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_204726.jpg", + "handle": "IMG_20190922_204726.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2020-07-10 20:31:29", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200710_203129.jpg", + "handle": "IMG_20200710_203129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", + "width": 1800, + "height": 4000, + "orientation": 0, + "taken_at": "2022-09-30 11:11:47", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20220930_111146.jpg", + "handle": "IMG_20220930_111146.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", + "width": 4618, + "height": 3464, + "orientation": 180, + "taken_at": "2019-09-28 04:23:42", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190928_042342.jpg", + "handle": "IMG_20190928_042342.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:45", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135345.jpg", + "handle": "IMG20230315135345.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-14 16:52:31", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180314_165231.jpg", + "handle": "IMG_20180314_165231.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-10-14 16:53:53", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191014_165353.jpg", + "handle": "IMG_20191014_165353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-08-31 12:51:23", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_6643.jpg", + "handle": "IMG_6643.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", + "width": 4623, + "height": 3460, + "orientation": 0, + "taken_at": "2019-10-17 17:47:20", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191017_174720.jpg", + "handle": "IMG_20191017_174720.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", + "width": 4000, + "height": 2250, + "orientation": 270, + "taken_at": "2019-09-22 20:20:37", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190922_202037.jpg", + "handle": "IMG_20190922_202037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2019-06-14 11:13:42", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_111342.jpg", + "handle": "IMG_20190614_111342.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", + "width": 4000, + "height": 1800, + "orientation": 270, + "taken_at": "2021-07-24 12:30:51", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210724_123049.jpg", + "handle": "IMG_20210724_123049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2018-03-08 10:52:49", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180308_105249.jpg", + "handle": "IMG_20180308_105249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:57:45", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5955.jpg", + "handle": "IMG_5955.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 14:10:39", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5982.jpg", + "handle": "IMG_5982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", + "width": 3648, + "height": 2736, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200611_102347.jpg", + "handle": "IMG_20200611_102347.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-06-14 14:19:50", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190614_141950.jpg", + "handle": "IMG_20190614_141950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-03-31 13:13:25", + "camera": "Nokia 8", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190331_131324.jpg", + "handle": "IMG_20190331_131324.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", + "width": 768, + "height": 1024, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG-20170323-WA0003.jpg", + "handle": "IMG-20170323-WA0003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", + "width": 3072, + "height": 4096, + "orientation": 0, + "taken_at": "2023-03-14 21:10:17", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230314211017.jpg", + "handle": "IMG20230314211017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", + "width": 4618, + "height": 3464, + "orientation": 0, + "taken_at": "2020-02-09 12:09:59", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200209_120959.jpg", + "handle": "IMG_20200209_120959.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-22 12:08:04", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200222_120804.jpg", + "handle": "IMG_20200222_120804.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 14:10:41", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5983.jpg", + "handle": "IMG_5983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", + "width": 3840, + "height": 2160, + "orientation": 270, + "taken_at": "2019-05-20 20:21:40", + "camera": "Nokia 8", + "camera_make": "HMD Global", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190520_202140.jpg", + "handle": "IMG_20190520_202140.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 10:57:43", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5954.jpg", + "handle": "IMG_5954.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", + "width": 2420, + "height": 3221, + "orientation": 0, + "taken_at": "2016-07-27 18:27:50", + "camera": "X-E2", + "camera_make": "FUJIFILM", + "filename": "sample-imagesets/56K-Cloud-Experiences/DSCF8674.jpg", + "handle": "DSCF8674.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", + "width": 2400, + "height": 1080, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/56K-Cloud-Experiences/Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg", + "handle": "Screenshot_2021-07-08-11-06-24-197_com.microsoft.teams.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", + "width": 4032, + "height": 3024, + "orientation": 0, + "taken_at": "2023-03-22 11:51:47", + "camera": "iPhone 12 Pro", + "camera_make": "Apple", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_5968.jpg", + "handle": "IMG_5968.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", + "width": 4000, + "height": 1800, + "orientation": 0, + "taken_at": "2021-06-29 21:12:46", + "camera": "M2002J9G", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20210629_211244.jpg", + "handle": "IMG_20210629_211244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-30 18:59:27", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185927.jpg", + "handle": "IMG_20200130_185927.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-31 12:58:30", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230331125830.jpg", + "handle": "IMG20230331125830.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-01-30 18:59:33", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200130_185933.jpg", + "handle": "IMG_20200130_185933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", + "width": 2160, + "height": 3840, + "orientation": 0, + "taken_at": "2018-04-18 17:29:04", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20180418_172904.jpg", + "handle": "IMG_20180418_172904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-12-04 09:17:01", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20191204_091701.jpg", + "handle": "IMG_20191204_091701.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", + "width": 4656, + "height": 2620, + "orientation": 0, + "taken_at": "2020-02-06 11:54:05", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200206_115405.jpg", + "handle": "IMG_20200206_115405.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", + "width": 8192, + "height": 6144, + "orientation": 0, + "taken_at": "2023-03-28 20:48:51", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230328204851.jpg", + "handle": "IMG20230328204851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 14:23:25", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315142325.jpg", + "handle": "IMG20230315142325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", + "width": 3840, + "height": 2160, + "orientation": 0, + "taken_at": "2017-02-11 10:59:36", + "camera": "ONE A2003", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20170211_105936.jpg", + "handle": "IMG_20170211_105936.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", + "width": 4096, + "height": 3072, + "orientation": 0, + "taken_at": "2023-03-15 13:53:44", + "camera": "OnePlus Nord2 5G", + "camera_make": "OnePlus", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG20230315135344.jpg", + "handle": "IMG20230315135344.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2020-02-07 11:36:36", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20200207_113636.jpg", + "handle": "IMG_20200207_113636.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", + "width": 4000, + "height": 2250, + "orientation": 0, + "taken_at": "2019-09-10 10:20:48", + "camera": "MI 9", + "camera_make": "Xiaomi", + "filename": "sample-imagesets/56K-Cloud-Experiences/IMG_20190910_102048.jpg", + "handle": "IMG_20190910_102048.jpg" + } + ] } diff --git a/core/data/image-sets/600.json b/core/data/image-sets/600.json index 1114e1e..f9ae05c 100644 --- a/core/data/image-sets/600.json +++ b/core/data/image-sets/600.json @@ -1,6604 +1,6604 @@ { - "600": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.26.22.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:26:22", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.26.22.jpg", - "handle": "2018-04-09 14.26.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9030.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-18 12:02:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9030.jpg", - "handle": "IMG_9030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9024.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 10:38:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9024.jpg", - "handle": "IMG_9024.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 20.13.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 20:13:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 20.13.10.jpg", - "handle": "2018-04-09 20.13.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.14.42-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:14:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.14.42-2.jpg", - "handle": "2016-04-08 12.14.42-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.11.50.jpg", - "handle": "2016-12-21 16.11.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.11.28.jpg", - "handle": "2018-04-09 15.11.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8925.jpg", - "width": 350, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 10:34:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8925.jpg", - "handle": "IMG_8925.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8919.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 23:53:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8919.jpg", - "handle": "IMG_8919.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.46.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:46", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.34.46.jpg", - "handle": "2018-04-09 13.34.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 20.02.41.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 20:02:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 20.02.41.jpg", - "handle": "2018-04-09 20.02.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8529.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 12:09:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8529.jpg", - "handle": "IMG_8529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.07.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:07", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.38.07.jpg", - "handle": "2016-04-08 11.38.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.39.jpg", - "width": 1600, - "height": 1580, - "orientation": 0, - "taken_at": "2016-12-21 16:10:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.10.39.jpg", - "handle": "2016-12-21 16.10.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.37.02.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:37:02", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 14.37.02.jpg", - "handle": "2016-12-21 14.37.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9019.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 08:09:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9019.jpg", - "handle": "IMG_9019.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.50.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 18.26.50.jpg", - "handle": "2018-04-08 18.26.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.39.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.05.39.jpg", - "handle": "2016-04-08 12.05.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8477.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 15:10:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8477.jpg", - "handle": "IMG_8477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8311.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-13 18:43:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8311.jpg", - "handle": "IMG_8311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.13.42.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:13:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.13.42.jpg", - "handle": "2016-12-21 16.13.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9423.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-05-05 20:26:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9423.jpg", - "handle": "IMG_9423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 07.53.54.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 07:53:54", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-10 07.53.54.jpg", - "handle": "2018-04-10 07.53.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.10.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.15.10.jpg", - "handle": "2018-04-09 14.15.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.50.58.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:50:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.50.58.jpg", - "handle": "2018-04-09 13.50.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.39.57.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:57", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_10.39.57.jpg", - "handle": "2016-08-24_10.39.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.59.30.jpg", - "width": 1024, - "height": 284, - "orientation": 0, - "taken_at": "2018-04-09 14:59:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.59.30.jpg", - "handle": "2018-04-09 14.59.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.37.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 16.48.37.jpg", - "handle": "2018-04-09 16.48.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 19.18.52.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 19.18.52.jpg", - "handle": "2018-04-09 19.18.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8700.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 01:37:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8700.jpg", - "handle": "IMG_8700.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.20.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:20:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.20.55.jpg", - "handle": "2018-04-09 14.20.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8853.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:36", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8853.JPG", - "handle": "IMG_8853.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8847.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-12 18:38:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8847.jpg", - "handle": "IMG_8847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.23.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:23:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-10 08.23.55.jpg", - "handle": "2018-04-10 08.23.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9032.jpg", - "width": 1000, - "height": 378, - "orientation": 0, - "taken_at": "2018-04-18 14:49:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9032.jpg", - "handle": "IMG_9032.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8466.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-04-08 14:00:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8466.jpg", - "handle": "IMG_8466.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8300.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-03-13 13:32:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8300.jpg", - "handle": "IMG_8300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8314.jpg", - "width": 1000, - "height": 534, - "orientation": 0, - "taken_at": "2018-03-13 18:46:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8314.jpg", - "handle": "IMG_8314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8328.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-16 07:36:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8328.jpg", - "handle": "IMG_8328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8710.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:50:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8710.jpg", - "handle": "IMG_8710.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.20.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:20:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.20.09.jpg", - "handle": "2018-04-09 13.20.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9426.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 20:27:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9426.jpg", - "handle": "IMG_9426.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.33.49.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:33:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.33.49.jpg", - "handle": "2018-04-09 13.33.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9195.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-27 14:38:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9195.jpg", - "handle": "IMG_9195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8506.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-09 03:10:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8506.jpg", - "handle": "IMG_8506.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.45.00.jpg", - "width": 1600, - "height": 1219, - "orientation": 0, - "taken_at": "2016-04-08 11:45:00", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.45.00.jpg", - "handle": "2016-04-08 11.45.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.37.48.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:37:48", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.37.48.jpg", - "handle": "2018-04-09 14.37.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.39.53.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:53", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_10.39.53.jpg", - "handle": "2016-08-24_10.39.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.26.29.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:29", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.26.29.jpg", - "handle": "2016-04-08 11.26.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.56.22.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 10:56:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 10.56.22.jpg", - "handle": "2016-04-08 10.56.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.38.jpg", - "width": 1600, - "height": 553, - "orientation": 0, - "taken_at": "2016-12-21 13:21:38", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 13.21.38.jpg", - "handle": "2016-12-21 13.21.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8842.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:22:25", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8842.JPG", - "handle": "IMG_8842.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.51.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:51:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.51.20.jpg", - "handle": "2018-04-09 13.51.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9023.jpg", - "width": 1000, - "height": 528, - "orientation": 0, - "taken_at": "2018-04-18 10:23:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9023.jpg", - "handle": "IMG_9023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.29.33-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:29:33", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.29.33-2.jpg", - "handle": "2016-04-08 12.29.33-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_12.37.03.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_12.37.03.jpg", - "handle": "2016-08-24_12.37.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.23.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.23.13.jpg", - "handle": "2016-04-08 12.23.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.55.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.11.55.jpg", - "handle": "2016-12-21 16.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.58.31.jpg", - "width": 1600, - "height": 874, - "orientation": 0, - "taken_at": "2016-04-08 10:58:31", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 10.58.31.jpg", - "handle": "2016-04-08 10.58.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.48.40.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-12-21 16:48:40", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.48.40.jpg", - "handle": "2016-12-21 16.48.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8707.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:32:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8707.jpg", - "handle": "IMG_8707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9815.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 18:06:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9815.jpg", - "handle": "IMG_9815.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.09.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:09:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.09.59.jpg", - "handle": "2018-04-09 15.09.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:26:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9424.jpg", - "handle": "IMG_9424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.27.01.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:27:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 18.27.01.jpg", - "handle": "2018-04-08 18.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9395.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:39:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9395.JPG", - "handle": "IMG_9395.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9020.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 08:54:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9020.jpg", - "handle": "IMG_9020.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.41.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 18:26:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 18.26.41.jpg", - "handle": "2018-04-08 18.26.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 15:18:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9034.jpg", - "handle": "IMG_9034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9008.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-17 14:42:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9008.jpg", - "handle": "IMG_9008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.06.55.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:06:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.06.55.jpg", - "handle": "2018-04-08 20.06.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-12 17:00:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8832.jpg", - "handle": "IMG_8832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.37.08.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:08", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.37.08.jpg", - "handle": "2016-04-08 11.37.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.56.46.jpg", - "width": 1600, - "height": 1275, - "orientation": 0, - "taken_at": "2016-04-08 10:56:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 10.56.46.jpg", - "handle": "2016-04-08 10.56.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.11.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:11:41", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_11.11.41.jpg", - "handle": "2016-08-24_11.11.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.03.14.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:03:14", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.03.14.jpg", - "handle": "2018-04-09 14.03.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9325.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 12:38:25", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9325.jpg", - "handle": "IMG_9325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.40.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.40.59.jpg", - "handle": "2018-04-09 14.40.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.29.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.07.29.jpg", - "handle": "2018-04-08 20.07.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.42.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:42", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 16.48.42.jpg", - "handle": "2018-04-09 16.48.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9654.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 15:19:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9654.jpg", - "handle": "IMG_9654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8238.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:02:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8238.jpg", - "handle": "IMG_8238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.07.34.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:07:34", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-10 08.07.34.jpg", - "handle": "2018-04-10 08.07.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.53.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:53:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.53.18.jpg", - "handle": "2018-04-09 14.53.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.02.25.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:02:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 14.02.25.jpg", - "handle": "2016-12-21 14.02.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8416.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 17:40:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8416.jpg", - "handle": "IMG_8416.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9087.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:25:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9087.jpg", - "handle": "IMG_9087.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.26.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:27:26", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.27.26.jpg", - "handle": "2016-04-08 11.27.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.08.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:08:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.08.53.jpg", - "handle": "2018-04-08 20.08.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 08:13:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8428.jpg", - "handle": "IMG_8428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.49.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.49.35.jpg", - "handle": "2018-04-09 15.49.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.24.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:11:24", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.11.24.jpg", - "handle": "2016-12-21 16.11.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.59.06.jpg", - "width": 1600, - "height": 407, - "orientation": 0, - "taken_at": "2016-08-24 11:59:06", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_11.59.06.jpg", - "handle": "2016-08-24_11.59.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8164.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-18 13:26:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8164.jpg", - "handle": "IMG_8164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8951.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-14 15:22:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8951.jpg", - "handle": "IMG_8951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_09.56.23.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:23", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_09.56.23.jpg", - "handle": "2016-08-24_09.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9656.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-07 15:29:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9656.jpg", - "handle": "IMG_9656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8561.jpg", - "width": 1000, - "height": 477, - "orientation": 0, - "taken_at": "2018-04-09 19:34:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8561.jpg", - "handle": "IMG_8561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.59.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:59", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.10.59.jpg", - "handle": "2016-12-21 16.10.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:39:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8987.jpg", - "handle": "IMG_8987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8944.jpg", - "width": 955, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 13:15:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8944.jpg", - "handle": "IMG_8944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8415.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 17:39:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8415.jpg", - "handle": "IMG_8415.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.47.19.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.47.19.jpg", - "handle": "2018-04-09 15.47.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9041.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-19 11:05:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9041.jpg", - "handle": "IMG_9041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 18.26.20.jpg", - "handle": "2018-04-08 18.26.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.34.23.jpg", - "handle": "2018-04-09 13.34.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:54:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9849.jpg", - "handle": "IMG_9849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8821.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:25:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8821.jpg", - "handle": "IMG_8821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9083.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:18:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9083.jpg", - "handle": "IMG_9083.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.00.40.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:00:40", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.00.40.jpg", - "handle": "2018-04-09 14.00.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.02.21.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:02:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 14.02.21.jpg", - "handle": "2016-12-21 14.02.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.13.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:13:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.13.59.jpg", - "handle": "2018-04-08 20.13.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8758.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:00:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8758.jpg", - "handle": "IMG_8758.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9320.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:09:10", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9320.jpg", - "handle": "IMG_9320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9122.jpg", - "width": 1000, - "height": 432, - "orientation": 0, - "taken_at": "2018-04-22 12:56:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9122.jpg", - "handle": "IMG_9122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.59.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 10:59:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 10.59.13.jpg", - "handle": "2016-04-08 10.59.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8567.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:26:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8567.jpg", - "handle": "IMG_8567.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8759.jpg", - "width": 709, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:01:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8759.jpg", - "handle": "IMG_8759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.33.58.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:33:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.33.58.jpg", - "handle": "2018-04-09 14.33.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.10-1.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:10", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.38.10-1.jpg", - "handle": "2016-04-08 11.38.10-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8163.jpg", - "width": 1000, - "height": 600, - "orientation": 0, - "taken_at": "2018-02-18 13:25:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8163.jpg", - "handle": "IMG_8163.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8836.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:05:55", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8836.JPG", - "handle": "IMG_8836.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_12.37.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:49", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_12.37.49.jpg", - "handle": "2016-08-24_12.37.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8436.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 12:13:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8436.jpg", - "handle": "IMG_8436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.41.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:41:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.41.04.jpg", - "handle": "2018-04-09 14.41.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180213_102748.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 11:27:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180213_102748.jpg", - "handle": "20180213_102748.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.20.06.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 11.20.06.jpg", - "handle": "2018-02-13 11.20.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8807.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:10:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8807.jpg", - "handle": "IMG_8807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_065950.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 06:59:50", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180214_065950.jpg", - "handle": "20180214_065950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.57.35.jpg", - "width": 1600, - "height": 605, - "orientation": 0, - "taken_at": "2016-08-24 11:57:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_11.57.35.jpg", - "handle": "2016-08-24_11.57.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8967.jpg", - "width": 1000, - "height": 339, - "orientation": 0, - "taken_at": "2018-04-15 17:57:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8967.jpg", - "handle": "IMG_8967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.27.08.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:27:08", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.27.08.jpg", - "handle": "2018-04-09 14.27.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180218_151913.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 10:16:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180218_151913.jpg", - "handle": "20180218_151913.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.01.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:01:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.01.18.jpg", - "handle": "2018-04-09 14.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:07:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.07.20.jpg", - "handle": "2018-04-08 20.07.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_151354.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 15:13:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180212_151354.jpg", - "handle": "20180212_151354.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05824.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:08:38", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05824.jpg", - "handle": "DSC05824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9847.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9847.jpg", - "handle": "IMG_9847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.46.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.10.46.jpg", - "handle": "2016-12-21 16.10.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9112.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:38:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9112.jpg", - "handle": "IMG_9112.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.44.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:44:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.44.35.jpg", - "handle": "2018-04-09 14.44.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.44.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:44", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.15.44.jpg", - "handle": "2018-04-09 14.15.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.46.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:46:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.46.53.jpg", - "handle": "2018-04-09 15.46.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05825.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:13:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05825.jpg", - "handle": "DSC05825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_09.56.14.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_09.56.14.jpg", - "handle": "2016-08-24_09.56.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8972.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-15 19:59:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8972.jpg", - "handle": "IMG_8972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.37.14.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.37.14.jpg", - "handle": "2016-04-08 11.37.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.17.31.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.17.31.jpg", - "handle": "2018-02-13 10.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9071.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-19 17:01:04", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9071.jpg", - "handle": "IMG_9071.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05774.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 10:17:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05774.jpg", - "handle": "DSC05774.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.46.56.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:46:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 14.46.56.jpg", - "handle": "2016-12-21 14.46.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.46.42.jpg", - "width": 944, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:46:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 14.46.42.jpg", - "handle": "2016-12-21 14.46.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.28.02.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.28.02.jpg", - "handle": "2018-02-13 10.28.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.39.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.11.39.jpg", - "handle": "2016-12-21 16.11.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.11.55.jpg", - "handle": "2018-04-09 15.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8970.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-15 19:58:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8970.jpg", - "handle": "IMG_8970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 14.13.28.jpg", - "width": 675, - "height": 624, - "orientation": 0, - "taken_at": "2018-02-12 14:33:28", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 14.13.28.jpg", - "handle": "2018-02-12 14.13.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.37.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.07.37.jpg", - "handle": "2018-04-08 20.07.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8743.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8743.jpg", - "handle": "IMG_8743.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9850.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:55:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9850.jpg", - "handle": "IMG_9850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8596.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-10 12:59:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8596.jpg", - "handle": "IMG_8596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9844.jpg", - "handle": "IMG_9844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.47.02.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-13 10:47:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.47.02.jpg", - "handle": "2018-02-13 10.47.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-15 18.15.01.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-15 18:15:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-15 18.15.01.jpg", - "handle": "2018-02-15 18.15.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9138.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 13:51:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9138.jpg", - "handle": "IMG_9138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9104.jpg", - "width": 585, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-21 18:21:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9104.jpg", - "handle": "IMG_9104.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180218_152029.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 11:10:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180218_152029.jpg", - "handle": "20180218_152029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180213_110206.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:02:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180213_110206.jpg", - "handle": "20180213_110206.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.10.50.jpg", - "handle": "2016-12-21 16.10.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9851.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:55:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9851.jpg", - "handle": "IMG_9851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.53.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.15.53.jpg", - "handle": "2018-04-09 14.15.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_071933.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-12 16:54:10", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180214_071933.jpg", - "handle": "20180214_071933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8839.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:29:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8839.JPG", - "handle": "IMG_8839.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8434.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 11:21:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8434.jpg", - "handle": "IMG_8434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.23.17.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:23:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-10 08.23.17.jpg", - "handle": "2018-04-10 08.23.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8408.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 03:11:05", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8408.jpg", - "handle": "IMG_8408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 19:16:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8424.jpg", - "handle": "IMG_8424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8430.jpg", - "width": 1000, - "height": 842, - "orientation": 0, - "taken_at": "2018-04-08 08:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8430.jpg", - "handle": "IMG_8430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9712.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-21 19:17:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9712.jpg", - "handle": "IMG_9712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9316.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:08:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9316.jpg", - "handle": "IMG_9316.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00595.jpg", - "width": 1200, - "height": 607, - "orientation": 0, - "taken_at": "2018-02-18 08:11:16", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00595.jpg", - "handle": "DSC00595.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.43.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:43", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.38.43.jpg", - "handle": "2016-04-08 11.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.40.43.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.40.43.jpg", - "handle": "2018-04-09 14.40.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.20.01.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 11.20.01.jpg", - "handle": "2018-02-13 11.20.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.15.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:15", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.11.15.jpg", - "handle": "2016-12-21 16.11.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8431.jpg", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-08 09:07:50", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8431.jpg", - "handle": "IMG_8431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.49.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.49.04.jpg", - "handle": "2018-04-09 15.49.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06084.jpg", - "width": 1200, - "height": 810, - "orientation": 0, - "taken_at": "2018-02-17 16:24:20", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06084.jpg", - "handle": "DSC06084.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.03.jpg", - "width": 766, - "height": 1337, - "orientation": 0, - "taken_at": "2016-04-08 11:27:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.27.03.jpg", - "handle": "2016-04-08 11.27.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00378.jpg", - "width": 1177, - "height": 800, - "orientation": 0, - "taken_at": "2018-02-17 16:44:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00378.jpg", - "handle": "DSC00378.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.12.52.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:12:52", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 16.12.52.jpg", - "handle": "2016-12-21 16.12.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06045.jpg", - "width": 1200, - "height": 847, - "orientation": 0, - "taken_at": "2018-02-17 16:23:46", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06045.jpg", - "handle": "DSC06045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.01.jpg", - "width": 1600, - "height": 584, - "orientation": 0, - "taken_at": "2016-04-08 11:27:01", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.27.01.jpg", - "handle": "2016-04-08 11.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06086.jpg", - "width": 1200, - "height": 821, - "orientation": 0, - "taken_at": "2018-02-17 16:24:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06086.jpg", - "handle": "DSC06086.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180215_070918.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:34:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180215_070918.jpg", - "handle": "20180215_070918.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.09.21.jpg", - "width": 1199, - "height": 573, - "orientation": 0, - "taken_at": "2018-02-13 10:09:21", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.09.21.jpg", - "handle": "2018-02-13 10.09.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.40.25.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:40:25", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.40.25.jpg", - "handle": "2018-04-09 13.40.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8745.jpg", - "handle": "IMG_8745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05835.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:46:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05835.jpg", - "handle": "DSC05835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9315.jpg", - "width": 682, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 09:49:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9315.jpg", - "handle": "IMG_9315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.34.15.jpg", - "handle": "2018-04-09 13.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06125.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:27:19", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06125.jpg", - "handle": "DSC06125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9856.jpg", - "width": 1000, - "height": 668, - "orientation": 0, - "taken_at": "2018-05-13 08:00:41", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_9856.jpg", - "handle": "IMG_9856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00597.jpg", - "width": 1198, - "height": 599, - "orientation": 0, - "taken_at": "2018-02-18 08:18:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00597.jpg", - "handle": "DSC00597.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8547.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 18:05:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8547.jpg", - "handle": "IMG_8547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 19:26:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8552.jpg", - "handle": "IMG_8552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00596.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 08:11:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00596.jpg", - "handle": "DSC00596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05808.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:01:33", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05808.jpg", - "handle": "DSC05808.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8988.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:40:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8988.jpg", - "handle": "IMG_8988.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8744.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8744.jpg", - "handle": "IMG_8744.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00794.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:51:09", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00794.jpg", - "handle": "DSC00794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 14:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8963.jpg", - "handle": "IMG_8963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9512.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 07:11:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9512.jpg", - "handle": "IMG_9512.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.04.48.jpg", - "width": 1200, - "height": 480, - "orientation": 0, - "taken_at": "2018-02-12 16:04:48", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 16.04.48.jpg", - "handle": "2018-02-12 16.04.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_070127.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:34:17", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180214_070127.jpg", - "handle": "20180214_070127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8455.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 13:47:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8455.jpg", - "handle": "IMG_8455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.29.56.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:29:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.29.56.jpg", - "handle": "2016-04-08 12.29.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180216_194002.jpg", - "width": 1199, - "height": 693, - "orientation": 0, - "taken_at": "2018-02-16 19:40:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180216_194002.jpg", - "handle": "20180216_194002.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05660.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:16:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05660.jpg", - "handle": "DSC05660.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9824.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9824.jpg", - "handle": "IMG_9824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 19.18.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 19.18.59.jpg", - "handle": "2018-04-09 19.18.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9171.jpg", - "width": 1000, - "height": 645, - "orientation": 0, - "taken_at": "2018-04-27 13:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9171.jpg", - "handle": "IMG_9171.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.58.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:58:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_11.58.13.jpg", - "handle": "2016-08-24_11.58.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.01.22.jpg", - "width": 546, - "height": 985, - "orientation": 0, - "taken_at": "2018-02-12 16:01:22", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 16.01.22.jpg", - "handle": "2018-02-12 16.01.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9825.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9825.jpg", - "handle": "IMG_9825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:27:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9428.jpg", - "handle": "IMG_9428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05729.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:29:47", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05729.jpg", - "handle": "DSC05729.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8865.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 19:57:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8865.jpg", - "handle": "IMG_8865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.11.44.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:11:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 11.11.44.jpg", - "handle": "2018-02-13 11.11.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.23.22.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.23.22.jpg", - "handle": "2016-04-08 12.23.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8318.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 09:39:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8318.jpg", - "handle": "IMG_8318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05703.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:46:07", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05703.jpg", - "handle": "DSC05703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.35.jpg", - "width": 1600, - "height": 500, - "orientation": 0, - "taken_at": "2016-12-21 13:21:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 13.21.35.jpg", - "handle": "2016-12-21 13.21.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9204.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-27 14:50:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9204.jpg", - "handle": "IMG_9204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8898.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 20:18:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8898.jpg", - "handle": "IMG_8898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 17.17.27.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:27", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 17.17.27.jpg", - "handle": "2018-02-12 17.17.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.25.55.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:25:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.25.55.jpg", - "handle": "2016-04-08 12.25.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05688.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:32:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05688.jpg", - "handle": "DSC05688.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06154.jpg", - "width": 1200, - "height": 835, - "orientation": 0, - "taken_at": "2018-02-17 16:44:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06154.jpg", - "handle": "DSC06154.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9199.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-27 14:46:53", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9199.jpg", - "handle": "IMG_9199.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.02.29.jpg", - "width": 1024, - "height": 331, - "orientation": 0, - "taken_at": "2018-04-09 14:02:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.02.29.jpg", - "handle": "2018-04-09 14.02.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 07.05.30.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 07:05:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-10 07.05.30.jpg", - "handle": "2018-04-10 07.05.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06182.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 07:54:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06182.jpg", - "handle": "DSC06182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.40.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 10:40:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-08-24_10.40.13.jpg", - "handle": "2016-08-24_10.40.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9359.jpg", - "width": 1000, - "height": 589, - "orientation": 0, - "taken_at": "2018-05-05 18:37:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9359.jpg", - "handle": "IMG_9359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.12.05.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:12:05", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.12.05.jpg", - "handle": "2018-04-09 14.12.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 23.27.14.jpg", - "width": 1489, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 15:27:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 23.27.14.jpg", - "handle": "2016-04-08 23.27.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.20.04.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:20:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 13.20.04.jpg", - "handle": "2018-04-09 13.20.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05892.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:10:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05892.jpg", - "handle": "DSC05892.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.34.15.jpg", - "handle": "2018-04-09 14.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8133.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-02-04 10:38:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8133.JPG", - "handle": "IMG_8133.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8325.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 13:55:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8325.jpg", - "handle": "IMG_8325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9013.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 17:48:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9013.JPG", - "handle": "IMG_9013.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.17.45.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:45", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.17.45.jpg", - "handle": "2018-02-13 10.17.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.25.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.05.25.jpg", - "handle": "2016-04-08 12.05.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8490.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-08 17:36:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8490.jpg", - "handle": "IMG_8490.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9995.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:34:35", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9995.JPG", - "handle": "IMG_9995.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.21.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-04-08 12:05:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.05.21.jpg", - "handle": "2016-04-08 12.05.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9003.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-17 14:01:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9003.jpg", - "handle": "IMG_9003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.00.59.jpg", - "width": 808, - "height": 1200, - "orientation": 90, - "taken_at": "2018-02-12 16:00:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 16.00.59.jpg", - "handle": "2018-02-12 16.00.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.28.58.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 10.28.58.jpg", - "handle": "2018-02-13 10.28.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00681.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:57:55", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC00681.jpg", - "handle": "DSC00681.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9201.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-27 14:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9201.jpg", - "handle": "IMG_9201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.11.33.jpg", - "handle": "2018-04-09 15.11.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06151.jpg", - "width": 1200, - "height": 807, - "orientation": 0, - "taken_at": "2018-02-17 16:42:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06151.jpg", - "handle": "DSC06151.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06145.jpg", - "width": 1200, - "height": 765, - "orientation": 0, - "taken_at": "2018-02-17 16:42:26", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06145.jpg", - "handle": "DSC06145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8527.jpg", - "width": 1000, - "height": 604, - "orientation": 0, - "taken_at": "2018-04-09 12:09:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8527.jpg", - "handle": "IMG_8527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 16.48.12.jpg", - "handle": "2018-04-09 16.48.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.01.18.jpg", - "width": 1199, - "height": 496, - "orientation": 0, - "taken_at": "2018-02-12 16:01:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 16.01.18.jpg", - "handle": "2018-02-12 16.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9823.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9823.jpg", - "handle": "IMG_9823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.17.37.jpg", - "width": 551, - "height": 667, - "orientation": 0, - "taken_at": "2018-02-13 11:17:37", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-13 11.17.37.jpg", - "handle": "2018-02-13 11.17.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05854.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:02:24", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05854.jpg", - "handle": "DSC05854.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05840.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:53:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC05840.jpg", - "handle": "DSC05840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9348.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:30:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9348.jpg", - "handle": "IMG_9348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.34.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:34:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.34.10.jpg", - "handle": "2018-04-09 14.34.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.26.34.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:34", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.26.34.jpg", - "handle": "2016-04-08 11.26.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_145219.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:20:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180212_145219.jpg", - "handle": "20180212_145219.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.19.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 13:21:19", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-12-21 13.21.19.jpg", - "handle": "2016-12-21 13.21.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8687.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 21:40:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8687.jpg", - "handle": "IMG_8687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06018.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:20:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC06018.jpg", - "handle": "DSC06018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9941.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:44:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9941.jpg", - "handle": "IMG_9941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.40.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:40:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.40.55.jpg", - "handle": "2018-04-09 15.40.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-14 18.11.13.jpg", - "width": 1200, - "height": 266, - "orientation": 0, - "taken_at": "2018-02-14 18:11:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-14 18.11.13.jpg", - "handle": "2018-02-14 18.11.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8849.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:01", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8849.JPG", - "handle": "IMG_8849.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.58.57.jpg", - "width": 1024, - "height": 275, - "orientation": 0, - "taken_at": "2018-04-09 14:58:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.58.57.jpg", - "handle": "2018-04-09 14.58.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC01359.jpg", - "width": 1200, - "height": 864, - "orientation": 0, - "taken_at": "2018-02-17 16:20:30", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/DSC01359.jpg", - "handle": "DSC01359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.14.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:14:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-08 20.14.12.jpg", - "handle": "2018-04-08 20.14.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9606.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 14:51:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_9606.jpg", - "handle": "IMG_9606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.44.47.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:44:47", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 14.44.47.jpg", - "handle": "2018-04-09 14.44.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.57.54.jpg", - "width": 1600, - "height": 921, - "orientation": 0, - "taken_at": "2016-04-08 10:57:54", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 10.57.54.jpg", - "handle": "2016-04-08 10.57.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_175252.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:10:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180212_175252.jpg", - "handle": "20180212_175252.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 17.17.08.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:08", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 17.17.08.jpg", - "handle": "2018-02-12 17.17.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_141929.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:19:29", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180212_141929.jpg", - "handle": "20180212_141929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.37.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:37:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.37.09.jpg", - "handle": "2018-04-09 15.37.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.37.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 12.05.37.jpg", - "handle": "2016-04-08 12.05.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.47.49.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-04-09 15.47.49.jpg", - "handle": "2018-04-09 15.47.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8337.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-03-18 01:07:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_8337.jpg", - "handle": "IMG_8337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/600/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.56.23.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 16:56:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2018-02-12 16.56.23.jpg", - "handle": "2018-02-12 16.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.34.37.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 11:34:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/600/2016-04-08 11.34.37.jpg", - "handle": "2016-04-08 11.34.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180217_091648.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:35:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/600/20180217_091648.jpg", - "handle": "20180217_091648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/600/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - } - ] + "600": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.26.22.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:26:22", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.26.22.jpg", + "handle": "2018-04-09 14.26.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9030.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-18 12:02:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9030.jpg", + "handle": "IMG_9030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9024.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 10:38:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9024.jpg", + "handle": "IMG_9024.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 20.13.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 20:13:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 20.13.10.jpg", + "handle": "2018-04-09 20.13.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.14.42-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:14:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.14.42-2.jpg", + "handle": "2016-04-08 12.14.42-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.11.50.jpg", + "handle": "2016-12-21 16.11.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.11.28.jpg", + "handle": "2018-04-09 15.11.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8925.jpg", + "width": 350, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 10:34:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8925.jpg", + "handle": "IMG_8925.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8919.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 23:53:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8919.jpg", + "handle": "IMG_8919.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.46.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:46", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.34.46.jpg", + "handle": "2018-04-09 13.34.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 20.02.41.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 20:02:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 20.02.41.jpg", + "handle": "2018-04-09 20.02.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8529.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 12:09:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8529.jpg", + "handle": "IMG_8529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.07.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:07", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.38.07.jpg", + "handle": "2016-04-08 11.38.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.39.jpg", + "width": 1600, + "height": 1580, + "orientation": 0, + "taken_at": "2016-12-21 16:10:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.10.39.jpg", + "handle": "2016-12-21 16.10.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.37.02.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:37:02", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 14.37.02.jpg", + "handle": "2016-12-21 14.37.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9019.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 08:09:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9019.jpg", + "handle": "IMG_9019.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.50.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 18.26.50.jpg", + "handle": "2018-04-08 18.26.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.39.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.05.39.jpg", + "handle": "2016-04-08 12.05.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8477.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 15:10:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8477.jpg", + "handle": "IMG_8477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8311.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-13 18:43:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8311.jpg", + "handle": "IMG_8311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.13.42.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:13:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.13.42.jpg", + "handle": "2016-12-21 16.13.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9423.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-05-05 20:26:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9423.jpg", + "handle": "IMG_9423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 07.53.54.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 07:53:54", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-10 07.53.54.jpg", + "handle": "2018-04-10 07.53.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.10.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.15.10.jpg", + "handle": "2018-04-09 14.15.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.50.58.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:50:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.50.58.jpg", + "handle": "2018-04-09 13.50.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.39.57.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:57", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_10.39.57.jpg", + "handle": "2016-08-24_10.39.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.59.30.jpg", + "width": 1024, + "height": 284, + "orientation": 0, + "taken_at": "2018-04-09 14:59:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.59.30.jpg", + "handle": "2018-04-09 14.59.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.37.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 16.48.37.jpg", + "handle": "2018-04-09 16.48.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 19.18.52.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 19.18.52.jpg", + "handle": "2018-04-09 19.18.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8700.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 01:37:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8700.jpg", + "handle": "IMG_8700.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.20.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:20:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.20.55.jpg", + "handle": "2018-04-09 14.20.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8853.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:36", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8853.JPG", + "handle": "IMG_8853.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8847.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-12 18:38:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8847.jpg", + "handle": "IMG_8847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.23.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:23:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-10 08.23.55.jpg", + "handle": "2018-04-10 08.23.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9032.jpg", + "width": 1000, + "height": 378, + "orientation": 0, + "taken_at": "2018-04-18 14:49:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9032.jpg", + "handle": "IMG_9032.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8466.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-04-08 14:00:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8466.jpg", + "handle": "IMG_8466.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8300.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-03-13 13:32:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8300.jpg", + "handle": "IMG_8300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8314.jpg", + "width": 1000, + "height": 534, + "orientation": 0, + "taken_at": "2018-03-13 18:46:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8314.jpg", + "handle": "IMG_8314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8328.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-16 07:36:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8328.jpg", + "handle": "IMG_8328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8710.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:50:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8710.jpg", + "handle": "IMG_8710.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.20.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:20:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.20.09.jpg", + "handle": "2018-04-09 13.20.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9426.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 20:27:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9426.jpg", + "handle": "IMG_9426.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.33.49.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:33:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.33.49.jpg", + "handle": "2018-04-09 13.33.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9195.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-27 14:38:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9195.jpg", + "handle": "IMG_9195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8506.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-09 03:10:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8506.jpg", + "handle": "IMG_8506.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.45.00.jpg", + "width": 1600, + "height": 1219, + "orientation": 0, + "taken_at": "2016-04-08 11:45:00", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.45.00.jpg", + "handle": "2016-04-08 11.45.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.37.48.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:37:48", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.37.48.jpg", + "handle": "2018-04-09 14.37.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.39.53.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:53", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_10.39.53.jpg", + "handle": "2016-08-24_10.39.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.26.29.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:29", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.26.29.jpg", + "handle": "2016-04-08 11.26.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.56.22.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 10:56:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 10.56.22.jpg", + "handle": "2016-04-08 10.56.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.38.jpg", + "width": 1600, + "height": 553, + "orientation": 0, + "taken_at": "2016-12-21 13:21:38", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 13.21.38.jpg", + "handle": "2016-12-21 13.21.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8842.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:22:25", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8842.JPG", + "handle": "IMG_8842.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.51.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:51:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.51.20.jpg", + "handle": "2018-04-09 13.51.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9023.jpg", + "width": 1000, + "height": 528, + "orientation": 0, + "taken_at": "2018-04-18 10:23:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9023.jpg", + "handle": "IMG_9023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.29.33-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:29:33", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.29.33-2.jpg", + "handle": "2016-04-08 12.29.33-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_12.37.03.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_12.37.03.jpg", + "handle": "2016-08-24_12.37.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.23.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.23.13.jpg", + "handle": "2016-04-08 12.23.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.55.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.11.55.jpg", + "handle": "2016-12-21 16.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.58.31.jpg", + "width": 1600, + "height": 874, + "orientation": 0, + "taken_at": "2016-04-08 10:58:31", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 10.58.31.jpg", + "handle": "2016-04-08 10.58.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.48.40.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-12-21 16:48:40", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.48.40.jpg", + "handle": "2016-12-21 16.48.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8707.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:32:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8707.jpg", + "handle": "IMG_8707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9815.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 18:06:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9815.jpg", + "handle": "IMG_9815.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.09.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:09:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.09.59.jpg", + "handle": "2018-04-09 15.09.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:26:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9424.jpg", + "handle": "IMG_9424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.27.01.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:27:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 18.27.01.jpg", + "handle": "2018-04-08 18.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9395.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:39:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9395.JPG", + "handle": "IMG_9395.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9020.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 08:54:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9020.jpg", + "handle": "IMG_9020.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.41.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 18:26:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 18.26.41.jpg", + "handle": "2018-04-08 18.26.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 15:18:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9034.jpg", + "handle": "IMG_9034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9008.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-17 14:42:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9008.jpg", + "handle": "IMG_9008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.06.55.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:06:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.06.55.jpg", + "handle": "2018-04-08 20.06.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-12 17:00:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8832.jpg", + "handle": "IMG_8832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.37.08.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:08", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.37.08.jpg", + "handle": "2016-04-08 11.37.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.56.46.jpg", + "width": 1600, + "height": 1275, + "orientation": 0, + "taken_at": "2016-04-08 10:56:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 10.56.46.jpg", + "handle": "2016-04-08 10.56.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.11.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:11:41", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_11.11.41.jpg", + "handle": "2016-08-24_11.11.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.03.14.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:03:14", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.03.14.jpg", + "handle": "2018-04-09 14.03.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9325.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 12:38:25", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9325.jpg", + "handle": "IMG_9325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.40.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.40.59.jpg", + "handle": "2018-04-09 14.40.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.29.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.07.29.jpg", + "handle": "2018-04-08 20.07.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.42.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:42", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 16.48.42.jpg", + "handle": "2018-04-09 16.48.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9654.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 15:19:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9654.jpg", + "handle": "IMG_9654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8238.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:02:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8238.jpg", + "handle": "IMG_8238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.07.34.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:07:34", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-10 08.07.34.jpg", + "handle": "2018-04-10 08.07.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.53.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:53:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.53.18.jpg", + "handle": "2018-04-09 14.53.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.02.25.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:02:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 14.02.25.jpg", + "handle": "2016-12-21 14.02.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8416.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 17:40:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8416.jpg", + "handle": "IMG_8416.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9087.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:25:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9087.jpg", + "handle": "IMG_9087.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.26.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:27:26", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.27.26.jpg", + "handle": "2016-04-08 11.27.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.08.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:08:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.08.53.jpg", + "handle": "2018-04-08 20.08.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 08:13:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8428.jpg", + "handle": "IMG_8428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.49.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.49.35.jpg", + "handle": "2018-04-09 15.49.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.24.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:11:24", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.11.24.jpg", + "handle": "2016-12-21 16.11.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.59.06.jpg", + "width": 1600, + "height": 407, + "orientation": 0, + "taken_at": "2016-08-24 11:59:06", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_11.59.06.jpg", + "handle": "2016-08-24_11.59.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8164.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-18 13:26:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8164.jpg", + "handle": "IMG_8164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8951.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-14 15:22:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8951.jpg", + "handle": "IMG_8951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_09.56.23.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:23", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_09.56.23.jpg", + "handle": "2016-08-24_09.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9656.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-07 15:29:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9656.jpg", + "handle": "IMG_9656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8561.jpg", + "width": 1000, + "height": 477, + "orientation": 0, + "taken_at": "2018-04-09 19:34:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8561.jpg", + "handle": "IMG_8561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.59.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:59", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.10.59.jpg", + "handle": "2016-12-21 16.10.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:39:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8987.jpg", + "handle": "IMG_8987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8944.jpg", + "width": 955, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 13:15:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8944.jpg", + "handle": "IMG_8944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8415.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 17:39:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8415.jpg", + "handle": "IMG_8415.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.47.19.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.47.19.jpg", + "handle": "2018-04-09 15.47.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9041.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-19 11:05:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9041.jpg", + "handle": "IMG_9041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 18.26.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 18.26.20.jpg", + "handle": "2018-04-08 18.26.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.34.23.jpg", + "handle": "2018-04-09 13.34.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:54:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9849.jpg", + "handle": "IMG_9849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8821.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:25:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8821.jpg", + "handle": "IMG_8821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9083.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:18:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9083.jpg", + "handle": "IMG_9083.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.00.40.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:00:40", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.00.40.jpg", + "handle": "2018-04-09 14.00.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.02.21.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:02:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 14.02.21.jpg", + "handle": "2016-12-21 14.02.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.13.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:13:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.13.59.jpg", + "handle": "2018-04-08 20.13.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8758.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:00:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8758.jpg", + "handle": "IMG_8758.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9320.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:09:10", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9320.jpg", + "handle": "IMG_9320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9122.jpg", + "width": 1000, + "height": 432, + "orientation": 0, + "taken_at": "2018-04-22 12:56:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9122.jpg", + "handle": "IMG_9122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.59.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 10:59:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 10.59.13.jpg", + "handle": "2016-04-08 10.59.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8567.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:26:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8567.jpg", + "handle": "IMG_8567.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8759.jpg", + "width": 709, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:01:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8759.jpg", + "handle": "IMG_8759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.33.58.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:33:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.33.58.jpg", + "handle": "2018-04-09 14.33.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.10-1.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:10", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.38.10-1.jpg", + "handle": "2016-04-08 11.38.10-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8163.jpg", + "width": 1000, + "height": 600, + "orientation": 0, + "taken_at": "2018-02-18 13:25:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8163.jpg", + "handle": "IMG_8163.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8836.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:05:55", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8836.JPG", + "handle": "IMG_8836.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_12.37.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:49", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_12.37.49.jpg", + "handle": "2016-08-24_12.37.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8436.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 12:13:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8436.jpg", + "handle": "IMG_8436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.41.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:41:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.41.04.jpg", + "handle": "2018-04-09 14.41.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180213_102748.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 11:27:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180213_102748.jpg", + "handle": "20180213_102748.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.20.06.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 11.20.06.jpg", + "handle": "2018-02-13 11.20.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8807.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:10:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8807.jpg", + "handle": "IMG_8807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_065950.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 06:59:50", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180214_065950.jpg", + "handle": "20180214_065950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.57.35.jpg", + "width": 1600, + "height": 605, + "orientation": 0, + "taken_at": "2016-08-24 11:57:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_11.57.35.jpg", + "handle": "2016-08-24_11.57.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8967.jpg", + "width": 1000, + "height": 339, + "orientation": 0, + "taken_at": "2018-04-15 17:57:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8967.jpg", + "handle": "IMG_8967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.27.08.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:27:08", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.27.08.jpg", + "handle": "2018-04-09 14.27.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180218_151913.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 10:16:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180218_151913.jpg", + "handle": "20180218_151913.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.01.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:01:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.01.18.jpg", + "handle": "2018-04-09 14.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:07:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.07.20.jpg", + "handle": "2018-04-08 20.07.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_151354.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 15:13:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180212_151354.jpg", + "handle": "20180212_151354.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05824.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:08:38", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05824.jpg", + "handle": "DSC05824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9847.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9847.jpg", + "handle": "IMG_9847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.46.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.10.46.jpg", + "handle": "2016-12-21 16.10.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9112.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:38:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9112.jpg", + "handle": "IMG_9112.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.44.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:44:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.44.35.jpg", + "handle": "2018-04-09 14.44.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.44.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:44", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.15.44.jpg", + "handle": "2018-04-09 14.15.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.46.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:46:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.46.53.jpg", + "handle": "2018-04-09 15.46.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05825.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:13:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05825.jpg", + "handle": "DSC05825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_09.56.14.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_09.56.14.jpg", + "handle": "2016-08-24_09.56.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8972.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-15 19:59:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8972.jpg", + "handle": "IMG_8972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.37.14.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.37.14.jpg", + "handle": "2016-04-08 11.37.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.17.31.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.17.31.jpg", + "handle": "2018-02-13 10.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9071.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-19 17:01:04", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9071.jpg", + "handle": "IMG_9071.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05774.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 10:17:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05774.jpg", + "handle": "DSC05774.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.46.56.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:46:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 14.46.56.jpg", + "handle": "2016-12-21 14.46.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 14.46.42.jpg", + "width": 944, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:46:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 14.46.42.jpg", + "handle": "2016-12-21 14.46.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.28.02.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.28.02.jpg", + "handle": "2018-02-13 10.28.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.39.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.11.39.jpg", + "handle": "2016-12-21 16.11.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.11.55.jpg", + "handle": "2018-04-09 15.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8970.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-15 19:58:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8970.jpg", + "handle": "IMG_8970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 14.13.28.jpg", + "width": 675, + "height": 624, + "orientation": 0, + "taken_at": "2018-02-12 14:33:28", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 14.13.28.jpg", + "handle": "2018-02-12 14.13.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.07.37.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.07.37.jpg", + "handle": "2018-04-08 20.07.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8743.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8743.jpg", + "handle": "IMG_8743.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9850.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:55:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9850.jpg", + "handle": "IMG_9850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8596.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-10 12:59:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8596.jpg", + "handle": "IMG_8596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9844.jpg", + "handle": "IMG_9844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.47.02.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-13 10:47:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.47.02.jpg", + "handle": "2018-02-13 10.47.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-15 18.15.01.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-15 18:15:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-15 18.15.01.jpg", + "handle": "2018-02-15 18.15.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9138.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 13:51:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9138.jpg", + "handle": "IMG_9138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9104.jpg", + "width": 585, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-21 18:21:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9104.jpg", + "handle": "IMG_9104.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180218_152029.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 11:10:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180218_152029.jpg", + "handle": "20180218_152029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180213_110206.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:02:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180213_110206.jpg", + "handle": "20180213_110206.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.10.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.10.50.jpg", + "handle": "2016-12-21 16.10.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9851.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:55:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9851.jpg", + "handle": "IMG_9851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.15.53.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.15.53.jpg", + "handle": "2018-04-09 14.15.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_071933.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-12 16:54:10", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180214_071933.jpg", + "handle": "20180214_071933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8839.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:29:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8839.JPG", + "handle": "IMG_8839.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8434.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 11:21:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8434.jpg", + "handle": "IMG_8434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 08.23.17.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:23:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-10 08.23.17.jpg", + "handle": "2018-04-10 08.23.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8408.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 03:11:05", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8408.jpg", + "handle": "IMG_8408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 19:16:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8424.jpg", + "handle": "IMG_8424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8430.jpg", + "width": 1000, + "height": 842, + "orientation": 0, + "taken_at": "2018-04-08 08:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8430.jpg", + "handle": "IMG_8430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9712.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-21 19:17:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9712.jpg", + "handle": "IMG_9712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9316.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:08:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9316.jpg", + "handle": "IMG_9316.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00595.jpg", + "width": 1200, + "height": 607, + "orientation": 0, + "taken_at": "2018-02-18 08:11:16", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00595.jpg", + "handle": "DSC00595.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.38.43.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:43", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.38.43.jpg", + "handle": "2016-04-08 11.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.40.43.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.40.43.jpg", + "handle": "2018-04-09 14.40.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.20.01.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 11.20.01.jpg", + "handle": "2018-02-13 11.20.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.11.15.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:15", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.11.15.jpg", + "handle": "2016-12-21 16.11.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8431.jpg", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-08 09:07:50", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8431.jpg", + "handle": "IMG_8431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.49.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.49.04.jpg", + "handle": "2018-04-09 15.49.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06084.jpg", + "width": 1200, + "height": 810, + "orientation": 0, + "taken_at": "2018-02-17 16:24:20", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06084.jpg", + "handle": "DSC06084.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.03.jpg", + "width": 766, + "height": 1337, + "orientation": 0, + "taken_at": "2016-04-08 11:27:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.27.03.jpg", + "handle": "2016-04-08 11.27.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00378.jpg", + "width": 1177, + "height": 800, + "orientation": 0, + "taken_at": "2018-02-17 16:44:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00378.jpg", + "handle": "DSC00378.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 16.12.52.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:12:52", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 16.12.52.jpg", + "handle": "2016-12-21 16.12.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06045.jpg", + "width": 1200, + "height": 847, + "orientation": 0, + "taken_at": "2018-02-17 16:23:46", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06045.jpg", + "handle": "DSC06045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.27.01.jpg", + "width": 1600, + "height": 584, + "orientation": 0, + "taken_at": "2016-04-08 11:27:01", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.27.01.jpg", + "handle": "2016-04-08 11.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06086.jpg", + "width": 1200, + "height": 821, + "orientation": 0, + "taken_at": "2018-02-17 16:24:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06086.jpg", + "handle": "DSC06086.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180215_070918.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:34:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180215_070918.jpg", + "handle": "20180215_070918.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.09.21.jpg", + "width": 1199, + "height": 573, + "orientation": 0, + "taken_at": "2018-02-13 10:09:21", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.09.21.jpg", + "handle": "2018-02-13 10.09.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.40.25.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:40:25", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.40.25.jpg", + "handle": "2018-04-09 13.40.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8745.jpg", + "handle": "IMG_8745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05835.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:46:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05835.jpg", + "handle": "DSC05835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9315.jpg", + "width": 682, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 09:49:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9315.jpg", + "handle": "IMG_9315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.34.15.jpg", + "handle": "2018-04-09 13.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06125.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:27:19", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06125.jpg", + "handle": "DSC06125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9856.jpg", + "width": 1000, + "height": 668, + "orientation": 0, + "taken_at": "2018-05-13 08:00:41", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_9856.jpg", + "handle": "IMG_9856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00597.jpg", + "width": 1198, + "height": 599, + "orientation": 0, + "taken_at": "2018-02-18 08:18:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00597.jpg", + "handle": "DSC00597.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8547.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 18:05:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8547.jpg", + "handle": "IMG_8547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 19:26:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8552.jpg", + "handle": "IMG_8552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00596.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 08:11:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00596.jpg", + "handle": "DSC00596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05808.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:01:33", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05808.jpg", + "handle": "DSC05808.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8988.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:40:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8988.jpg", + "handle": "IMG_8988.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8744.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8744.jpg", + "handle": "IMG_8744.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00794.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:51:09", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00794.jpg", + "handle": "DSC00794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 14:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8963.jpg", + "handle": "IMG_8963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9512.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 07:11:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9512.jpg", + "handle": "IMG_9512.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.04.48.jpg", + "width": 1200, + "height": 480, + "orientation": 0, + "taken_at": "2018-02-12 16:04:48", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 16.04.48.jpg", + "handle": "2018-02-12 16.04.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180214_070127.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:34:17", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180214_070127.jpg", + "handle": "20180214_070127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8455.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 13:47:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8455.jpg", + "handle": "IMG_8455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.29.56.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:29:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.29.56.jpg", + "handle": "2016-04-08 12.29.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180216_194002.jpg", + "width": 1199, + "height": 693, + "orientation": 0, + "taken_at": "2018-02-16 19:40:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180216_194002.jpg", + "handle": "20180216_194002.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05660.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:16:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05660.jpg", + "handle": "DSC05660.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9824.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9824.jpg", + "handle": "IMG_9824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 19.18.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 19.18.59.jpg", + "handle": "2018-04-09 19.18.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9171.jpg", + "width": 1000, + "height": 645, + "orientation": 0, + "taken_at": "2018-04-27 13:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9171.jpg", + "handle": "IMG_9171.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_11.58.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:58:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_11.58.13.jpg", + "handle": "2016-08-24_11.58.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.01.22.jpg", + "width": 546, + "height": 985, + "orientation": 0, + "taken_at": "2018-02-12 16:01:22", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 16.01.22.jpg", + "handle": "2018-02-12 16.01.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9825.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9825.jpg", + "handle": "IMG_9825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:27:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9428.jpg", + "handle": "IMG_9428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05729.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:29:47", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05729.jpg", + "handle": "DSC05729.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8865.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 19:57:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8865.jpg", + "handle": "IMG_8865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.11.44.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:11:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 11.11.44.jpg", + "handle": "2018-02-13 11.11.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.23.22.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.23.22.jpg", + "handle": "2016-04-08 12.23.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8318.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 09:39:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8318.jpg", + "handle": "IMG_8318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05703.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:46:07", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05703.jpg", + "handle": "DSC05703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.35.jpg", + "width": 1600, + "height": 500, + "orientation": 0, + "taken_at": "2016-12-21 13:21:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 13.21.35.jpg", + "handle": "2016-12-21 13.21.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9204.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-27 14:50:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9204.jpg", + "handle": "IMG_9204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8898.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 20:18:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8898.jpg", + "handle": "IMG_8898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 17.17.27.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:27", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 17.17.27.jpg", + "handle": "2018-02-12 17.17.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.25.55.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:25:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.25.55.jpg", + "handle": "2016-04-08 12.25.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05688.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:32:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05688.jpg", + "handle": "DSC05688.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06154.jpg", + "width": 1200, + "height": 835, + "orientation": 0, + "taken_at": "2018-02-17 16:44:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06154.jpg", + "handle": "DSC06154.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9199.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-27 14:46:53", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9199.jpg", + "handle": "IMG_9199.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.02.29.jpg", + "width": 1024, + "height": 331, + "orientation": 0, + "taken_at": "2018-04-09 14:02:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.02.29.jpg", + "handle": "2018-04-09 14.02.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-10 07.05.30.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 07:05:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-10 07.05.30.jpg", + "handle": "2018-04-10 07.05.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06182.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 07:54:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06182.jpg", + "handle": "DSC06182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-08-24_10.40.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 10:40:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-08-24_10.40.13.jpg", + "handle": "2016-08-24_10.40.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9359.jpg", + "width": 1000, + "height": 589, + "orientation": 0, + "taken_at": "2018-05-05 18:37:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9359.jpg", + "handle": "IMG_9359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.12.05.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:12:05", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.12.05.jpg", + "handle": "2018-04-09 14.12.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 23.27.14.jpg", + "width": 1489, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 15:27:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 23.27.14.jpg", + "handle": "2016-04-08 23.27.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 13.20.04.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:20:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 13.20.04.jpg", + "handle": "2018-04-09 13.20.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05892.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:10:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05892.jpg", + "handle": "DSC05892.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.34.15.jpg", + "handle": "2018-04-09 14.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8133.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-02-04 10:38:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8133.JPG", + "handle": "IMG_8133.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8325.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 13:55:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8325.jpg", + "handle": "IMG_8325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9013.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 17:48:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9013.JPG", + "handle": "IMG_9013.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.17.45.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:45", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.17.45.jpg", + "handle": "2018-02-13 10.17.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.25.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.05.25.jpg", + "handle": "2016-04-08 12.05.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8490.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-08 17:36:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8490.jpg", + "handle": "IMG_8490.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9995.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:34:35", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9995.JPG", + "handle": "IMG_9995.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.21.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-04-08 12:05:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.05.21.jpg", + "handle": "2016-04-08 12.05.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9003.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-17 14:01:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9003.jpg", + "handle": "IMG_9003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.00.59.jpg", + "width": 808, + "height": 1200, + "orientation": 90, + "taken_at": "2018-02-12 16:00:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 16.00.59.jpg", + "handle": "2018-02-12 16.00.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 10.28.58.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 10.28.58.jpg", + "handle": "2018-02-13 10.28.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC00681.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:57:55", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC00681.jpg", + "handle": "DSC00681.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9201.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-27 14:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9201.jpg", + "handle": "IMG_9201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.11.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.11.33.jpg", + "handle": "2018-04-09 15.11.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06151.jpg", + "width": 1200, + "height": 807, + "orientation": 0, + "taken_at": "2018-02-17 16:42:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06151.jpg", + "handle": "DSC06151.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06145.jpg", + "width": 1200, + "height": 765, + "orientation": 0, + "taken_at": "2018-02-17 16:42:26", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06145.jpg", + "handle": "DSC06145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8527.jpg", + "width": 1000, + "height": 604, + "orientation": 0, + "taken_at": "2018-04-09 12:09:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8527.jpg", + "handle": "IMG_8527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 16.48.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 16.48.12.jpg", + "handle": "2018-04-09 16.48.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.01.18.jpg", + "width": 1199, + "height": 496, + "orientation": 0, + "taken_at": "2018-02-12 16:01:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 16.01.18.jpg", + "handle": "2018-02-12 16.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9823.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9823.jpg", + "handle": "IMG_9823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-13 11.17.37.jpg", + "width": 551, + "height": 667, + "orientation": 0, + "taken_at": "2018-02-13 11:17:37", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-13 11.17.37.jpg", + "handle": "2018-02-13 11.17.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05854.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:02:24", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05854.jpg", + "handle": "DSC05854.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC05840.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:53:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC05840.jpg", + "handle": "DSC05840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9348.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:30:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9348.jpg", + "handle": "IMG_9348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.34.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:34:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.34.10.jpg", + "handle": "2018-04-09 14.34.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.26.34.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:34", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.26.34.jpg", + "handle": "2016-04-08 11.26.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_145219.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:20:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180212_145219.jpg", + "handle": "20180212_145219.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-12-21 13.21.19.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 13:21:19", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-12-21 13.21.19.jpg", + "handle": "2016-12-21 13.21.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8687.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 21:40:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8687.jpg", + "handle": "IMG_8687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC06018.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:20:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC06018.jpg", + "handle": "DSC06018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9941.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:44:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9941.jpg", + "handle": "IMG_9941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.40.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:40:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.40.55.jpg", + "handle": "2018-04-09 15.40.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-14 18.11.13.jpg", + "width": 1200, + "height": 266, + "orientation": 0, + "taken_at": "2018-02-14 18:11:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-14 18.11.13.jpg", + "handle": "2018-02-14 18.11.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8849.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:01", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8849.JPG", + "handle": "IMG_8849.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.58.57.jpg", + "width": 1024, + "height": 275, + "orientation": 0, + "taken_at": "2018-04-09 14:58:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.58.57.jpg", + "handle": "2018-04-09 14.58.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/DSC01359.jpg", + "width": 1200, + "height": 864, + "orientation": 0, + "taken_at": "2018-02-17 16:20:30", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/DSC01359.jpg", + "handle": "DSC01359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-08 20.14.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:14:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-08 20.14.12.jpg", + "handle": "2018-04-08 20.14.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_9606.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 14:51:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_9606.jpg", + "handle": "IMG_9606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 14.44.47.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:44:47", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 14.44.47.jpg", + "handle": "2018-04-09 14.44.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 10.57.54.jpg", + "width": 1600, + "height": 921, + "orientation": 0, + "taken_at": "2016-04-08 10:57:54", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 10.57.54.jpg", + "handle": "2016-04-08 10.57.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_175252.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:10:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180212_175252.jpg", + "handle": "20180212_175252.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 17.17.08.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:08", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 17.17.08.jpg", + "handle": "2018-02-12 17.17.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180212_141929.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:19:29", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180212_141929.jpg", + "handle": "20180212_141929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.37.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:37:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.37.09.jpg", + "handle": "2018-04-09 15.37.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 12.05.37.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 12.05.37.jpg", + "handle": "2016-04-08 12.05.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-04-09 15.47.49.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-04-09 15.47.49.jpg", + "handle": "2018-04-09 15.47.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_8337.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-03-18 01:07:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_8337.jpg", + "handle": "IMG_8337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/600/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2018-02-12 16.56.23.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 16:56:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2018-02-12 16.56.23.jpg", + "handle": "2018-02-12 16.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/2016-04-08 11.34.37.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 11:34:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/600/2016-04-08 11.34.37.jpg", + "handle": "2016-04-08 11.34.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/20180217_091648.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:35:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/600/20180217_091648.jpg", + "handle": "20180217_091648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/600/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/600/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + } + ] } diff --git a/core/data/image-sets/700.json b/core/data/image-sets/700.json index 7a8c43f..b5d3112 100644 --- a/core/data/image-sets/700.json +++ b/core/data/image-sets/700.json @@ -1,7704 +1,7704 @@ { - "700": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.26.22.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:26:22", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.26.22.jpg", - "handle": "2018-04-09 14.26.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1493.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 18:16:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1493.jpg", - "handle": "IMG_1493.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.10.05.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:10:05", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.10.05.jpg", - "handle": "2018-04-10 09.10.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.48.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:22:48", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.22.48.jpg", - "handle": "2018-04-10 09.22.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9030.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-18 12:02:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9030.jpg", - "handle": "IMG_9030.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9024.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 10:38:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9024.jpg", - "handle": "IMG_9024.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 20.13.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 20:13:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 20.13.10.jpg", - "handle": "2018-04-09 20.13.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1322.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-04 12:36:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1322.jpg", - "handle": "IMG_1322.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.14.42-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:14:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.14.42-2.jpg", - "handle": "2016-04-08 12.14.42-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.41.08.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:41:08", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.41.08.jpg", - "handle": "2018-04-10 12.41.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.11.50.jpg", - "handle": "2016-12-21 16.11.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2367.jpg", - "width": 1000, - "height": 930, - "orientation": 0, - "taken_at": "2018-11-07 20:30:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2367.jpg", - "handle": "IMG_2367.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2373.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:47:11", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2373.jpg", - "handle": "IMG_2373.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0564.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:12:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0564.jpg", - "handle": "IMG_0564.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.11.28.jpg", - "handle": "2018-04-09 15.11.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0558.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-30 23:24:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0558.jpg", - "handle": "IMG_0558.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0955.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0955.PNG", - "handle": "IMG_0955.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8925.jpg", - "width": 350, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 10:34:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8925.jpg", - "handle": "IMG_8925.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.54.35.jpg", - "handle": "2018-04-10 11.54.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8919.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 23:53:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8919.jpg", - "handle": "IMG_8919.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.53.14.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:53:14", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.53.14.jpg", - "handle": "2018-04-10 11.53.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.46.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:46", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.34.46.jpg", - "handle": "2018-04-09 13.34.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:15:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1040.jpg", - "handle": "IMG_1040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 20.02.41.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 20:02:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 20.02.41.jpg", - "handle": "2018-04-09 20.02.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0149.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:11:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0149.jpg", - "handle": "IMG_0149.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8529.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 12:09:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8529.jpg", - "handle": "IMG_8529.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0834.jpg", - "width": 1000, - "height": 750, - "orientation": 90, - "taken_at": "2018-07-18 05:53:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0834.jpg", - "handle": "IMG_0834.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.07.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:07", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.38.07.jpg", - "handle": "2016-04-08 11.38.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.39.jpg", - "width": 1600, - "height": 1580, - "orientation": 0, - "taken_at": "2016-12-21 16:10:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.10.39.jpg", - "handle": "2016-12-21 16.10.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.37.02.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:37:02", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 14.37.02.jpg", - "handle": "2016-12-21 14.37.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1041.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-04 15:15:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1041.jpg", - "handle": "IMG_1041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1900.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:50:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1900.jpg", - "handle": "IMG_1900.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1690.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:29:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1690.jpg", - "handle": "IMG_1690.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9019.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 08:09:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9019.jpg", - "handle": "IMG_9019.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.50.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 18.26.50.jpg", - "handle": "2018-04-08 18.26.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4298.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 12:18:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_4298.jpg", - "handle": "IMG_4298.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.18.41.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:18:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.18.41.jpg", - "handle": "2018-04-10 13.18.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.39.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.05.39.jpg", - "handle": "2016-04-08 12.05.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8477.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 15:10:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8477.jpg", - "handle": "IMG_8477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8311.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-13 18:43:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8311.jpg", - "handle": "IMG_8311.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.57.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.00.57.jpg", - "handle": "2018-04-10 12.00.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2370.jpg", - "width": 667, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 20:42:28", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2370.jpg", - "handle": "IMG_2370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", - "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.13.42.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:13:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.13.42.jpg", - "handle": "2016-12-21 16.13.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9423.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-05-05 20:26:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9423.jpg", - "handle": "IMG_9423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 07.53.54.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 07:53:54", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 07.53.54.jpg", - "handle": "2018-04-10 07.53.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.10.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.15.10.jpg", - "handle": "2018-04-09 14.15.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.50.58.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:50:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.50.58.jpg", - "handle": "2018-04-09 13.50.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1282.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 15:20:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1282.jpg", - "handle": "IMG_1282.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.39.57.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:57", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_10.39.57.jpg", - "handle": "2016-08-24_10.39.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.59.30.jpg", - "width": 1024, - "height": 284, - "orientation": 0, - "taken_at": "2018-04-09 14:59:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.59.30.jpg", - "handle": "2018-04-09 14.59.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0605.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-07-01 01:12:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0605.jpg", - "handle": "IMG_0605.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_6249.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-01-20 20:16:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_6249.jpg", - "handle": "IMG_6249.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.37.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 16.48.37.jpg", - "handle": "2018-04-09 16.48.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0837.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 07:23:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0837.jpg", - "handle": "IMG_0837.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 19.18.52.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 19.18.52.jpg", - "handle": "2018-04-09 19.18.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1042.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-04 15:40:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1042.jpg", - "handle": "IMG_1042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8700.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 01:37:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8700.jpg", - "handle": "IMG_8700.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1b88f2b75e154aa986556dd97d79f892.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 19:49:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/1b88f2b75e154aa986556dd97d79f892.jpg", - "handle": "1b88f2b75e154aa986556dd97d79f892.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.54.23.jpg", - "handle": "2018-04-10 11.54.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.20.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:20:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.20.55.jpg", - "handle": "2018-04-09 14.20.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1693.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:03:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1693.jpg", - "handle": "IMG_1693.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8853.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:36", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8853.JPG", - "handle": "IMG_8853.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8847.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-12 18:38:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8847.jpg", - "handle": "IMG_8847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.23.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:23:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.23.55.jpg", - "handle": "2018-04-10 08.23.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9032.jpg", - "width": 1000, - "height": 378, - "orientation": 0, - "taken_at": "2018-04-18 14:49:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9032.jpg", - "handle": "IMG_9032.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8466.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-04-08 14:00:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8466.jpg", - "handle": "IMG_8466.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8300.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-03-13 13:32:19", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8300.jpg", - "handle": "IMG_8300.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8314.jpg", - "width": 1000, - "height": 534, - "orientation": 0, - "taken_at": "2018-03-13 18:46:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8314.jpg", - "handle": "IMG_8314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3527.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:59", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3527.jpg", - "handle": "IMG_3527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8328.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-16 07:36:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8328.jpg", - "handle": "IMG_8328.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1898.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 10:48:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1898.jpg", - "handle": "IMG_1898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0953.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0953.PNG", - "handle": "IMG_0953.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1126.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-12 16:08:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1126.jpg", - "handle": "IMG_1126.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0947.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0947.PNG", - "handle": "IMG_0947.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.19.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:19:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.19.10.jpg", - "handle": "2018-04-10 13.19.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8710.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:50:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8710.jpg", - "handle": "IMG_8710.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.20.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:20:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.20.09.jpg", - "handle": "2018-04-09 13.20.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0370.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-15 20:20:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0370.jpg", - "handle": "IMG_0370.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9426.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 20:27:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9426.jpg", - "handle": "IMG_9426.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.33.49.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:33:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.33.49.jpg", - "handle": "2018-04-09 13.33.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9195.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-27 14:38:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9195.jpg", - "handle": "IMG_9195.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3335.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:06:16", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3335.JPG", - "handle": "IMG_3335.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8506.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-09 03:10:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8506.jpg", - "handle": "IMG_8506.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2765.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-16 15:12:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2765.jpg", - "handle": "IMG_2765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.45.00.jpg", - "width": 1600, - "height": 1219, - "orientation": 0, - "taken_at": "2016-04-08 11:45:00", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.45.00.jpg", - "handle": "2016-04-08 11.45.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0172.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 15:47:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0172.jpg", - "handle": "IMG_0172.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3309.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:00:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3309.JPG", - "handle": "IMG_3309.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0166.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-05-26 15:07:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0166.jpg", - "handle": "IMG_0166.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", - "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.37.48.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:37:48", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.37.48.jpg", - "handle": "2018-04-09 14.37.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.39.53.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 10:39:53", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_10.39.53.jpg", - "handle": "2016-08-24_10.39.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "width": 1000, - "height": 749, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", - "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.26.29.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:29", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.26.29.jpg", - "handle": "2016-04-08 11.26.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", - "handle": "0a0ad96ecd6c4fea99458cbeff2205aa.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.56.22.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 10:56:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 10.56.22.jpg", - "handle": "2016-04-08 10.56.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2374.jpg", - "width": 1000, - "height": 605, - "orientation": 0, - "taken_at": "2018-11-07 21:00:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2374.jpg", - "handle": "IMG_2374.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0946.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0946.PNG", - "handle": "IMG_0946.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0952.PNG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0952.PNG", - "handle": "IMG_0952.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.38.jpg", - "width": 1600, - "height": 553, - "orientation": 0, - "taken_at": "2016-12-21 13:21:38", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 13.21.38.jpg", - "handle": "2016-12-21 13.21.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8842.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:22:25", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8842.JPG", - "handle": "IMG_8842.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3081.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 01:05:11", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3081.jpg", - "handle": "IMG_3081.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.51.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:51:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.51.20.jpg", - "handle": "2018-04-09 13.51.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0007.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 10:58:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0007.jpg", - "handle": "IMG_0007.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9023.jpg", - "width": 1000, - "height": 528, - "orientation": 0, - "taken_at": "2018-04-18 10:23:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9023.jpg", - "handle": "IMG_9023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3283.JPG", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 22:00:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3283.JPG", - "handle": "IMG_3283.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.29.33-2.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:29:33", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.29.33-2.jpg", - "handle": "2016-04-08 12.29.33-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3281.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-18 13:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3281.jpg", - "handle": "IMG_3281.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_12.37.03.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_12.37.03.jpg", - "handle": "2016-08-24_12.37.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.23.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.23.13.jpg", - "handle": "2016-04-08 12.23.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3524.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:50:31", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3524.jpg", - "handle": "IMG_3524.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1469.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-09-23 01:37:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1469.jpg", - "handle": "IMG_1469.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.55.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.11.55.jpg", - "handle": "2016-12-21 16.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.45.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:45", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.00.45.jpg", - "handle": "2018-04-10 12.00.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0944.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0944.PNG", - "handle": "IMG_0944.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0549.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:28:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0549.jpg", - "handle": "IMG_0549.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1131.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-08-12 16:24:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1131.jpg", - "handle": "IMG_1131.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", - "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.58.31.jpg", - "width": 1600, - "height": 874, - "orientation": 0, - "taken_at": "2016-04-08 10:58:31", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 10.58.31.jpg", - "handle": "2016-04-08 10.58.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0950.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0950.PNG", - "handle": "IMG_0950.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0561.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 23:35:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0561.jpg", - "handle": "IMG_0561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1904.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 10:52:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1904.jpg", - "handle": "IMG_1904.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.48.40.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-12-21 16:48:40", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.48.40.jpg", - "handle": "2016-12-21 16.48.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8707.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-11 11:32:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8707.jpg", - "handle": "IMG_8707.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2799.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:36:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2799.jpg", - "handle": "IMG_2799.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 10.03.57.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 10:03:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 10.03.57.jpg", - "handle": "2018-04-10 10.03.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", - "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 02:01:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2982.jpg", - "handle": "IMG_2982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3da28206c86a464abe2a05e7f7c78fdc.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:35:31", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3da28206c86a464abe2a05e7f7c78fdc.jpg", - "handle": "3da28206c86a464abe2a05e7f7c78fdc.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/27633029-8f0b-4916-b67b-037783008d24.JPG", - "width": 645, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/27633029-8f0b-4916-b67b-037783008d24.JPG", - "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/06a1d399-7556-4892-899a-d7f928fb6389.JPG", - "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0164.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-26 13:49:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0164.jpg", - "handle": "IMG_0164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9815.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 18:06:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9815.jpg", - "handle": "IMG_9815.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.09.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:09:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.09.59.jpg", - "handle": "2018-04-09 15.09.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:26:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9424.jpg", - "handle": "IMG_9424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0d24eb206c2340d493694967e24c127a.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 14:15:28", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0d24eb206c2340d493694967e24c127a.jpg", - "handle": "0d24eb206c2340d493694967e24c127a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.27.01.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:27:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 18.27.01.jpg", - "handle": "2018-04-08 18.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/78424b59-2708-416f-98d3-b5784226c712.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/78424b59-2708-416f-98d3-b5784226c712.JPG", - "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9395.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:39:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9395.JPG", - "handle": "IMG_9395.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 22:58:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", - "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1939.jpg", - "width": 1000, - "height": 563, - "orientation": 0, - "taken_at": "2018-10-20 11:30:19", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1939.jpg", - "handle": "IMG_1939.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1118.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-12 09:56:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1118.jpg", - "handle": "IMG_1118.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3fc7958294874242bda77b198d4c1d5e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:07:19", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3fc7958294874242bda77b198d4c1d5e.jpg", - "handle": "3fc7958294874242bda77b198d4c1d5e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0548.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:13:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0548.jpg", - "handle": "IMG_0548.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0945.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0945.PNG", - "handle": "IMG_0945.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.58.19.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:58:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.58.19.jpg", - "handle": "2018-04-10 11.58.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1695.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-10-14 23:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1695.jpg", - "handle": "IMG_1695.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9020.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-18 08:54:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9020.jpg", - "handle": "IMG_9020.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.41.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 18:26:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 18.26.41.jpg", - "handle": "2018-04-08 18.26.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-18 15:18:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9034.jpg", - "handle": "IMG_9034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9008.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-17 14:42:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9008.jpg", - "handle": "IMG_9008.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2853.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-23 15:31:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2853.jpg", - "handle": "IMG_2853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.06.55.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:06:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.06.55.jpg", - "handle": "2018-04-08 20.06.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2884.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 23:23:54", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2884.jpg", - "handle": "IMG_2884.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2648.jpg", - "width": 1000, - "height": 739, - "orientation": 0, - "taken_at": "2018-12-10 11:28:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2648.jpg", - "handle": "IMG_2648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 10:32:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-12 17:00:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8832.jpg", - "handle": "IMG_8832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.37.08.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:08", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.37.08.jpg", - "handle": "2016-04-08 11.37.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", - "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2304.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:18:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2304.jpg", - "handle": "IMG_2304.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3a875c0152d54551a7aeafdd661f734a.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:46:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3a875c0152d54551a7aeafdd661f734a.jpg", - "handle": "3a875c0152d54551a7aeafdd661f734a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.56.46.jpg", - "width": 1600, - "height": 1275, - "orientation": 0, - "taken_at": "2016-04-08 10:56:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 10.56.46.jpg", - "handle": "2016-04-08 10.56.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.11.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:11:41", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_11.11.41.jpg", - "handle": "2016-08-24_11.11.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.03.14.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:03:14", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.03.14.jpg", - "handle": "2018-04-09 14.03.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.56.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:54:56", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.54.56.jpg", - "handle": "2018-04-10 11.54.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3185.JPG", - "width": 1000, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_3185.JPG", - "handle": "IMG_3185.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9325.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 12:38:25", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9325.jpg", - "handle": "IMG_9325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.40.59.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.40.59.jpg", - "handle": "2018-04-09 14.40.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.29.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.07.29.jpg", - "handle": "2018-04-08 20.07.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.42.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:42", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 16.48.42.jpg", - "handle": "2018-04-09 16.48.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0658.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:30:07", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0658.JPG", - "handle": "IMG_0658.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9654.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-07 15:19:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9654.jpg", - "handle": "IMG_9654.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8238.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:02:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8238.jpg", - "handle": "IMG_8238.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.07.34.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:07:34", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.07.34.jpg", - "handle": "2018-04-10 08.07.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.00.41.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:00:41", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.00.41.jpg", - "handle": "2018-04-10 13.00.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2259.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:38:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2259.jpg", - "handle": "IMG_2259.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2503.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:43:35", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2503.jpg", - "handle": "IMG_2503.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2271.jpg", - "width": 1000, - "height": 572, - "orientation": 0, - "taken_at": "2018-11-04 18:29:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2271.jpg", - "handle": "IMG_2271.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.53.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:53:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.53.18.jpg", - "handle": "2018-04-09 14.53.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.02.25.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:02:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 14.02.25.jpg", - "handle": "2016-12-21 14.02.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1963.jpg", - "width": 1000, - "height": 597, - "orientation": 0, - "taken_at": "2018-10-20 18:16:07", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1142.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-13 15:51:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1142.jpg", - "handle": "IMG_1142.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2477.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-17 19:33:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2477.jpg", - "handle": "IMG_2477.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", - "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1803.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 08:20:00", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1803.jpg", - "handle": "IMG_1803.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3db829a5007242efa3338a327b40a664.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 10:51:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3db829a5007242efa3338a327b40a664.jpg", - "handle": "3db829a5007242efa3338a327b40a664.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8416.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 17:40:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8416.jpg", - "handle": "IMG_8416.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1397.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1397.jpg", - "handle": "IMG_1397.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3b2065c7ae2345c1abb665cb5ac45952.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 12:50:18", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3b2065c7ae2345c1abb665cb5ac45952.jpg", - "handle": "3b2065c7ae2345c1abb665cb5ac45952.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9087.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:25:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9087.jpg", - "handle": "IMG_9087.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.26.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:27:26", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.27.26.jpg", - "handle": "2016-04-08 11.27.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2878.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:32:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2878.jpg", - "handle": "IMG_2878.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.01.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.19.01.jpg", - "handle": "2018-04-10 12.19.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2850.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-22 00:06:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2850.jpg", - "handle": "IMG_2850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-21 20:30:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2844.jpg", - "handle": "IMG_2844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1395.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:34:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1395.jpg", - "handle": "IMG_1395.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.08.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:08:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.08.53.jpg", - "handle": "2018-04-08 20.08.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-08 08:13:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8428.jpg", - "handle": "IMG_8428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.49.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.49.35.jpg", - "handle": "2018-04-09 15.49.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:54:21", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1424.jpg", - "handle": "IMG_1424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.00.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:22:00", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.22.00.jpg", - "handle": "2018-04-10 09.22.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1430.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-06 15:05:19", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1430.jpg", - "handle": "IMG_1430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0048.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:50:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0048.jpg", - "handle": "IMG_0048.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", - "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.24.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:11:24", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.11.24.jpg", - "handle": "2016-12-21 16.11.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0289.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 20:35:00", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0289.JPG", - "handle": "IMG_0289.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1829.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.59.06.jpg", - "width": 1600, - "height": 407, - "orientation": 0, - "taken_at": "2016-08-24 11:59:06", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_11.59.06.jpg", - "handle": "2016-08-24_11.59.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8164.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-02-18 13:26:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8164.jpg", - "handle": "IMG_8164.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2449.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-17 13:39:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2449.jpg", - "handle": "IMG_2449.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8951.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-14 15:22:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8951.jpg", - "handle": "IMG_8951.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1791.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-18 18:13:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1791.jpg", - "handle": "IMG_1791.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2267.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-03 13:40:10", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2267.jpg", - "handle": "IMG_2267.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2273.jpg", - "width": 1000, - "height": 874, - "orientation": 0, - "taken_at": "2018-11-04 18:29:56", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2273.jpg", - "handle": "IMG_2273.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_09.56.23.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:23", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_09.56.23.jpg", - "handle": "2016-08-24_09.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2529.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:59:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2529.JPG", - "handle": "IMG_2529.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0458.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0458.jpg", - "handle": "IMG_0458.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9656.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-07 15:29:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9656.jpg", - "handle": "IMG_9656.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8561.jpg", - "width": 1000, - "height": 477, - "orientation": 0, - "taken_at": "2018-04-09 19:34:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8561.jpg", - "handle": "IMG_8561.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0897.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-01-09 23:22:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0897.jpg", - "handle": "IMG_0897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0840.jpg", - "width": 1000, - "height": 564, - "orientation": 0, - "taken_at": "2018-07-18 09:27:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0840.jpg", - "handle": "IMG_0840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.59.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:59", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.10.59.jpg", - "handle": "2016-12-21 16.10.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:39:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8987.jpg", - "handle": "IMG_8987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8944.jpg", - "width": 955, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-14 13:15:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8944.jpg", - "handle": "IMG_8944.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0897 2.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:47:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0897 2.jpg", - "handle": "IMG_0897 2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2474.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 19:27:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2474.JPG", - "handle": "IMG_2474.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1182.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-16 17:15:35", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1182.jpg", - "handle": "IMG_1182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "width": 1000, - "height": 740, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", - "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8415.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 17:39:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8415.jpg", - "handle": "IMG_8415.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.47.19.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.47.19.jpg", - "handle": "2018-04-09 15.47.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0075.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:13:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0075.jpg", - "handle": "IMG_0075.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2879.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 21:07:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2879.jpg", - "handle": "IMG_2879.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", - "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9041.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-19 11:05:52", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9041.jpg", - "handle": "IMG_9041.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0065.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:56:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0065.jpg", - "handle": "IMG_0065.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.24.07.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:24:07", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.24.07.jpg", - "handle": "2018-04-10 08.24.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 18:26:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 18.26.20.jpg", - "handle": "2018-04-08 18.26.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3a44dac1a72b4a3ab27d516bbc273c66.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-12 12:42:00", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3a44dac1a72b4a3ab27d516bbc273c66.jpg", - "handle": "3a44dac1a72b4a3ab27d516bbc273c66.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.40.26.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:40:26", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.40.26.jpg", - "handle": "2018-04-10 08.40.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1810.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-10-19 08:40:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1810.JPG", - "handle": "IMG_1810.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1145.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-08-13 15:56:37", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1145.jpg", - "handle": "IMG_1145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1794.jpg", - "width": 1000, - "height": 613, - "orientation": 0, - "taken_at": "2018-10-18 18:16:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1794.jpg", - "handle": "IMG_1794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", - "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.34.23.jpg", - "handle": "2018-04-09 13.34.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0844.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-07-18 09:37:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0844.jpg", - "handle": "IMG_0844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0893.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-21 15:45:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0893.jpg", - "handle": "IMG_0893.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1958.PNG", - "width": 462, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_1958.PNG", - "handle": "IMG_1958.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2c9bdcdf190840b6a11297c9269e3ce1.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 17:10:27", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2c9bdcdf190840b6a11297c9269e3ce1.jpg", - "handle": "2c9bdcdf190840b6a11297c9269e3ce1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0105.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:24:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0105.jpg", - "handle": "IMG_0105.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", - "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:54:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9849.jpg", - "handle": "IMG_9849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4afc13934e0f4c66b67f3e3257c6876d.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:47:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/4afc13934e0f4c66b67f3e3257c6876d.jpg", - "handle": "4afc13934e0f4c66b67f3e3257c6876d.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1583.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-02 11:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1583.jpg", - "handle": "IMG_1583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7469.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-30 21:59:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7469.JPG", - "handle": "IMG_7469.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2b2277070ad84404a28809ed535993b7.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 13:27:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2b2277070ad84404a28809ed535993b7.jpg", - "handle": "2b2277070ad84404a28809ed535993b7.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8821.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:25:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8821.jpg", - "handle": "IMG_8821.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7290.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:43:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7290.jpg", - "handle": "IMG_7290.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9083.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-20 14:18:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9083.jpg", - "handle": "IMG_9083.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.18.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:52:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.52.18.jpg", - "handle": "2018-04-10 11.52.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.39.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:39", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.19.39.jpg", - "handle": "2018-04-10 12.19.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1393.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:33:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1393.jpg", - "handle": "IMG_1393.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.02.33.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:02:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.02.33.jpg", - "handle": "2018-04-10 19.02.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.02.27.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 19:02:27", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.02.27.jpg", - "handle": "2018-04-10 19.02.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1422.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:30", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1422.jpg", - "handle": "IMG_1422.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-13 07:27:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/D4415026-928A-4101-9971-A6847DAB2302.JPG", - "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.00.40.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:00:40", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.00.40.jpg", - "handle": "2018-04-09 14.00.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2498.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-21 12:21:14", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2498.jpg", - "handle": "IMG_2498.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.09.42.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 09:09:42", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.09.42.jpg", - "handle": "2018-04-10 09.09.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4189.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:30:44", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_4189.JPG", - "handle": "IMG_4189.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.02.21.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:02:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 14.02.21.jpg", - "handle": "2016-12-21 14.02.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.36.38.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:36:38", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.36.38.jpg", - "handle": "2018-04-10 08.36.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3143.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 12:24:48", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3143.jpg", - "handle": "IMG_3143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.13.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:13:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.13.59.jpg", - "handle": "2018-04-08 20.13.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8758.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:00:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8758.jpg", - "handle": "IMG_8758.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2513.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:05:44", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2513.jpg", - "handle": "IMG_2513.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9320.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:09:10", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9320.jpg", - "handle": "IMG_9320.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3382.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:49", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3382.JPG", - "handle": "IMG_3382.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4c5eed1aaa94427983aa9d26429d6db9.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:19:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/4c5eed1aaa94427983aa9d26429d6db9.jpg", - "handle": "4c5eed1aaa94427983aa9d26429d6db9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9122.jpg", - "width": 1000, - "height": 432, - "orientation": 0, - "taken_at": "2018-04-22 12:56:39", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9122.jpg", - "handle": "IMG_9122.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0113.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:25:17", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0113.jpg", - "handle": "IMG_0113.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.59.13.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 10:59:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 10.59.13.jpg", - "handle": "2016-04-08 10.59.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8567.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:26:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8567.jpg", - "handle": "IMG_8567.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8759.jpg", - "width": 709, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-11 18:01:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8759.jpg", - "handle": "IMG_8759.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.33.58.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:33:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.33.58.jpg", - "handle": "2018-04-09 14.33.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", - "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.10-1.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:10", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.38.10-1.jpg", - "handle": "2016-04-08 11.38.10-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.42.09.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:42:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.42.09.jpg", - "handle": "2018-04-10 08.42.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2314.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:31:39", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2314.jpg", - "handle": "IMG_2314.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8163.jpg", - "width": 1000, - "height": 600, - "orientation": 0, - "taken_at": "2018-02-18 13:25:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8163.jpg", - "handle": "IMG_8163.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "width": 1000, - "height": 683, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", - "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8836.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:05:55", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8836.JPG", - "handle": "IMG_8836.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1423.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 13:50:53", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1423.jpg", - "handle": "IMG_1423.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.33.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 11:52:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.52.33.jpg", - "handle": "2018-04-10 11.52.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_12.37.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 12:37:49", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_12.37.49.jpg", - "handle": "2016-08-24_12.37.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1392.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:32:16", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1392.jpg", - "handle": "IMG_1392.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.17.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.17.jpg", - "handle": "2018-04-10 12.17.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0903.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-22 17:39:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0903.jpg", - "handle": "IMG_0903.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8436.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 12:13:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8436.jpg", - "handle": "IMG_8436.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.41.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:41:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.41.04.jpg", - "handle": "2018-04-09 14.41.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1360.jpg", - "width": 1000, - "height": 751, - "orientation": 180, - "taken_at": "2018-09-08 21:02:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1360.jpg", - "handle": "IMG_1360.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180213_102748.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 11:27:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180213_102748.jpg", - "handle": "20180213_102748.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4cade4ee4ba7484a807265680e221ca3.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/4cade4ee4ba7484a807265680e221ca3.jpg", - "handle": "4cade4ee4ba7484a807265680e221ca3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2480.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-11-17 19:39:34", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2480.jpg", - "handle": "IMG_2480.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2494.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 12:21:08", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2494.jpg", - "handle": "IMG_2494.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.20.06.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 11.20.06.jpg", - "handle": "2018-02-13 11.20.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8807.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-12 13:10:57", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8807.jpg", - "handle": "IMG_8807.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2325.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:34:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2325.jpg", - "handle": "IMG_2325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_065950.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 06:59:50", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180214_065950.jpg", - "handle": "20180214_065950.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.57.35.jpg", - "width": 1600, - "height": 605, - "orientation": 0, - "taken_at": "2016-08-24 11:57:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_11.57.35.jpg", - "handle": "2016-08-24_11.57.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1604.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-10-06 01:08:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1604.jpg", - "handle": "IMG_1604.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8967.jpg", - "width": 1000, - "height": 339, - "orientation": 0, - "taken_at": "2018-04-15 17:57:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8967.jpg", - "handle": "IMG_8967.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-20 12:23:12", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.27.08.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:27:08", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.27.08.jpg", - "handle": "2018-04-09 14.27.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180218_151913.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-13 10:16:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180218_151913.jpg", - "handle": "20180218_151913.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.01.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:01:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.01.18.jpg", - "handle": "2018-04-09 14.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.20.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:07:20", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.07.20.jpg", - "handle": "2018-04-08 20.07.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_151354.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 15:13:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180212_151354.jpg", - "handle": "20180212_151354.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2523.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-21 22:58:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2523.JPG", - "handle": "IMG_2523.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05824.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:08:38", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05824.jpg", - "handle": "DSC05824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9847.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:26", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9847.jpg", - "handle": "IMG_9847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.46.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:46", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.10.46.jpg", - "handle": "2016-12-21 16.10.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9112.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:38:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9112.jpg", - "handle": "IMG_9112.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2047.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-01-20 11:48:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2047.jpg", - "handle": "IMG_2047.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3358.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:09:20", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3358.JPG", - "handle": "IMG_3358.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.44.35.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:44:35", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.44.35.jpg", - "handle": "2018-04-09 14.44.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.44.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:44", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.15.44.jpg", - "handle": "2018-04-09 14.15.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.46.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:46:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.46.53.jpg", - "handle": "2018-04-09 15.46.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05825.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:13:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05825.jpg", - "handle": "DSC05825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_09.56.14.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-08-24 09:56:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_09.56.14.jpg", - "handle": "2016-08-24_09.56.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8972.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-15 19:59:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8972.jpg", - "handle": "IMG_8972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0ad2395a550b4995882933c83ad3925f.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:07:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0ad2395a550b4995882933c83ad3925f.jpg", - "handle": "0ad2395a550b4995882933c83ad3925f.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2456.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:53:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2456.JPG", - "handle": "IMG_2456.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.03.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:03", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.00.03.jpg", - "handle": "2018-04-10 12.00.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/db81d71e-c642-499b-9525-17154693cf21.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/db81d71e-c642-499b-9525-17154693cf21.JPG", - "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.37.14.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:37:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.37.14.jpg", - "handle": "2016-04-08 11.37.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.17.31.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.17.31.jpg", - "handle": "2018-02-13 10.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.18.29.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:18:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.18.29.jpg", - "handle": "2018-04-10 13.18.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.03.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:52:03", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.52.03.jpg", - "handle": "2018-04-10 11.52.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2871.jpg", - "width": 1000, - "height": 520, - "orientation": 0, - "taken_at": "2018-12-23 17:39:04", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2871.jpg", - "handle": "IMG_2871.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.31.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:31", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.31.jpg", - "handle": "2018-04-10 12.17.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-23 16:39:17", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2865.jpg", - "handle": "IMG_2865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9071.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-19 17:01:04", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9071.jpg", - "handle": "IMG_9071.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05774.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 10:17:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05774.jpg", - "handle": "DSC05774.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.46.56.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 14:46:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 14.46.56.jpg", - "handle": "2016-12-21 14.46.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.46.42.jpg", - "width": 944, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 14:46:42", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 14.46.42.jpg", - "handle": "2016-12-21 14.46.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.28.02.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.28.02.jpg", - "handle": "2018-02-13 10.28.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.39.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:39", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.11.39.jpg", - "handle": "2016-12-21 16.11.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2332.jpg", - "width": 939, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:41:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2332.jpg", - "handle": "IMG_2332.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2454.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 18:47:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2454.jpg", - "handle": "IMG_2454.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.11.55.jpg", - "handle": "2018-04-09 15.11.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2468.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 18:56:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2468.JPG", - "handle": "IMG_2468.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8970.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-15 19:58:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8970.jpg", - "handle": "IMG_8970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.50.30.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:50:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.50.30.jpg", - "handle": "2018-04-10 12.50.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 14.13.28.jpg", - "width": 675, - "height": 624, - "orientation": 0, - "taken_at": "2018-02-12 14:33:28", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 14.13.28.jpg", - "handle": "2018-02-12 14.13.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0451.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-23 21:51:46", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0451.jpg", - "handle": "IMG_0451.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.37.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-08 20:07:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.07.37.jpg", - "handle": "2018-04-08 20.07.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2520.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-21 21:10:36", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2520.jpg", - "handle": "IMG_2520.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1983.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-21 07:40:30", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1983.jpg", - "handle": "IMG_1983.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8743.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8743.jpg", - "handle": "IMG_8743.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9850.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-13 07:55:44", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9850.jpg", - "handle": "IMG_9850.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8596.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-10 12:59:36", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8596.jpg", - "handle": "IMG_8596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9844.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:54:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9844.jpg", - "handle": "IMG_9844.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.47.02.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-13 10:47:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.47.02.jpg", - "handle": "2018-02-13 10.47.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-15 18.15.01.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-15 18:15:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-15 18.15.01.jpg", - "handle": "2018-02-15 18.15.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:14:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", - "handle": "0fc25a17b7bc4d4db9ab46d416c0a18e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9138.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 13:51:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9138.jpg", - "handle": "IMG_9138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1202.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-18 12:41:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1202.jpg", - "handle": "IMG_1202.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5064.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 14:34:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_5064.jpg", - "handle": "IMG_5064.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9104.jpg", - "width": 585, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-21 18:21:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9104.jpg", - "handle": "IMG_9104.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180218_152029.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-14 11:10:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180218_152029.jpg", - "handle": "20180218_152029.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180213_110206.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:02:06", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180213_110206.jpg", - "handle": "20180213_110206.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:10:50", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.10.50.jpg", - "handle": "2016-12-21 16.10.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0861.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 10:54:33", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0861.jpg", - "handle": "IMG_0861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9851.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-13 07:55:49", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9851.jpg", - "handle": "IMG_9851.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0849.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 10:26:30", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0849.jpg", - "handle": "IMG_0849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.53.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:15:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.15.53.jpg", - "handle": "2018-04-09 14.15.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1174.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-16 16:54:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1174.jpg", - "handle": "IMG_1174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2441.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:37:16", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2441.jpg", - "handle": "IMG_2441.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_071933.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-12 16:54:10", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180214_071933.jpg", - "handle": "20180214_071933.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:00:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.00.28.jpg", - "handle": "2018-04-10 12.00.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8839.JPG", - "width": 751, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 13:29:06", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8839.JPG", - "handle": "IMG_8839.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.01.37.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:01:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.01.37.jpg", - "handle": "2018-04-10 13.01.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8434.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 11:21:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8434.jpg", - "handle": "IMG_8434.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1404.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-22 12:54:14", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1404.jpg", - "handle": "IMG_1404.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.23.17.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:23:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.23.17.jpg", - "handle": "2018-04-10 08.23.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "width": 1000, - "height": 940, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", - "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8408.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-07 03:11:05", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8408.jpg", - "handle": "IMG_8408.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.24.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:24", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.24.jpg", - "handle": "2018-04-10 12.17.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.04.58.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:04:58", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.04.58.jpg", - "handle": "2018-04-10 12.04.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0097.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:19:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0097.jpg", - "handle": "IMG_0097.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1400.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:48:08", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1400.jpg", - "handle": "IMG_1400.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8424.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-07 19:16:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8424.jpg", - "handle": "IMG_8424.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8430.jpg", - "width": 1000, - "height": 842, - "orientation": 0, - "taken_at": "2018-04-08 08:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8430.jpg", - "handle": "IMG_8430.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9712.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-21 19:17:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9712.jpg", - "handle": "IMG_9712.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/FullSizeRender 4.jpg", - "width": 3264, - "height": 2448, - "orientation": 0, - "taken_at": "2017-01-06 08:13:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/FullSizeRender 4.jpg", - "handle": "FullSizeRender 4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.01.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 13:01:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.01.33.jpg", - "handle": "2018-04-10 13.01.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2f9b81ea174943ff8370f7a97b77f3a4.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:08:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2f9b81ea174943ff8370f7a97b77f3a4.jpg", - "handle": "2f9b81ea174943ff8370f7a97b77f3a4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.20.02.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:20:02", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.20.02.jpg", - "handle": "2018-04-10 13.20.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0246.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0246.jpg", - "handle": "IMG_0246.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1945.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-20 11:35:40", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1945.jpg", - "handle": "IMG_1945.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.38.37.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:38:37", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.38.37.jpg", - "handle": "2018-04-10 08.38.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9316.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 11:08:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9316.jpg", - "handle": "IMG_9316.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.49.28.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:49:28", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.49.28.jpg", - "handle": "2018-04-10 12.49.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3377.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:13:04", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3377.JPG", - "handle": "IMG_3377.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2727.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:52:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2727.jpg", - "handle": "IMG_2727.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0125.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-06 11:03:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0125.jpg", - "handle": "IMG_0125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2054.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-04 12:42:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2054.jpg", - "handle": "IMG_2054.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0119.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 12:40:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0119.jpg", - "handle": "IMG_0119.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00595.jpg", - "width": 1200, - "height": 607, - "orientation": 0, - "taken_at": "2018-02-18 08:11:16", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00595.jpg", - "handle": "DSC00595.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.27.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:28:27", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.28.27.jpg", - "handle": "2018-04-10 08.28.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2ffe925ead354f99b8ec9118747f55d6.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 15:56:17", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2ffe925ead354f99b8ec9118747f55d6.jpg", - "handle": "2ffe925ead354f99b8ec9118747f55d6.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.43.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:38:43", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.38.43.jpg", - "handle": "2016-04-08 11.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0870.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-18 11:11:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0870.jpg", - "handle": "IMG_0870.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.40.43.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:40:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.40.43.jpg", - "handle": "2018-04-09 14.40.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1039.jpg", - "width": 1000, - "height": 226, - "orientation": 0, - "taken_at": "2018-08-04 14:35:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1039.jpg", - "handle": "IMG_1039.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1603.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-06 00:19:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1603.jpg", - "handle": "IMG_1603.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.20.01.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:20:01", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 11.20.01.jpg", - "handle": "2018-02-13 11.20.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.15.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-12-21 16:11:15", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.11.15.jpg", - "handle": "2016-12-21 16.11.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", - "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8431.jpg", - "width": 749, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-08 09:07:50", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8431.jpg", - "handle": "IMG_8431.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.49.04.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:49:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.49.04.jpg", - "handle": "2018-04-09 15.49.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06084.jpg", - "width": 1200, - "height": 810, - "orientation": 0, - "taken_at": "2018-02-17 16:24:20", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06084.jpg", - "handle": "DSC06084.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0092.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:17:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0092.jpg", - "handle": "IMG_0092.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.03.jpg", - "width": 766, - "height": 1337, - "orientation": 0, - "taken_at": "2016-04-08 11:27:03", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.27.03.jpg", - "handle": "2016-04-08 11.27.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00378.jpg", - "width": 1177, - "height": 800, - "orientation": 0, - "taken_at": "2018-02-17 16:44:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00378.jpg", - "handle": "DSC00378.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2849.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-22 00:06:06", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2849.jpg", - "handle": "IMG_2849.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1398.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-22 12:47:42", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1398.jpg", - "handle": "IMG_1398.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.12.52.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 16:12:52", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 16.12.52.jpg", - "handle": "2016-12-21 16.12.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2877.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-24 20:06:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2877.jpg", - "handle": "IMG_2877.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.23.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:23", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.23.jpg", - "handle": "2018-04-10 12.17.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06045.jpg", - "width": 1200, - "height": 847, - "orientation": 0, - "taken_at": "2018-02-17 16:23:46", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06045.jpg", - "handle": "DSC06045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-02-04 10:34:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_5856.jpg", - "handle": "IMG_5856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.01.jpg", - "width": 1600, - "height": 584, - "orientation": 0, - "taken_at": "2016-04-08 11:27:01", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.27.01.jpg", - "handle": "2016-04-08 11.27.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06086.jpg", - "width": 1200, - "height": 821, - "orientation": 0, - "taken_at": "2018-02-17 16:24:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06086.jpg", - "handle": "DSC06086.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2888.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-24 23:30:46", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2888.jpg", - "handle": "IMG_2888.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1198.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-20 07:12:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1198.jpg", - "handle": "IMG_1198.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2308.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 19:19:37", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2308.jpg", - "handle": "IMG_2308.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180215_070918.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:34:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180215_070918.jpg", - "handle": "20180215_070918.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.09.21.jpg", - "width": 1199, - "height": 573, - "orientation": 0, - "taken_at": "2018-02-13 10:09:21", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.09.21.jpg", - "handle": "2018-02-13 10.09.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0251.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 02:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0251.jpg", - "handle": "IMG_0251.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.03.52.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 19:03:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.03.52.jpg", - "handle": "2018-04-10 19.03.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.40.25.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:40:25", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.40.25.jpg", - "handle": "2018-04-09 13.40.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", - "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8745.jpg", - "handle": "IMG_8745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3176.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_3176.JPG", - "handle": "IMG_3176.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2268.jpg", - "width": 1000, - "height": 407, - "orientation": 0, - "taken_at": "2018-11-03 21:25:29", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2268.jpg", - "handle": "IMG_2268.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05835.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:46:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05835.jpg", - "handle": "DSC05835.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9315.jpg", - "width": 682, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 09:49:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9315.jpg", - "handle": "IMG_9315.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0457.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-24 17:44:03", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0457.jpg", - "handle": "IMG_0457.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 13:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.34.15.jpg", - "handle": "2018-04-09 13.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06125.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:27:19", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06125.jpg", - "handle": "DSC06125.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9856.jpg", - "width": 1000, - "height": 668, - "orientation": 0, - "taken_at": "2018-05-13 08:00:41", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_9856.jpg", - "handle": "IMG_9856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0872.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-18 11:12:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0872.jpg", - "handle": "IMG_0872.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.01.53.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:01:53", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.01.53.jpg", - "handle": "2018-04-10 12.01.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.59.32.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 11:59:32", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.59.32.jpg", - "handle": "2018-04-10 11.59.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00597.jpg", - "width": 1198, - "height": 599, - "orientation": 0, - "taken_at": "2018-02-18 08:18:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00597.jpg", - "handle": "DSC00597.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8547.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 18:05:28", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8547.jpg", - "handle": "IMG_8547.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0127.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 12:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0127.jpg", - "handle": "IMG_0127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2730.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-15 10:53:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2730.jpg", - "handle": "IMG_2730.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0132.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 13:10:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0132.jpg", - "handle": "IMG_0132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3349.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:07:40", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3349.JPG", - "handle": "IMG_3349.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 19:26:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8552.jpg", - "handle": "IMG_8552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00596.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 08:11:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00596.jpg", - "handle": "DSC00596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05808.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-15 18:01:33", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05808.jpg", - "handle": "DSC05808.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8988.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-16 19:40:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8988.jpg", - "handle": "IMG_8988.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8744.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-11 17:27:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8744.jpg", - "handle": "IMG_8744.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2269.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-04 18:28:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2269.jpg", - "handle": "IMG_2269.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00794.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:51:09", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00794.jpg", - "handle": "DSC00794.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 14:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8963.jpg", - "handle": "IMG_8963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-11-04 23:12:42", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", - "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0244.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-09 00:28:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0244.jpg", - "handle": "IMG_0244.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9512.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-01-22 07:11:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9512.jpg", - "handle": "IMG_9512.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2321.jpg", - "width": 1000, - "height": 663, - "orientation": 0, - "taken_at": "2018-11-07 19:33:01", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2321.jpg", - "handle": "IMG_2321.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1827.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-10-19 11:01:33", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1827.jpg", - "handle": "IMG_1827.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3942.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-02-24 23:03:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3942.jpg", - "handle": "IMG_3942.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2889.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-24 23:31:41", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2889.jpg", - "handle": "IMG_2889.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:19:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.19.33.jpg", - "handle": "2018-04-10 12.19.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.04.48.jpg", - "width": 1200, - "height": 480, - "orientation": 0, - "taken_at": "2018-02-12 16:04:48", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 16.04.48.jpg", - "handle": "2018-02-12 16.04.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_070127.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:34:17", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180214_070127.jpg", - "handle": "20180214_070127.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", - "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2b47b9cb60944a69b8d9a44f49e0246e.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 11:55:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2b47b9cb60944a69b8d9a44f49e0246e.jpg", - "handle": "2b47b9cb60944a69b8d9a44f49e0246e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", - "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0035.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:00:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0035.jpg", - "handle": "IMG_0035.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8455.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-08 13:47:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8455.jpg", - "handle": "IMG_8455.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1317.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-08-26 12:08:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1317.jpg", - "handle": "IMG_1317.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/d4501042-a743-4fa7-bfda-e013d740392b.JPG", - "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0592.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:47", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0592.jpg", - "handle": "IMG_0592.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1840.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:04:15", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1840.jpg", - "handle": "IMG_1840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.29.56.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:29:56", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.29.56.jpg", - "handle": "2016-04-08 12.29.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1129.jpg", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-08-12 16:15:09", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_1129.jpg", - "handle": "IMG_1129.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2346.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-07 19:56:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2346.JPG", - "handle": "IMG_2346.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0551.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 21:30:34", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0551.jpg", - "handle": "IMG_0551.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "width": 659, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", - "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0545.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-30 20:37:59", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0545.jpg", - "handle": "IMG_0545.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180216_194002.jpg", - "width": 1199, - "height": 693, - "orientation": 0, - "taken_at": "2018-02-16 19:40:02", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180216_194002.jpg", - "handle": "20180216_194002.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05660.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:16:54", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05660.jpg", - "handle": "DSC05660.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-05 18:33:43", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1049.jpg", - "handle": "IMG_1049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9824.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9824.jpg", - "handle": "IMG_9824.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 19.18.59.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 19:18:59", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 19.18.59.jpg", - "handle": "2018-04-09 19.18.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9171.jpg", - "width": 1000, - "height": 645, - "orientation": 0, - "taken_at": "2018-04-27 13:55:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9171.jpg", - "handle": "IMG_9171.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7174.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-24 21:12:49", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7174.jpg", - "handle": "IMG_7174.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.43.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:28:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.28.43.jpg", - "handle": "2018-04-10 08.28.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.58.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 11:58:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_11.58.13.jpg", - "handle": "2016-08-24_11.58.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1277.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-08-19 13:27:48", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1277.jpg", - "handle": "IMG_1277.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2964.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-12-30 17:11:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2964.jpg", - "handle": "IMG_2964.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.01.22.jpg", - "width": 546, - "height": 985, - "orientation": 0, - "taken_at": "2018-02-12 16:01:22", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 16.01.22.jpg", - "handle": "2018-02-12 16.01.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9825.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:32", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9825.jpg", - "handle": "IMG_9825.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9428.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-05 20:27:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9428.jpg", - "handle": "IMG_9428.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0381.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:47:27", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0381.jpg", - "handle": "IMG_0381.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0578.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:28:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0578.jpg", - "handle": "IMG_0578.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3071.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_3071.JPG", - "handle": "IMG_3071.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 18.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:50:43", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 18.jpg", - "handle": "Rome - 18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2353.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-07 19:57:26", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2353.jpg", - "handle": "IMG_2353.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0949.PNG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_0949.PNG", - "handle": "IMG_0949.PNG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 30.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:53:48", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 30.jpg", - "handle": "Rome - 30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2435.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-17 13:06:32", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2435.jpg", - "handle": "IMG_2435.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2421.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-17 10:13:24", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2421.JPG", - "handle": "IMG_2421.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0236.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:26:58", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0236.jpg", - "handle": "IMG_0236.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 24.jpg", - "width": 1024, - "height": 1941, - "orientation": 0, - "taken_at": "2016-05-29 16:24:08", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 24.jpg", - "handle": "Rome - 24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05729.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:29:47", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05729.jpg", - "handle": "DSC05729.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1841.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:21", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1841.jpg", - "handle": "IMG_1841.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2390.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 22:04:25", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2390.jpg", - "handle": "IMG_2390.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8865.jpg", - "width": 756, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 19:57:41", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8865.jpg", - "handle": "IMG_8865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.11.44.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 11:11:44", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 11.11.44.jpg", - "handle": "2018-02-13 11.11.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2637.jpg", - "width": 650, - "height": 1000, - "orientation": 0, - "taken_at": "2018-12-09 22:18:45", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2637.jpg", - "handle": "IMG_2637.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.23.22.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 12:23:22", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.23.22.jpg", - "handle": "2016-04-08 12.23.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", - "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 9.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-27 13:41:24", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 9.jpg", - "handle": "Rome - 9.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2a5a34cc6a4146d6952796012283dad2.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 19:47:41", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2a5a34cc6a4146d6952796012283dad2.jpg", - "handle": "2a5a34cc6a4146d6952796012283dad2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.52.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:52", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.52.jpg", - "handle": "2018-04-10 12.17.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8318.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 09:39:08", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8318.jpg", - "handle": "IMG_8318.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0036.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 11:03:13", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0036.jpg", - "handle": "IMG_0036.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7017.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-23 19:47:52", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7017.jpg", - "handle": "IMG_7017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3517.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-05-05 19:50:19", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3517.jpg", - "handle": "IMG_3517.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1843.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-19 18:05:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1843.jpg", - "handle": "IMG_1843.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05703.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:46:07", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05703.jpg", - "handle": "DSC05703.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.35.jpg", - "width": 1600, - "height": 500, - "orientation": 0, - "taken_at": "2016-12-21 13:21:35", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 13.21.35.jpg", - "handle": "2016-12-21 13.21.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0c436d77385f495690654d43b2e5eb24.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 15:32:29", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0c436d77385f495690654d43b2e5eb24.jpg", - "handle": "0c436d77385f495690654d43b2e5eb24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3ac6c244fbbe425da4be0615be87c6c3.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-11 14:33:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3ac6c244fbbe425da4be0615be87c6c3.jpg", - "handle": "3ac6c244fbbe425da4be0615be87c6c3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 32.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:23", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 32.jpg", - "handle": "Rome - 32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0546.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 21:09:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0546.jpg", - "handle": "IMG_0546.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9204.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-27 14:50:09", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9204.jpg", - "handle": "IMG_9204.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/03c4ba06d9544d718182d545d2c091d0.jpg", - "width": 1200, - "height": 674, - "orientation": 0, - "taken_at": "2018-10-10 20:14:47", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/03c4ba06d9544d718182d545d2c091d0.jpg", - "handle": "03c4ba06d9544d718182d545d2c091d0.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0552.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-06-30 23:14:14", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0552.jpg", - "handle": "IMG_0552.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 26.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:38:55", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 26.jpg", - "handle": "Rome - 26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0234.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-08 20:25:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0234.jpg", - "handle": "IMG_0234.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8898.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-04-13 20:18:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8898.jpg", - "handle": "IMG_8898.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", - "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 17.17.27.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:27", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 17.17.27.jpg", - "handle": "2018-02-12 17.17.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.25.55.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:25:55", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.25.55.jpg", - "handle": "2016-04-08 12.25.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0383.jpg", - "handle": "IMG_0383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2fb74866c5cc46fab8cd366a70a48b73.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 15:41:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/2fb74866c5cc46fab8cd366a70a48b73.jpg", - "handle": "2fb74866c5cc46fab8cd366a70a48b73.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2543.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:35:22", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2543.JPG", - "handle": "IMG_2543.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05688.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-13 11:32:57", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05688.jpg", - "handle": "DSC05688.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0181.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 16:00:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0181.jpg", - "handle": "IMG_0181.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06154.jpg", - "width": 1200, - "height": 835, - "orientation": 0, - "taken_at": "2018-02-17 16:44:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06154.jpg", - "handle": "DSC06154.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9199.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-27 14:46:53", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9199.jpg", - "handle": "IMG_9199.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-02 16:19:06", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0624.jpg", - "handle": "IMG_0624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.02.29.jpg", - "width": 1024, - "height": 331, - "orientation": 0, - "taken_at": "2018-04-09 14:02:29", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.02.29.jpg", - "handle": "2018-04-09 14.02.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4319.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-01-11 06:42:00", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_4319.jpg", - "handle": "IMG_4319.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 07.05.30.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 07:05:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 07.05.30.jpg", - "handle": "2018-04-10 07.05.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06182.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-18 07:54:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06182.jpg", - "handle": "DSC06182.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0157.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-26 13:47:24", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0157.jpg", - "handle": "IMG_0157.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2973.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-31 01:47:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2973.jpg", - "handle": "IMG_2973.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2797.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:33:22", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2797.jpg", - "handle": "IMG_2797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.40.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2016-08-24 10:40:13", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-08-24_10.40.13.jpg", - "handle": "2016-08-24_10.40.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9359.jpg", - "width": 1000, - "height": 589, - "orientation": 0, - "taken_at": "2018-05-05 18:37:45", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9359.jpg", - "handle": "IMG_9359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.12.05.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:12:05", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.12.05.jpg", - "handle": "2018-04-09 14.12.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 23.27.14.jpg", - "width": 1489, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 15:27:14", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 23.27.14.jpg", - "handle": "2016-04-08 23.27.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.20.04.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 13:20:04", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 13.20.04.jpg", - "handle": "2018-04-09 13.20.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05892.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:10:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05892.jpg", - "handle": "DSC05892.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1cb7e311f4f14ef383969959677e626e.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 14:15:13", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/1cb7e311f4f14ef383969959677e626e.jpg", - "handle": "1cb7e311f4f14ef383969959677e626e.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.04.17.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:04:17", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.04.17.jpg", - "handle": "2018-04-10 19.04.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0382.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-06-17 13:47:38", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0382.jpg", - "handle": "IMG_0382.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.34.15.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 14:34:15", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.34.15.jpg", - "handle": "2018-04-09 14.34.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3d90ea859f8d40eebdc30a33e3421389.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-11 16:15:36", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3d90ea859f8d40eebdc30a33e3421389.jpg", - "handle": "3d90ea859f8d40eebdc30a33e3421389.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3066.JPG", - "width": 562, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/IMG_3066.JPG", - "handle": "IMG_3066.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8133.JPG", - "width": 1000, - "height": 562, - "orientation": 0, - "taken_at": "2018-02-04 10:38:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8133.JPG", - "handle": "IMG_8133.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 27.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 16:39:18", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 27.jpg", - "handle": "Rome - 27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 33.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:12:33", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 33.jpg", - "handle": "Rome - 33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.29.01.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:29:01", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.29.01.jpg", - "handle": "2018-04-10 08.29.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3099.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-09 21:39:14", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3099.jpg", - "handle": "IMG_3099.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8325.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-14 13:55:18", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8325.jpg", - "handle": "IMG_8325.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0037.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-26 11:09:55", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0037.jpg", - "handle": "IMG_0037.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9013.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-04-15 17:48:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9013.JPG", - "handle": "IMG_9013.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.17.45.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:17:45", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.17.45.jpg", - "handle": "2018-02-13 10.17.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.25.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:25", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.05.25.jpg", - "handle": "2016-04-08 12.05.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.58.36.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:58:36", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.58.36.jpg", - "handle": "2018-04-10 12.58.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.57.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:17:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.17.57.jpg", - "handle": "2018-04-10 12.17.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8490.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-08 17:36:01", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8490.jpg", - "handle": "IMG_8490.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 12:43:42", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", - "handle": "3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9995.JPG", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 20:34:35", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9995.JPG", - "handle": "IMG_9995.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.21.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2016-04-08 12:05:21", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.05.21.jpg", - "handle": "2016-04-08 12.05.21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9003.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-04-17 14:01:16", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9003.jpg", - "handle": "IMG_9003.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2624.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-08 00:18:58", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2624.jpg", - "handle": "IMG_2624.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1baa005e07454acebdcc98e870a631f1.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:39:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/1baa005e07454acebdcc98e870a631f1.jpg", - "handle": "1baa005e07454acebdcc98e870a631f1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.00.59.jpg", - "width": 808, - "height": 1200, - "orientation": 90, - "taken_at": "2018-02-12 16:00:59", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 16.00.59.jpg", - "handle": "2018-02-12 16.00.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.28.58.jpg", - "width": 675, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-13 10:28:58", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 10.28.58.jpg", - "handle": "2018-02-13 10.28.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.06.16.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:06:16", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.06.16.jpg", - "handle": "2018-04-10 19.06.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2383.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-07 21:01:57", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2383.jpg", - "handle": "IMG_2383.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00681.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:57:55", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC00681.jpg", - "handle": "DSC00681.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9201.jpg", - "width": 1000, - "height": 751, - "orientation": 0, - "taken_at": "2018-04-27 14:48:42", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9201.jpg", - "handle": "IMG_9201.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 37.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:37:10", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 37.jpg", - "handle": "Rome - 37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0225.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:19:51", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0225.jpg", - "handle": "IMG_0225.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 23.jpg", - "width": 1024, - "height": 677, - "orientation": 0, - "taken_at": "2016-05-29 16:12:45", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 23.jpg", - "handle": "Rome - 23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.33.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:11:33", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.11.33.jpg", - "handle": "2018-04-09 15.11.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.04.07.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 19:04:07", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 19.04.07.jpg", - "handle": "2018-04-10 19.04.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2585.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-11-28 13:26:09", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2585.jpg", - "handle": "IMG_2585.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0fc2f67adef44881b29ff09b8889891a.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 11:22:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0fc2f67adef44881b29ff09b8889891a.jpg", - "handle": "0fc2f67adef44881b29ff09b8889891a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2963.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-30 17:11:02", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2963.jpg", - "handle": "IMG_2963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06151.jpg", - "width": 1200, - "height": 807, - "orientation": 0, - "taken_at": "2018-02-17 16:42:31", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06151.jpg", - "handle": "DSC06151.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06145.jpg", - "width": 1200, - "height": 765, - "orientation": 0, - "taken_at": "2018-02-17 16:42:26", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06145.jpg", - "handle": "DSC06145.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1e5b988e96ee42448d7a123fd623730a.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 10:55:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/1e5b988e96ee42448d7a123fd623730a.jpg", - "handle": "1e5b988e96ee42448d7a123fd623730a.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1265.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-03-09 14:08:31", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1265.jpg", - "handle": "IMG_1265.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8527.jpg", - "width": 1000, - "height": 604, - "orientation": 0, - "taken_at": "2018-04-09 12:09:11", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8527.jpg", - "handle": "IMG_8527.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 16:48:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 16.48.12.jpg", - "handle": "2018-04-09 16.48.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2751.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-15 14:44:13", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2751.jpg", - "handle": "IMG_2751.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2745.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-15 14:34:43", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2745.jpg", - "handle": "IMG_2745.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3315.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:02:56", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3315.JPG", - "handle": "IMG_3315.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 14.52.55.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 14:52:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 14.52.55.jpg", - "handle": "2018-04-10 14.52.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0608.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-01 12:08:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0608.jpg", - "handle": "IMG_0608.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.46.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:46:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.46.10.jpg", - "handle": "2018-04-10 08.46.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.01.18.jpg", - "width": 1199, - "height": 496, - "orientation": 0, - "taken_at": "2018-02-12 16:01:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 16.01.18.jpg", - "handle": "2018-02-12 16.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9823.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-09 12:15:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9823.jpg", - "handle": "IMG_9823.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.15.47.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 12:15:47", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.15.47.jpg", - "handle": "2018-04-10 12.15.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.17.37.jpg", - "width": 551, - "height": 667, - "orientation": 0, - "taken_at": "2018-02-13 11:17:37", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-13 11.17.37.jpg", - "handle": "2018-02-13 11.17.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05854.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:02:24", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05854.jpg", - "handle": "DSC05854.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05840.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 15:53:49", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC05840.jpg", - "handle": "DSC05840.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9348.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 18:30:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9348.jpg", - "handle": "IMG_9348.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0387.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:52:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0387.jpg", - "handle": "IMG_0387.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.19.18.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 13:19:18", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 13.19.18.jpg", - "handle": "2018-04-10 13.19.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.34.10.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:34:10", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.34.10.jpg", - "handle": "2018-04-09 14.34.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.26.34.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 11:26:34", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.26.34.jpg", - "handle": "2016-04-08 11.26.34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 22.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 16:00:04", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 22.jpg", - "handle": "Rome - 22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 36.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 19:49:32", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 36.jpg", - "handle": "Rome - 36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_145219.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:20:18", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180212_145219.jpg", - "handle": "20180212_145219.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.19.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-12-21 13:21:19", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-12-21 13.21.19.jpg", - "handle": "2016-12-21 13.21.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "width": 1000, - "height": 562, - "orientation": 270, - "taken_at": "2018-08-11 12:01:07", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", - "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8687.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-04-10 21:40:15", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8687.jpg", - "handle": "IMG_8687.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0c86a91b209b4d81b03449bacdfcf8fc.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-10 12:40:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/0c86a91b209b4d81b03449bacdfcf8fc.jpg", - "handle": "0c86a91b209b4d81b03449bacdfcf8fc.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06018.jpg", - "width": 1200, - "height": 801, - "orientation": 0, - "taken_at": "2018-02-17 16:20:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC06018.jpg", - "handle": "DSC06018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-12-18 09:44:23", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2800.jpg", - "handle": "IMG_2800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0971.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:23", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0971.jpg", - "handle": "IMG_0971.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9941.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-03-06 10:44:22", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9941.jpg", - "handle": "IMG_9941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.50.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:22:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.22.50.jpg", - "handle": "2018-04-10 09.22.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.40.55.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:40:55", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.40.55.jpg", - "handle": "2018-04-09 15.40.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-14 18.11.13.jpg", - "width": 1200, - "height": 266, - "orientation": 0, - "taken_at": "2018-02-14 18:11:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-14 18.11.13.jpg", - "handle": "2018-02-14 18.11.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8849.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-10-30 14:23:01", - "camera": "iPhone 7", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8849.JPG", - "handle": "IMG_8849.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1689.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-10-14 13:23:59", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_1689.jpg", - "handle": "IMG_1689.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0583.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-07-01 00:33:29", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0583.jpg", - "handle": "IMG_0583.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.58.57.jpg", - "width": 1024, - "height": 275, - "orientation": 0, - "taken_at": "2018-04-09 14:58:57", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.58.57.jpg", - "handle": "2018-04-09 14.58.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 20.jpg", - "width": 1024, - "height": 768, - "orientation": 0, - "taken_at": "2016-05-29 15:59:39", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 20.jpg", - "handle": "Rome - 20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 34.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 17:26:26", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 34.jpg", - "handle": "Rome - 34.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC01359.jpg", - "width": 1200, - "height": 864, - "orientation": 0, - "taken_at": "2018-02-17 16:20:30", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/DSC01359.jpg", - "handle": "DSC01359.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.14.12.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-08 20:14:12", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-08 20.14.12.jpg", - "handle": "2018-04-08 20.14.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.38.43.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:38:43", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.38.43.jpg", - "handle": "2018-04-10 08.38.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", - "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3317.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-05-05 19:03:42", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3317.JPG", - "handle": "IMG_3317.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.46.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 08:28:46", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.28.46.jpg", - "handle": "2018-04-10 08.28.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9606.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-06 14:51:40", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_9606.jpg", - "handle": "IMG_9606.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.44.47.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 14:44:47", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 14.44.47.jpg", - "handle": "2018-04-09 14.44.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.57.54.jpg", - "width": 1600, - "height": 921, - "orientation": 0, - "taken_at": "2016-04-08 10:57:54", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 10.57.54.jpg", - "handle": "2016-04-08 10.57.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5015.JPG", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-12-30 20:29:13", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_5015.JPG", - "handle": "IMG_5015.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7170.jpg", - "width": 1024, - "height": 512, - "orientation": 0, - "taken_at": "2016-05-24 21:00:14", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7170.jpg", - "handle": "IMG_7170.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0192.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-28 06:39:12", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0192.jpg", - "handle": "IMG_0192.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3ef75635fea049239910eaeef3879765.jpg", - "width": 1200, - "height": 900, - "orientation": 270, - "taken_at": "2018-10-10 11:44:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3ef75635fea049239910eaeef3879765.jpg", - "handle": "3ef75635fea049239910eaeef3879765.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0186.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-05-27 09:33:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0186.jpg", - "handle": "IMG_0186.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.01.19.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 12:01:19", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.01.19.jpg", - "handle": "2018-04-10 12.01.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.41.26.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-10 08:41:26", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 08.41.26.jpg", - "handle": "2018-04-10 08.41.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "width": 692, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", - "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3128.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-04-10 11:25:39", - "camera": "iPhone X", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_3128.jpg", - "handle": "IMG_3128.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.18.44.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 09:18:44", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 09.18.44.jpg", - "handle": "2018-04-10 09.18.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0384.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-06-17 13:48:20", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0384.jpg", - "handle": "IMG_0384.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_175252.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 18:10:13", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180212_175252.jpg", - "handle": "20180212_175252.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 17.17.08.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 17:17:08", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 17.17.08.jpg", - "handle": "2018-02-12 17.17.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0227.jpg", - "width": 1000, - "height": 751, - "orientation": 270, - "taken_at": "2018-06-08 20:22:02", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0227.jpg", - "handle": "IMG_0227.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", - "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 35.jpg", - "width": 1024, - "height": 683, - "orientation": 0, - "taken_at": "2016-05-29 18:51:27", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 35.jpg", - "handle": "Rome - 35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2356.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-07 19:57:48", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2356.jpg", - "handle": "IMG_2356.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", - "width": 1200, - "height": 900, - "orientation": 180, - "taken_at": "2018-10-12 16:42:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", - "handle": "1ee95f9b7a854fc9afea3581c3ca3bd3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 21.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-29 15:59:47", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/Rome - 21.jpg", - "handle": "Rome - 21.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "width": 567, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", - "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_141929.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-02-12 14:19:29", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180212_141929.jpg", - "handle": "20180212_141929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0596.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2018-07-01 00:41:54", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0596.jpg", - "handle": "IMG_0596.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.37.09.jpg", - "width": 498, - "height": 1024, - "orientation": 0, - "taken_at": "2018-04-09 15:37:09", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.37.09.jpg", - "handle": "2018-04-09 15.37.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2632.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-12-09 10:13:50", - "camera": "iPhone XS Max", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_2632.jpg", - "handle": "IMG_2632.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.37.jpg", - "width": 1600, - "height": 900, - "orientation": 0, - "taken_at": "2016-04-08 12:05:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 12.05.37.jpg", - "handle": "2016-04-08 12.05.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7038.jpg", - "width": 1024, - "height": 1365, - "orientation": 0, - "taken_at": "2016-05-23 20:04:05", - "camera": "iPhone 6 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_7038.jpg", - "handle": "IMG_7038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.47.49.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-09 15:47:49", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-09 15.47.49.jpg", - "handle": "2018-04-09 15.47.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8337.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2018-03-18 01:07:56", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_8337.jpg", - "handle": "IMG_8337.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2018-11-04 22:58:04", - "camera": "N/A", - "camera_make": "N/A", - "filename": "sample-imagesets/700/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", - "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.56.23.jpg", - "width": 1200, - "height": 675, - "orientation": 0, - "taken_at": "2018-02-12 16:56:23", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-02-12 16.56.23.jpg", - "handle": "2018-02-12 16.56.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.34.37.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2016-04-08 11:34:37", - "camera": "SAMSUNG-SM-G928A", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2016-04-08 11.34.37.jpg", - "handle": "2016-04-08 11.34.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.58.30.jpg", - "width": 806, - "height": 392, - "orientation": 0, - "taken_at": "2018-04-10 12:58:30", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 12.58.30.jpg", - "handle": "2018-04-10 12.58.30.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180217_091648.jpg", - "width": 900, - "height": 1200, - "orientation": 0, - "taken_at": "2018-02-14 09:35:14", - "camera": "SM-G950U", - "camera_make": "samsung", - "filename": "sample-imagesets/700/20180217_091648.jpg", - "handle": "20180217_091648.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.55.50.jpg", - "width": 1024, - "height": 498, - "orientation": 0, - "taken_at": "2018-04-10 11:55:50", - "camera": "SM-G960U1", - "camera_make": "samsung", - "filename": "sample-imagesets/700/2018-04-10 11.55.50.jpg", - "handle": "2018-04-10 11.55.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2018-07-29 16:45:21", - "camera": "iPhone 8 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/700/IMG_0970.jpg", - "handle": "IMG_0970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3d3f907e1d76489084e871986a590474.jpg", - "width": 1200, - "height": 900, - "orientation": 0, - "taken_at": "2018-10-10 12:54:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/700/3d3f907e1d76489084e871986a590474.jpg", - "handle": "3d3f907e1d76489084e871986a590474.jpg" - } - ] + "700": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.26.22.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:26:22", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.26.22.jpg", + "handle": "2018-04-09 14.26.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1493.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 18:16:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1493.jpg", + "handle": "IMG_1493.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.10.05.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:10:05", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.10.05.jpg", + "handle": "2018-04-10 09.10.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.48.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:22:48", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.22.48.jpg", + "handle": "2018-04-10 09.22.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9030.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-18 12:02:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9030.jpg", + "handle": "IMG_9030.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9024.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 10:38:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9024.jpg", + "handle": "IMG_9024.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 20.13.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 20:13:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 20.13.10.jpg", + "handle": "2018-04-09 20.13.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1322.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-04 12:36:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1322.jpg", + "handle": "IMG_1322.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.14.42-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:14:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.14.42-2.jpg", + "handle": "2016-04-08 12.14.42-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.41.08.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:41:08", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.41.08.jpg", + "handle": "2018-04-10 12.41.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.11.50.jpg", + "handle": "2016-12-21 16.11.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2367.jpg", + "width": 1000, + "height": 930, + "orientation": 0, + "taken_at": "2018-11-07 20:30:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2367.jpg", + "handle": "IMG_2367.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2373.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:47:11", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2373.jpg", + "handle": "IMG_2373.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0564.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:12:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0564.jpg", + "handle": "IMG_0564.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.11.28.jpg", + "handle": "2018-04-09 15.11.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0558.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-30 23:24:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0558.jpg", + "handle": "IMG_0558.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0955.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0955.PNG", + "handle": "IMG_0955.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8925.jpg", + "width": 350, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 10:34:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8925.jpg", + "handle": "IMG_8925.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.54.35.jpg", + "handle": "2018-04-10 11.54.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8919.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 23:53:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8919.jpg", + "handle": "IMG_8919.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.53.14.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:53:14", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.53.14.jpg", + "handle": "2018-04-10 11.53.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.46.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:46", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.34.46.jpg", + "handle": "2018-04-09 13.34.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:15:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1040.jpg", + "handle": "IMG_1040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 20.02.41.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 20:02:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 20.02.41.jpg", + "handle": "2018-04-09 20.02.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0149.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:11:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0149.jpg", + "handle": "IMG_0149.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8529.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 12:09:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8529.jpg", + "handle": "IMG_8529.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0834.jpg", + "width": 1000, + "height": 750, + "orientation": 90, + "taken_at": "2018-07-18 05:53:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0834.jpg", + "handle": "IMG_0834.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.07.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:07", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.38.07.jpg", + "handle": "2016-04-08 11.38.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.39.jpg", + "width": 1600, + "height": 1580, + "orientation": 0, + "taken_at": "2016-12-21 16:10:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.10.39.jpg", + "handle": "2016-12-21 16.10.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.37.02.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:37:02", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 14.37.02.jpg", + "handle": "2016-12-21 14.37.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1041.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-04 15:15:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1041.jpg", + "handle": "IMG_1041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1900.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:50:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1900.jpg", + "handle": "IMG_1900.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1690.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:29:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1690.jpg", + "handle": "IMG_1690.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9019.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 08:09:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9019.jpg", + "handle": "IMG_9019.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.50.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 18.26.50.jpg", + "handle": "2018-04-08 18.26.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4298.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 12:18:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_4298.jpg", + "handle": "IMG_4298.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.18.41.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:18:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.18.41.jpg", + "handle": "2018-04-10 13.18.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.39.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.05.39.jpg", + "handle": "2016-04-08 12.05.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8477.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 15:10:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8477.jpg", + "handle": "IMG_8477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8311.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-13 18:43:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8311.jpg", + "handle": "IMG_8311.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.57.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.00.57.jpg", + "handle": "2018-04-10 12.00.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2370.jpg", + "width": 667, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 20:42:28", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2370.jpg", + "handle": "IMG_2370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG", + "handle": "7c8e1863-5dd9-4c89-8281-9f049f1481ce.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.13.42.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:13:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.13.42.jpg", + "handle": "2016-12-21 16.13.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9423.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-05-05 20:26:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9423.jpg", + "handle": "IMG_9423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 07.53.54.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 07:53:54", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 07.53.54.jpg", + "handle": "2018-04-10 07.53.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.10.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.15.10.jpg", + "handle": "2018-04-09 14.15.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.50.58.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:50:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.50.58.jpg", + "handle": "2018-04-09 13.50.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1282.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 15:20:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1282.jpg", + "handle": "IMG_1282.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.39.57.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:57", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_10.39.57.jpg", + "handle": "2016-08-24_10.39.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.59.30.jpg", + "width": 1024, + "height": 284, + "orientation": 0, + "taken_at": "2018-04-09 14:59:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.59.30.jpg", + "handle": "2018-04-09 14.59.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0605.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-07-01 01:12:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0605.jpg", + "handle": "IMG_0605.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_6249.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-01-20 20:16:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_6249.jpg", + "handle": "IMG_6249.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.37.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 16.48.37.jpg", + "handle": "2018-04-09 16.48.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0837.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 07:23:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0837.jpg", + "handle": "IMG_0837.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 19.18.52.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 19.18.52.jpg", + "handle": "2018-04-09 19.18.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1042.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-04 15:40:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1042.jpg", + "handle": "IMG_1042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8700.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 01:37:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8700.jpg", + "handle": "IMG_8700.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1b88f2b75e154aa986556dd97d79f892.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 19:49:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/1b88f2b75e154aa986556dd97d79f892.jpg", + "handle": "1b88f2b75e154aa986556dd97d79f892.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.54.23.jpg", + "handle": "2018-04-10 11.54.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.20.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:20:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.20.55.jpg", + "handle": "2018-04-09 14.20.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1693.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:03:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1693.jpg", + "handle": "IMG_1693.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8853.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:36", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8853.JPG", + "handle": "IMG_8853.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8847.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-12 18:38:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8847.jpg", + "handle": "IMG_8847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.23.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:23:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.23.55.jpg", + "handle": "2018-04-10 08.23.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9032.jpg", + "width": 1000, + "height": 378, + "orientation": 0, + "taken_at": "2018-04-18 14:49:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9032.jpg", + "handle": "IMG_9032.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8466.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-04-08 14:00:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8466.jpg", + "handle": "IMG_8466.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8300.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-03-13 13:32:19", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8300.jpg", + "handle": "IMG_8300.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8314.jpg", + "width": 1000, + "height": 534, + "orientation": 0, + "taken_at": "2018-03-13 18:46:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8314.jpg", + "handle": "IMG_8314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3527.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:59", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3527.jpg", + "handle": "IMG_3527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8328.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-16 07:36:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8328.jpg", + "handle": "IMG_8328.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1898.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 10:48:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1898.jpg", + "handle": "IMG_1898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0953.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0953.PNG", + "handle": "IMG_0953.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1126.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-12 16:08:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1126.jpg", + "handle": "IMG_1126.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0947.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0947.PNG", + "handle": "IMG_0947.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.19.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:19:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.19.10.jpg", + "handle": "2018-04-10 13.19.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8710.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:50:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8710.jpg", + "handle": "IMG_8710.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.20.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:20:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.20.09.jpg", + "handle": "2018-04-09 13.20.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0370.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-15 20:20:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0370.jpg", + "handle": "IMG_0370.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9426.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 20:27:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9426.jpg", + "handle": "IMG_9426.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.33.49.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:33:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.33.49.jpg", + "handle": "2018-04-09 13.33.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9195.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-27 14:38:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9195.jpg", + "handle": "IMG_9195.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3335.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:06:16", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3335.JPG", + "handle": "IMG_3335.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8506.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-09 03:10:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8506.jpg", + "handle": "IMG_8506.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2765.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-16 15:12:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2765.jpg", + "handle": "IMG_2765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.45.00.jpg", + "width": 1600, + "height": 1219, + "orientation": 0, + "taken_at": "2016-04-08 11:45:00", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.45.00.jpg", + "handle": "2016-04-08 11.45.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0172.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 15:47:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0172.jpg", + "handle": "IMG_0172.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3309.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:00:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3309.JPG", + "handle": "IMG_3309.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0166.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-05-26 15:07:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0166.jpg", + "handle": "IMG_0166.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG", + "handle": "f7a3a49a-e750-4d93-9cb6-e1ff8f733268.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.37.48.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:37:48", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.37.48.jpg", + "handle": "2018-04-09 14.37.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.39.53.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 10:39:53", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_10.39.53.jpg", + "handle": "2016-08-24_10.39.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "width": 1000, + "height": 749, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg", + "handle": "1368db1b-edab-4dcb-b863-b1b79eb22b9f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.26.29.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:29", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.26.29.jpg", + "handle": "2016-04-08 11.26.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0a0ad96ecd6c4fea99458cbeff2205aa.jpg", + "handle": "0a0ad96ecd6c4fea99458cbeff2205aa.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.56.22.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 10:56:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 10.56.22.jpg", + "handle": "2016-04-08 10.56.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2374.jpg", + "width": 1000, + "height": 605, + "orientation": 0, + "taken_at": "2018-11-07 21:00:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2374.jpg", + "handle": "IMG_2374.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0946.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0946.PNG", + "handle": "IMG_0946.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0952.PNG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0952.PNG", + "handle": "IMG_0952.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.38.jpg", + "width": 1600, + "height": 553, + "orientation": 0, + "taken_at": "2016-12-21 13:21:38", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 13.21.38.jpg", + "handle": "2016-12-21 13.21.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8842.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:22:25", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8842.JPG", + "handle": "IMG_8842.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3081.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 01:05:11", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3081.jpg", + "handle": "IMG_3081.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.51.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:51:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.51.20.jpg", + "handle": "2018-04-09 13.51.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0007.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 10:58:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0007.jpg", + "handle": "IMG_0007.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9023.jpg", + "width": 1000, + "height": 528, + "orientation": 0, + "taken_at": "2018-04-18 10:23:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9023.jpg", + "handle": "IMG_9023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3283.JPG", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 22:00:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3283.JPG", + "handle": "IMG_3283.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.29.33-2.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:29:33", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.29.33-2.jpg", + "handle": "2016-04-08 12.29.33-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3281.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-18 13:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3281.jpg", + "handle": "IMG_3281.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_12.37.03.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_12.37.03.jpg", + "handle": "2016-08-24_12.37.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.23.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.23.13.jpg", + "handle": "2016-04-08 12.23.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3524.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:50:31", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3524.jpg", + "handle": "IMG_3524.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1469.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-09-23 01:37:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1469.jpg", + "handle": "IMG_1469.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.55.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.11.55.jpg", + "handle": "2016-12-21 16.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.45.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:45", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.00.45.jpg", + "handle": "2018-04-10 12.00.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0944.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0944.PNG", + "handle": "IMG_0944.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0549.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:28:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0549.jpg", + "handle": "IMG_0549.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1131.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-08-12 16:24:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1131.jpg", + "handle": "IMG_1131.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/af95826c-1352-4265-96ee-608cfbabb6eb.JPG", + "handle": "af95826c-1352-4265-96ee-608cfbabb6eb.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.58.31.jpg", + "width": 1600, + "height": 874, + "orientation": 0, + "taken_at": "2016-04-08 10:58:31", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 10.58.31.jpg", + "handle": "2016-04-08 10.58.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0950.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0950.PNG", + "handle": "IMG_0950.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0561.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 23:35:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0561.jpg", + "handle": "IMG_0561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1904.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 10:52:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1904.jpg", + "handle": "IMG_1904.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.48.40.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-12-21 16:48:40", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.48.40.jpg", + "handle": "2016-12-21 16.48.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8707.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-11 11:32:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8707.jpg", + "handle": "IMG_8707.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2799.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:36:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2799.jpg", + "handle": "IMG_2799.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 10.03.57.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 10:03:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 10.03.57.jpg", + "handle": "2018-04-10 10.03.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG", + "handle": "093b4eab-3357-47ba-abdf-eba6e44af1f9.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 02:01:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2982.jpg", + "handle": "IMG_2982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3da28206c86a464abe2a05e7f7c78fdc.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:35:31", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3da28206c86a464abe2a05e7f7c78fdc.jpg", + "handle": "3da28206c86a464abe2a05e7f7c78fdc.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/27633029-8f0b-4916-b67b-037783008d24.JPG", + "width": 645, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/27633029-8f0b-4916-b67b-037783008d24.JPG", + "handle": "27633029-8f0b-4916-b67b-037783008d24.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/06a1d399-7556-4892-899a-d7f928fb6389.JPG", + "handle": "06a1d399-7556-4892-899a-d7f928fb6389.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0164.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-26 13:49:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0164.jpg", + "handle": "IMG_0164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9815.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 18:06:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9815.jpg", + "handle": "IMG_9815.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.09.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:09:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.09.59.jpg", + "handle": "2018-04-09 15.09.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:26:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9424.jpg", + "handle": "IMG_9424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0d24eb206c2340d493694967e24c127a.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 14:15:28", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0d24eb206c2340d493694967e24c127a.jpg", + "handle": "0d24eb206c2340d493694967e24c127a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.27.01.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:27:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 18.27.01.jpg", + "handle": "2018-04-08 18.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/78424b59-2708-416f-98d3-b5784226c712.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/78424b59-2708-416f-98d3-b5784226c712.JPG", + "handle": "78424b59-2708-416f-98d3-b5784226c712.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9395.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:39:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9395.JPG", + "handle": "IMG_9395.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 22:58:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG", + "handle": "D20670D9-5C95-46E4-B52E-A2078DFD705A.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1939.jpg", + "width": 1000, + "height": 563, + "orientation": 0, + "taken_at": "2018-10-20 11:30:19", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1939.jpg", + "handle": "IMG_1939.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1118.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-12 09:56:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1118.jpg", + "handle": "IMG_1118.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3fc7958294874242bda77b198d4c1d5e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:07:19", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3fc7958294874242bda77b198d4c1d5e.jpg", + "handle": "3fc7958294874242bda77b198d4c1d5e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0548.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:13:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0548.jpg", + "handle": "IMG_0548.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0945.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0945.PNG", + "handle": "IMG_0945.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.58.19.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:58:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.58.19.jpg", + "handle": "2018-04-10 11.58.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1695.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-10-14 23:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1695.jpg", + "handle": "IMG_1695.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9020.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-18 08:54:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9020.jpg", + "handle": "IMG_9020.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.41.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 18:26:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 18.26.41.jpg", + "handle": "2018-04-08 18.26.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-18 15:18:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9034.jpg", + "handle": "IMG_9034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9008.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-17 14:42:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9008.jpg", + "handle": "IMG_9008.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2853.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-23 15:31:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2853.jpg", + "handle": "IMG_2853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.06.55.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:06:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.06.55.jpg", + "handle": "2018-04-08 20.06.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2884.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 23:23:54", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2884.jpg", + "handle": "IMG_2884.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2648.jpg", + "width": 1000, + "height": 739, + "orientation": 0, + "taken_at": "2018-12-10 11:28:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2648.jpg", + "handle": "IMG_2648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 10:32:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-12 17:00:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8832.jpg", + "handle": "IMG_8832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.37.08.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:08", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.37.08.jpg", + "handle": "2016-04-08 11.37.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG", + "handle": "f8ee7d4a-d854-4af7-ac16-a2cca20eeb39.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2304.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:18:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2304.jpg", + "handle": "IMG_2304.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3a875c0152d54551a7aeafdd661f734a.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:46:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3a875c0152d54551a7aeafdd661f734a.jpg", + "handle": "3a875c0152d54551a7aeafdd661f734a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.56.46.jpg", + "width": 1600, + "height": 1275, + "orientation": 0, + "taken_at": "2016-04-08 10:56:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 10.56.46.jpg", + "handle": "2016-04-08 10.56.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.11.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:11:41", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_11.11.41.jpg", + "handle": "2016-08-24_11.11.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.03.14.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:03:14", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.03.14.jpg", + "handle": "2018-04-09 14.03.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.54.56.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:54:56", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.54.56.jpg", + "handle": "2018-04-10 11.54.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3185.JPG", + "width": 1000, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_3185.JPG", + "handle": "IMG_3185.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9325.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 12:38:25", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9325.jpg", + "handle": "IMG_9325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.40.59.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.40.59.jpg", + "handle": "2018-04-09 14.40.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.29.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.07.29.jpg", + "handle": "2018-04-08 20.07.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.42.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:42", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 16.48.42.jpg", + "handle": "2018-04-09 16.48.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0658.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:30:07", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0658.JPG", + "handle": "IMG_0658.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9654.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-07 15:19:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9654.jpg", + "handle": "IMG_9654.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8238.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:02:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8238.jpg", + "handle": "IMG_8238.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.07.34.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:07:34", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.07.34.jpg", + "handle": "2018-04-10 08.07.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.00.41.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:00:41", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.00.41.jpg", + "handle": "2018-04-10 13.00.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2259.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:38:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2259.jpg", + "handle": "IMG_2259.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2503.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:43:35", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2503.jpg", + "handle": "IMG_2503.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2271.jpg", + "width": 1000, + "height": 572, + "orientation": 0, + "taken_at": "2018-11-04 18:29:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2271.jpg", + "handle": "IMG_2271.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.53.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:53:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.53.18.jpg", + "handle": "2018-04-09 14.53.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.02.25.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:02:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 14.02.25.jpg", + "handle": "2016-12-21 14.02.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1963.jpg", + "width": 1000, + "height": 597, + "orientation": 0, + "taken_at": "2018-10-20 18:16:07", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1142.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-13 15:51:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1142.jpg", + "handle": "IMG_1142.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2477.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-17 19:33:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2477.jpg", + "handle": "IMG_2477.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG", + "handle": "c5980f8a-5eb0-4fc6-b36a-e2ff866120d6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1803.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 08:20:00", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1803.jpg", + "handle": "IMG_1803.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3db829a5007242efa3338a327b40a664.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 10:51:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3db829a5007242efa3338a327b40a664.jpg", + "handle": "3db829a5007242efa3338a327b40a664.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8416.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 17:40:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8416.jpg", + "handle": "IMG_8416.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1397.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1397.jpg", + "handle": "IMG_1397.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3b2065c7ae2345c1abb665cb5ac45952.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 12:50:18", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3b2065c7ae2345c1abb665cb5ac45952.jpg", + "handle": "3b2065c7ae2345c1abb665cb5ac45952.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9087.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:25:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9087.jpg", + "handle": "IMG_9087.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.26.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:27:26", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.27.26.jpg", + "handle": "2016-04-08 11.27.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2878.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:32:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2878.jpg", + "handle": "IMG_2878.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.01.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.19.01.jpg", + "handle": "2018-04-10 12.19.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2850.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-22 00:06:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2850.jpg", + "handle": "IMG_2850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-21 20:30:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2844.jpg", + "handle": "IMG_2844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1395.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:34:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1395.jpg", + "handle": "IMG_1395.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.08.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:08:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.08.53.jpg", + "handle": "2018-04-08 20.08.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-08 08:13:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8428.jpg", + "handle": "IMG_8428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.49.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.49.35.jpg", + "handle": "2018-04-09 15.49.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:54:21", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1424.jpg", + "handle": "IMG_1424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.00.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:22:00", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.22.00.jpg", + "handle": "2018-04-10 09.22.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1430.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-06 15:05:19", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1430.jpg", + "handle": "IMG_1430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0048.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:50:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0048.jpg", + "handle": "IMG_0048.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG", + "handle": "43accea9-65d4-4e37-a5c9-84e4bbfb2496.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.24.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:11:24", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.11.24.jpg", + "handle": "2016-12-21 16.11.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0289.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 20:35:00", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0289.JPG", + "handle": "IMG_0289.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1829.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.59.06.jpg", + "width": 1600, + "height": 407, + "orientation": 0, + "taken_at": "2016-08-24 11:59:06", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_11.59.06.jpg", + "handle": "2016-08-24_11.59.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8164.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-02-18 13:26:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8164.jpg", + "handle": "IMG_8164.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2449.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-17 13:39:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2449.jpg", + "handle": "IMG_2449.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8951.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-14 15:22:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8951.jpg", + "handle": "IMG_8951.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1791.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-18 18:13:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1791.jpg", + "handle": "IMG_1791.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2267.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-03 13:40:10", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2267.jpg", + "handle": "IMG_2267.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2273.jpg", + "width": 1000, + "height": 874, + "orientation": 0, + "taken_at": "2018-11-04 18:29:56", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2273.jpg", + "handle": "IMG_2273.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_09.56.23.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:23", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_09.56.23.jpg", + "handle": "2016-08-24_09.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2529.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:59:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2529.JPG", + "handle": "IMG_2529.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0458.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0458.jpg", + "handle": "IMG_0458.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9656.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-07 15:29:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9656.jpg", + "handle": "IMG_9656.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8561.jpg", + "width": 1000, + "height": 477, + "orientation": 0, + "taken_at": "2018-04-09 19:34:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8561.jpg", + "handle": "IMG_8561.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0897.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-01-09 23:22:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0897.jpg", + "handle": "IMG_0897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0840.jpg", + "width": 1000, + "height": 564, + "orientation": 0, + "taken_at": "2018-07-18 09:27:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0840.jpg", + "handle": "IMG_0840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.59.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:59", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.10.59.jpg", + "handle": "2016-12-21 16.10.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:39:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8987.jpg", + "handle": "IMG_8987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8944.jpg", + "width": 955, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-14 13:15:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8944.jpg", + "handle": "IMG_8944.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0897 2.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:47:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0897 2.jpg", + "handle": "IMG_0897 2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2474.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 19:27:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2474.JPG", + "handle": "IMG_2474.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1182.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-16 17:15:35", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1182.jpg", + "handle": "IMG_1182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "width": 1000, + "height": 740, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG", + "handle": "6577ddae-fbce-4c27-8c83-f8474dd8fa0e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8415.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 17:39:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8415.jpg", + "handle": "IMG_8415.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.47.19.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.47.19.jpg", + "handle": "2018-04-09 15.47.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0075.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:13:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0075.jpg", + "handle": "IMG_0075.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2879.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 21:07:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2879.jpg", + "handle": "IMG_2879.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG", + "handle": "f3e298c2-d8ef-44a2-ada2-a4bcd5b4b789.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9041.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-19 11:05:52", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9041.jpg", + "handle": "IMG_9041.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0065.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:56:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0065.jpg", + "handle": "IMG_0065.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.24.07.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:24:07", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.24.07.jpg", + "handle": "2018-04-10 08.24.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 18.26.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 18:26:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 18.26.20.jpg", + "handle": "2018-04-08 18.26.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3a44dac1a72b4a3ab27d516bbc273c66.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-12 12:42:00", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3a44dac1a72b4a3ab27d516bbc273c66.jpg", + "handle": "3a44dac1a72b4a3ab27d516bbc273c66.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.40.26.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:40:26", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.40.26.jpg", + "handle": "2018-04-10 08.40.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1810.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-10-19 08:40:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1810.JPG", + "handle": "IMG_1810.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1145.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-08-13 15:56:37", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1145.jpg", + "handle": "IMG_1145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1794.jpg", + "width": 1000, + "height": 613, + "orientation": 0, + "taken_at": "2018-10-18 18:16:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1794.jpg", + "handle": "IMG_1794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG", + "handle": "50617d67-a282-4bda-a57a-68e92c9ad0e8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.34.23.jpg", + "handle": "2018-04-09 13.34.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0844.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-07-18 09:37:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0844.jpg", + "handle": "IMG_0844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0893.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-21 15:45:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0893.jpg", + "handle": "IMG_0893.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1958.PNG", + "width": 462, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_1958.PNG", + "handle": "IMG_1958.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2c9bdcdf190840b6a11297c9269e3ce1.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 17:10:27", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2c9bdcdf190840b6a11297c9269e3ce1.jpg", + "handle": "2c9bdcdf190840b6a11297c9269e3ce1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0105.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:24:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0105.jpg", + "handle": "IMG_0105.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG", + "handle": "3fa8dfde-a316-4eee-b176-b1427c3c8ce8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:54:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9849.jpg", + "handle": "IMG_9849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4afc13934e0f4c66b67f3e3257c6876d.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:47:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/4afc13934e0f4c66b67f3e3257c6876d.jpg", + "handle": "4afc13934e0f4c66b67f3e3257c6876d.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1583.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-02 11:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1583.jpg", + "handle": "IMG_1583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7469.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-30 21:59:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7469.JPG", + "handle": "IMG_7469.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2b2277070ad84404a28809ed535993b7.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 13:27:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2b2277070ad84404a28809ed535993b7.jpg", + "handle": "2b2277070ad84404a28809ed535993b7.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8821.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:25:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8821.jpg", + "handle": "IMG_8821.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7290.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:43:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7290.jpg", + "handle": "IMG_7290.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9083.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-20 14:18:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9083.jpg", + "handle": "IMG_9083.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.18.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:52:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.52.18.jpg", + "handle": "2018-04-10 11.52.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.39.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:39", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.19.39.jpg", + "handle": "2018-04-10 12.19.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1393.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:33:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1393.jpg", + "handle": "IMG_1393.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.02.33.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:02:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.02.33.jpg", + "handle": "2018-04-10 19.02.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.02.27.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 19:02:27", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.02.27.jpg", + "handle": "2018-04-10 19.02.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1422.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:30", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1422.jpg", + "handle": "IMG_1422.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-13 07:27:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/D4415026-928A-4101-9971-A6847DAB2302.JPG", + "handle": "D4415026-928A-4101-9971-A6847DAB2302.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.00.40.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:00:40", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.00.40.jpg", + "handle": "2018-04-09 14.00.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2498.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-21 12:21:14", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2498.jpg", + "handle": "IMG_2498.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.09.42.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 09:09:42", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.09.42.jpg", + "handle": "2018-04-10 09.09.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4189.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:30:44", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_4189.JPG", + "handle": "IMG_4189.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.02.21.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:02:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 14.02.21.jpg", + "handle": "2016-12-21 14.02.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.36.38.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:36:38", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.36.38.jpg", + "handle": "2018-04-10 08.36.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3143.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 12:24:48", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3143.jpg", + "handle": "IMG_3143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.13.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:13:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.13.59.jpg", + "handle": "2018-04-08 20.13.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8758.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:00:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8758.jpg", + "handle": "IMG_8758.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2513.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:05:44", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2513.jpg", + "handle": "IMG_2513.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9320.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:09:10", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9320.jpg", + "handle": "IMG_9320.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3382.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:49", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3382.JPG", + "handle": "IMG_3382.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4c5eed1aaa94427983aa9d26429d6db9.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:19:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/4c5eed1aaa94427983aa9d26429d6db9.jpg", + "handle": "4c5eed1aaa94427983aa9d26429d6db9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9122.jpg", + "width": 1000, + "height": 432, + "orientation": 0, + "taken_at": "2018-04-22 12:56:39", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9122.jpg", + "handle": "IMG_9122.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0113.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:25:17", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0113.jpg", + "handle": "IMG_0113.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.59.13.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 10:59:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 10.59.13.jpg", + "handle": "2016-04-08 10.59.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8567.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:26:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8567.jpg", + "handle": "IMG_8567.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8759.jpg", + "width": 709, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-11 18:01:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8759.jpg", + "handle": "IMG_8759.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.33.58.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:33:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.33.58.jpg", + "handle": "2018-04-09 14.33.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/41aca768-0340-4eb2-8fdb-62ababdabd70.JPG", + "handle": "41aca768-0340-4eb2-8fdb-62ababdabd70.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.10-1.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:10", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.38.10-1.jpg", + "handle": "2016-04-08 11.38.10-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.42.09.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:42:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.42.09.jpg", + "handle": "2018-04-10 08.42.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2314.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:31:39", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2314.jpg", + "handle": "IMG_2314.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8163.jpg", + "width": 1000, + "height": 600, + "orientation": 0, + "taken_at": "2018-02-18 13:25:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8163.jpg", + "handle": "IMG_8163.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "width": 1000, + "height": 683, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG", + "handle": "c2d7f56b-938f-4d1c-9508-e1ce13732f8e.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8836.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:05:55", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8836.JPG", + "handle": "IMG_8836.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1423.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 13:50:53", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1423.jpg", + "handle": "IMG_1423.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.33.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 11:52:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.52.33.jpg", + "handle": "2018-04-10 11.52.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_12.37.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 12:37:49", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_12.37.49.jpg", + "handle": "2016-08-24_12.37.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1392.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:32:16", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1392.jpg", + "handle": "IMG_1392.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.17.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.17.jpg", + "handle": "2018-04-10 12.17.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0903.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-22 17:39:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0903.jpg", + "handle": "IMG_0903.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8436.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 12:13:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8436.jpg", + "handle": "IMG_8436.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.41.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:41:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.41.04.jpg", + "handle": "2018-04-09 14.41.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1360.jpg", + "width": 1000, + "height": 751, + "orientation": 180, + "taken_at": "2018-09-08 21:02:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1360.jpg", + "handle": "IMG_1360.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180213_102748.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 11:27:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180213_102748.jpg", + "handle": "20180213_102748.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/4cade4ee4ba7484a807265680e221ca3.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/4cade4ee4ba7484a807265680e221ca3.jpg", + "handle": "4cade4ee4ba7484a807265680e221ca3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2480.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-11-17 19:39:34", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2480.jpg", + "handle": "IMG_2480.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2494.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 12:21:08", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2494.jpg", + "handle": "IMG_2494.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.20.06.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 11.20.06.jpg", + "handle": "2018-02-13 11.20.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8807.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-12 13:10:57", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8807.jpg", + "handle": "IMG_8807.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2325.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:34:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2325.jpg", + "handle": "IMG_2325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_065950.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 06:59:50", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180214_065950.jpg", + "handle": "20180214_065950.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.57.35.jpg", + "width": 1600, + "height": 605, + "orientation": 0, + "taken_at": "2016-08-24 11:57:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_11.57.35.jpg", + "handle": "2016-08-24_11.57.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1604.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-10-06 01:08:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1604.jpg", + "handle": "IMG_1604.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8967.jpg", + "width": 1000, + "height": 339, + "orientation": 0, + "taken_at": "2018-04-15 17:57:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8967.jpg", + "handle": "IMG_8967.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-20 12:23:12", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.27.08.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:27:08", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.27.08.jpg", + "handle": "2018-04-09 14.27.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180218_151913.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-13 10:16:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180218_151913.jpg", + "handle": "20180218_151913.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.01.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:01:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.01.18.jpg", + "handle": "2018-04-09 14.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.20.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:07:20", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.07.20.jpg", + "handle": "2018-04-08 20.07.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_151354.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 15:13:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180212_151354.jpg", + "handle": "20180212_151354.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2523.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-21 22:58:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2523.JPG", + "handle": "IMG_2523.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05824.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:08:38", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05824.jpg", + "handle": "DSC05824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9847.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:26", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9847.jpg", + "handle": "IMG_9847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.46.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:46", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.10.46.jpg", + "handle": "2016-12-21 16.10.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9112.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:38:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9112.jpg", + "handle": "IMG_9112.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2047.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-01-20 11:48:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2047.jpg", + "handle": "IMG_2047.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3358.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:09:20", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3358.JPG", + "handle": "IMG_3358.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.44.35.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:44:35", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.44.35.jpg", + "handle": "2018-04-09 14.44.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.44.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:44", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.15.44.jpg", + "handle": "2018-04-09 14.15.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.46.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:46:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.46.53.jpg", + "handle": "2018-04-09 15.46.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05825.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:13:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05825.jpg", + "handle": "DSC05825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_09.56.14.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-08-24 09:56:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_09.56.14.jpg", + "handle": "2016-08-24_09.56.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8972.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-15 19:59:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8972.jpg", + "handle": "IMG_8972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0ad2395a550b4995882933c83ad3925f.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:07:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0ad2395a550b4995882933c83ad3925f.jpg", + "handle": "0ad2395a550b4995882933c83ad3925f.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2456.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:53:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2456.JPG", + "handle": "IMG_2456.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.03.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:03", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.00.03.jpg", + "handle": "2018-04-10 12.00.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/db81d71e-c642-499b-9525-17154693cf21.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/db81d71e-c642-499b-9525-17154693cf21.JPG", + "handle": "db81d71e-c642-499b-9525-17154693cf21.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.37.14.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:37:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.37.14.jpg", + "handle": "2016-04-08 11.37.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.17.31.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.17.31.jpg", + "handle": "2018-02-13 10.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.18.29.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:18:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.18.29.jpg", + "handle": "2018-04-10 13.18.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.52.03.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:52:03", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.52.03.jpg", + "handle": "2018-04-10 11.52.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2871.jpg", + "width": 1000, + "height": 520, + "orientation": 0, + "taken_at": "2018-12-23 17:39:04", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2871.jpg", + "handle": "IMG_2871.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.31.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:31", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.31.jpg", + "handle": "2018-04-10 12.17.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-23 16:39:17", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2865.jpg", + "handle": "IMG_2865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9071.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-19 17:01:04", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9071.jpg", + "handle": "IMG_9071.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05774.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 10:17:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05774.jpg", + "handle": "DSC05774.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.46.56.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 14:46:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 14.46.56.jpg", + "handle": "2016-12-21 14.46.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 14.46.42.jpg", + "width": 944, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 14:46:42", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 14.46.42.jpg", + "handle": "2016-12-21 14.46.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.28.02.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.28.02.jpg", + "handle": "2018-02-13 10.28.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.39.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:39", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.11.39.jpg", + "handle": "2016-12-21 16.11.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2332.jpg", + "width": 939, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:41:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2332.jpg", + "handle": "IMG_2332.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2454.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 18:47:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2454.jpg", + "handle": "IMG_2454.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.11.55.jpg", + "handle": "2018-04-09 15.11.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2468.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 18:56:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2468.JPG", + "handle": "IMG_2468.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8970.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-15 19:58:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8970.jpg", + "handle": "IMG_8970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.50.30.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:50:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.50.30.jpg", + "handle": "2018-04-10 12.50.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 14.13.28.jpg", + "width": 675, + "height": 624, + "orientation": 0, + "taken_at": "2018-02-12 14:33:28", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 14.13.28.jpg", + "handle": "2018-02-12 14.13.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0451.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-23 21:51:46", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0451.jpg", + "handle": "IMG_0451.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.07.37.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-08 20:07:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.07.37.jpg", + "handle": "2018-04-08 20.07.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2520.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-21 21:10:36", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2520.jpg", + "handle": "IMG_2520.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1983.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-21 07:40:30", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1983.jpg", + "handle": "IMG_1983.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8743.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8743.jpg", + "handle": "IMG_8743.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9850.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-13 07:55:44", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9850.jpg", + "handle": "IMG_9850.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8596.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-10 12:59:36", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8596.jpg", + "handle": "IMG_8596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9844.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:54:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9844.jpg", + "handle": "IMG_9844.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.47.02.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-13 10:47:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.47.02.jpg", + "handle": "2018-02-13 10.47.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-15 18.15.01.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-15 18:15:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-15 18.15.01.jpg", + "handle": "2018-02-15 18.15.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:14:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0fc25a17b7bc4d4db9ab46d416c0a18e.jpg", + "handle": "0fc25a17b7bc4d4db9ab46d416c0a18e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9138.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 13:51:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9138.jpg", + "handle": "IMG_9138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1202.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-18 12:41:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1202.jpg", + "handle": "IMG_1202.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5064.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 14:34:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_5064.jpg", + "handle": "IMG_5064.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9104.jpg", + "width": 585, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-21 18:21:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9104.jpg", + "handle": "IMG_9104.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180218_152029.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-14 11:10:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180218_152029.jpg", + "handle": "20180218_152029.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180213_110206.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:02:06", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180213_110206.jpg", + "handle": "20180213_110206.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.10.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:10:50", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.10.50.jpg", + "handle": "2016-12-21 16.10.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0861.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 10:54:33", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0861.jpg", + "handle": "IMG_0861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9851.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-13 07:55:49", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9851.jpg", + "handle": "IMG_9851.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0849.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 10:26:30", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0849.jpg", + "handle": "IMG_0849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.15.53.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:15:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.15.53.jpg", + "handle": "2018-04-09 14.15.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1174.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-16 16:54:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1174.jpg", + "handle": "IMG_1174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2441.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:37:16", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2441.jpg", + "handle": "IMG_2441.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_071933.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-12 16:54:10", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180214_071933.jpg", + "handle": "20180214_071933.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.00.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:00:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.00.28.jpg", + "handle": "2018-04-10 12.00.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8839.JPG", + "width": 751, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 13:29:06", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8839.JPG", + "handle": "IMG_8839.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.01.37.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:01:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.01.37.jpg", + "handle": "2018-04-10 13.01.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8434.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 11:21:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8434.jpg", + "handle": "IMG_8434.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1404.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-22 12:54:14", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1404.jpg", + "handle": "IMG_1404.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.23.17.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:23:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.23.17.jpg", + "handle": "2018-04-10 08.23.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "width": 1000, + "height": 940, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG", + "handle": "7f4273d2-3f99-488f-934e-40cd9c2f14a8.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8408.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-07 03:11:05", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8408.jpg", + "handle": "IMG_8408.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.24.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:24", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.24.jpg", + "handle": "2018-04-10 12.17.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.04.58.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:04:58", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.04.58.jpg", + "handle": "2018-04-10 12.04.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0097.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:19:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0097.jpg", + "handle": "IMG_0097.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1400.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:48:08", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1400.jpg", + "handle": "IMG_1400.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8424.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-07 19:16:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8424.jpg", + "handle": "IMG_8424.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8430.jpg", + "width": 1000, + "height": 842, + "orientation": 0, + "taken_at": "2018-04-08 08:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8430.jpg", + "handle": "IMG_8430.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9712.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-21 19:17:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9712.jpg", + "handle": "IMG_9712.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/FullSizeRender 4.jpg", + "width": 3264, + "height": 2448, + "orientation": 0, + "taken_at": "2017-01-06 08:13:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/FullSizeRender 4.jpg", + "handle": "FullSizeRender 4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.01.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 13:01:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.01.33.jpg", + "handle": "2018-04-10 13.01.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2f9b81ea174943ff8370f7a97b77f3a4.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:08:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2f9b81ea174943ff8370f7a97b77f3a4.jpg", + "handle": "2f9b81ea174943ff8370f7a97b77f3a4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.20.02.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:20:02", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.20.02.jpg", + "handle": "2018-04-10 13.20.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0246.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0246.jpg", + "handle": "IMG_0246.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1945.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-20 11:35:40", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1945.jpg", + "handle": "IMG_1945.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.38.37.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:38:37", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.38.37.jpg", + "handle": "2018-04-10 08.38.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9316.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 11:08:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9316.jpg", + "handle": "IMG_9316.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.49.28.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:49:28", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.49.28.jpg", + "handle": "2018-04-10 12.49.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3377.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:13:04", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3377.JPG", + "handle": "IMG_3377.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2727.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:52:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2727.jpg", + "handle": "IMG_2727.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0125.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-06 11:03:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0125.jpg", + "handle": "IMG_0125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2054.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-04 12:42:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2054.jpg", + "handle": "IMG_2054.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0119.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 12:40:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0119.jpg", + "handle": "IMG_0119.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00595.jpg", + "width": 1200, + "height": 607, + "orientation": 0, + "taken_at": "2018-02-18 08:11:16", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00595.jpg", + "handle": "DSC00595.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.27.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:28:27", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.28.27.jpg", + "handle": "2018-04-10 08.28.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2ffe925ead354f99b8ec9118747f55d6.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 15:56:17", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2ffe925ead354f99b8ec9118747f55d6.jpg", + "handle": "2ffe925ead354f99b8ec9118747f55d6.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.38.43.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:38:43", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.38.43.jpg", + "handle": "2016-04-08 11.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0870.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-18 11:11:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0870.jpg", + "handle": "IMG_0870.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.40.43.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:40:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.40.43.jpg", + "handle": "2018-04-09 14.40.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1039.jpg", + "width": 1000, + "height": 226, + "orientation": 0, + "taken_at": "2018-08-04 14:35:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1039.jpg", + "handle": "IMG_1039.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1603.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-06 00:19:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1603.jpg", + "handle": "IMG_1603.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.20.01.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:20:01", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 11.20.01.jpg", + "handle": "2018-02-13 11.20.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.11.15.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-12-21 16:11:15", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.11.15.jpg", + "handle": "2016-12-21 16.11.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/a0c30357-ba34-4836-9fdf-be33fe543602.JPG", + "handle": "a0c30357-ba34-4836-9fdf-be33fe543602.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8431.jpg", + "width": 749, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-08 09:07:50", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8431.jpg", + "handle": "IMG_8431.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.49.04.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:49:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.49.04.jpg", + "handle": "2018-04-09 15.49.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06084.jpg", + "width": 1200, + "height": 810, + "orientation": 0, + "taken_at": "2018-02-17 16:24:20", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06084.jpg", + "handle": "DSC06084.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0092.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:17:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0092.jpg", + "handle": "IMG_0092.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.03.jpg", + "width": 766, + "height": 1337, + "orientation": 0, + "taken_at": "2016-04-08 11:27:03", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.27.03.jpg", + "handle": "2016-04-08 11.27.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00378.jpg", + "width": 1177, + "height": 800, + "orientation": 0, + "taken_at": "2018-02-17 16:44:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00378.jpg", + "handle": "DSC00378.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2849.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-22 00:06:06", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2849.jpg", + "handle": "IMG_2849.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1398.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-22 12:47:42", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1398.jpg", + "handle": "IMG_1398.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 16.12.52.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 16:12:52", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 16.12.52.jpg", + "handle": "2016-12-21 16.12.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2877.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-24 20:06:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2877.jpg", + "handle": "IMG_2877.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.23.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:23", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.23.jpg", + "handle": "2018-04-10 12.17.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06045.jpg", + "width": 1200, + "height": 847, + "orientation": 0, + "taken_at": "2018-02-17 16:23:46", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06045.jpg", + "handle": "DSC06045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-02-04 10:34:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_5856.jpg", + "handle": "IMG_5856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.27.01.jpg", + "width": 1600, + "height": 584, + "orientation": 0, + "taken_at": "2016-04-08 11:27:01", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.27.01.jpg", + "handle": "2016-04-08 11.27.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06086.jpg", + "width": 1200, + "height": 821, + "orientation": 0, + "taken_at": "2018-02-17 16:24:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06086.jpg", + "handle": "DSC06086.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2888.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-24 23:30:46", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2888.jpg", + "handle": "IMG_2888.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1198.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-20 07:12:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1198.jpg", + "handle": "IMG_1198.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2308.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 19:19:37", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2308.jpg", + "handle": "IMG_2308.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180215_070918.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:34:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180215_070918.jpg", + "handle": "20180215_070918.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.09.21.jpg", + "width": 1199, + "height": 573, + "orientation": 0, + "taken_at": "2018-02-13 10:09:21", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.09.21.jpg", + "handle": "2018-02-13 10.09.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0251.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 02:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0251.jpg", + "handle": "IMG_0251.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.03.52.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 19:03:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.03.52.jpg", + "handle": "2018-04-10 19.03.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.40.25.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:40:25", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.40.25.jpg", + "handle": "2018-04-09 13.40.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG", + "handle": "d9a32ad7-8a6e-4ec5-a05f-f92365b56724.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8745.jpg", + "handle": "IMG_8745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3176.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_3176.JPG", + "handle": "IMG_3176.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2268.jpg", + "width": 1000, + "height": 407, + "orientation": 0, + "taken_at": "2018-11-03 21:25:29", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2268.jpg", + "handle": "IMG_2268.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05835.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:46:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05835.jpg", + "handle": "DSC05835.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9315.jpg", + "width": 682, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 09:49:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9315.jpg", + "handle": "IMG_9315.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0457.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-24 17:44:03", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0457.jpg", + "handle": "IMG_0457.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 13:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.34.15.jpg", + "handle": "2018-04-09 13.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06125.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:27:19", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06125.jpg", + "handle": "DSC06125.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9856.jpg", + "width": 1000, + "height": 668, + "orientation": 0, + "taken_at": "2018-05-13 08:00:41", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_9856.jpg", + "handle": "IMG_9856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0872.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-18 11:12:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0872.jpg", + "handle": "IMG_0872.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.01.53.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:01:53", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.01.53.jpg", + "handle": "2018-04-10 12.01.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.59.32.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 11:59:32", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.59.32.jpg", + "handle": "2018-04-10 11.59.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00597.jpg", + "width": 1198, + "height": 599, + "orientation": 0, + "taken_at": "2018-02-18 08:18:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00597.jpg", + "handle": "DSC00597.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8547.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 18:05:28", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8547.jpg", + "handle": "IMG_8547.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0127.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 12:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0127.jpg", + "handle": "IMG_0127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2730.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-15 10:53:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2730.jpg", + "handle": "IMG_2730.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0132.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 13:10:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0132.jpg", + "handle": "IMG_0132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3349.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:07:40", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3349.JPG", + "handle": "IMG_3349.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 19:26:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8552.jpg", + "handle": "IMG_8552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00596.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 08:11:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00596.jpg", + "handle": "DSC00596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05808.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-15 18:01:33", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05808.jpg", + "handle": "DSC05808.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8988.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-16 19:40:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8988.jpg", + "handle": "IMG_8988.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8744.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-11 17:27:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8744.jpg", + "handle": "IMG_8744.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2269.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-04 18:28:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2269.jpg", + "handle": "IMG_2269.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00794.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:51:09", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00794.jpg", + "handle": "DSC00794.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 14:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8963.jpg", + "handle": "IMG_8963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-11-04 23:12:42", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG", + "handle": "D79F800A-C2AC-44DB-8A31-3FF0F83A9C58.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0244.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-09 00:28:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0244.jpg", + "handle": "IMG_0244.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9512.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-01-22 07:11:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9512.jpg", + "handle": "IMG_9512.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2321.jpg", + "width": 1000, + "height": 663, + "orientation": 0, + "taken_at": "2018-11-07 19:33:01", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2321.jpg", + "handle": "IMG_2321.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1827.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-10-19 11:01:33", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1827.jpg", + "handle": "IMG_1827.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3942.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-02-24 23:03:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3942.jpg", + "handle": "IMG_3942.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2889.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-24 23:31:41", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2889.jpg", + "handle": "IMG_2889.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.19.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:19:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.19.33.jpg", + "handle": "2018-04-10 12.19.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.04.48.jpg", + "width": 1200, + "height": 480, + "orientation": 0, + "taken_at": "2018-02-12 16:04:48", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 16.04.48.jpg", + "handle": "2018-02-12 16.04.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180214_070127.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:34:17", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180214_070127.jpg", + "handle": "20180214_070127.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG", + "handle": "48ce74d2-6feb-42a8-b21d-45d8fe058b92.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2b47b9cb60944a69b8d9a44f49e0246e.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 11:55:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2b47b9cb60944a69b8d9a44f49e0246e.jpg", + "handle": "2b47b9cb60944a69b8d9a44f49e0246e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG", + "handle": "7d12832b-eb88-4b36-b0e5-32edf62d6ec6.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0035.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:00:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0035.jpg", + "handle": "IMG_0035.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8455.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-08 13:47:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8455.jpg", + "handle": "IMG_8455.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1317.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-08-26 12:08:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1317.jpg", + "handle": "IMG_1317.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/d4501042-a743-4fa7-bfda-e013d740392b.JPG", + "handle": "d4501042-a743-4fa7-bfda-e013d740392b.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0592.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:47", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0592.jpg", + "handle": "IMG_0592.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1840.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:04:15", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1840.jpg", + "handle": "IMG_1840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.29.56.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:29:56", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.29.56.jpg", + "handle": "2016-04-08 12.29.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1129.jpg", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-08-12 16:15:09", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_1129.jpg", + "handle": "IMG_1129.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2346.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-07 19:56:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2346.JPG", + "handle": "IMG_2346.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0551.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 21:30:34", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0551.jpg", + "handle": "IMG_0551.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "width": 659, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/3454e462-65eb-44a0-9703-090367c6e6ba.JPG", + "handle": "3454e462-65eb-44a0-9703-090367c6e6ba.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0545.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-30 20:37:59", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0545.jpg", + "handle": "IMG_0545.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180216_194002.jpg", + "width": 1199, + "height": 693, + "orientation": 0, + "taken_at": "2018-02-16 19:40:02", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180216_194002.jpg", + "handle": "20180216_194002.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05660.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:16:54", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05660.jpg", + "handle": "DSC05660.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-05 18:33:43", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1049.jpg", + "handle": "IMG_1049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9824.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9824.jpg", + "handle": "IMG_9824.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 19.18.59.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 19:18:59", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 19.18.59.jpg", + "handle": "2018-04-09 19.18.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9171.jpg", + "width": 1000, + "height": 645, + "orientation": 0, + "taken_at": "2018-04-27 13:55:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9171.jpg", + "handle": "IMG_9171.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7174.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-24 21:12:49", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7174.jpg", + "handle": "IMG_7174.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.43.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:28:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.28.43.jpg", + "handle": "2018-04-10 08.28.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_11.58.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 11:58:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_11.58.13.jpg", + "handle": "2016-08-24_11.58.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1277.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-08-19 13:27:48", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1277.jpg", + "handle": "IMG_1277.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2964.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-12-30 17:11:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2964.jpg", + "handle": "IMG_2964.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.01.22.jpg", + "width": 546, + "height": 985, + "orientation": 0, + "taken_at": "2018-02-12 16:01:22", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 16.01.22.jpg", + "handle": "2018-02-12 16.01.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9825.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:32", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9825.jpg", + "handle": "IMG_9825.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9428.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-05 20:27:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9428.jpg", + "handle": "IMG_9428.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0381.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:47:27", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0381.jpg", + "handle": "IMG_0381.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0578.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:28:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0578.jpg", + "handle": "IMG_0578.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3071.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_3071.JPG", + "handle": "IMG_3071.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 18.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:50:43", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 18.jpg", + "handle": "Rome - 18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2353.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-07 19:57:26", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2353.jpg", + "handle": "IMG_2353.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0949.PNG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_0949.PNG", + "handle": "IMG_0949.PNG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 30.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:53:48", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 30.jpg", + "handle": "Rome - 30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2435.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-17 13:06:32", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2435.jpg", + "handle": "IMG_2435.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2421.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-17 10:13:24", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2421.JPG", + "handle": "IMG_2421.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0236.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:26:58", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0236.jpg", + "handle": "IMG_0236.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 24.jpg", + "width": 1024, + "height": 1941, + "orientation": 0, + "taken_at": "2016-05-29 16:24:08", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 24.jpg", + "handle": "Rome - 24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05729.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:29:47", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05729.jpg", + "handle": "DSC05729.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1841.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:21", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1841.jpg", + "handle": "IMG_1841.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2390.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 22:04:25", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2390.jpg", + "handle": "IMG_2390.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8865.jpg", + "width": 756, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 19:57:41", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8865.jpg", + "handle": "IMG_8865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.11.44.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 11:11:44", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 11.11.44.jpg", + "handle": "2018-02-13 11.11.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2637.jpg", + "width": 650, + "height": 1000, + "orientation": 0, + "taken_at": "2018-12-09 22:18:45", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2637.jpg", + "handle": "IMG_2637.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.23.22.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 12:23:22", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.23.22.jpg", + "handle": "2016-04-08 12.23.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG", + "handle": "a837e547-d1c2-4ca1-9cdd-5acfd6a49626.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 9.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-27 13:41:24", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 9.jpg", + "handle": "Rome - 9.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2a5a34cc6a4146d6952796012283dad2.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 19:47:41", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2a5a34cc6a4146d6952796012283dad2.jpg", + "handle": "2a5a34cc6a4146d6952796012283dad2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.52.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:52", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.52.jpg", + "handle": "2018-04-10 12.17.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8318.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 09:39:08", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8318.jpg", + "handle": "IMG_8318.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0036.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 11:03:13", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0036.jpg", + "handle": "IMG_0036.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7017.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-23 19:47:52", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7017.jpg", + "handle": "IMG_7017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3517.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-05-05 19:50:19", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3517.jpg", + "handle": "IMG_3517.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1843.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-19 18:05:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1843.jpg", + "handle": "IMG_1843.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05703.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:46:07", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05703.jpg", + "handle": "DSC05703.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.35.jpg", + "width": 1600, + "height": 500, + "orientation": 0, + "taken_at": "2016-12-21 13:21:35", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 13.21.35.jpg", + "handle": "2016-12-21 13.21.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0c436d77385f495690654d43b2e5eb24.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 15:32:29", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0c436d77385f495690654d43b2e5eb24.jpg", + "handle": "0c436d77385f495690654d43b2e5eb24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3ac6c244fbbe425da4be0615be87c6c3.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-11 14:33:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3ac6c244fbbe425da4be0615be87c6c3.jpg", + "handle": "3ac6c244fbbe425da4be0615be87c6c3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 32.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:23", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 32.jpg", + "handle": "Rome - 32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0546.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 21:09:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0546.jpg", + "handle": "IMG_0546.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9204.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-27 14:50:09", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9204.jpg", + "handle": "IMG_9204.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/03c4ba06d9544d718182d545d2c091d0.jpg", + "width": 1200, + "height": 674, + "orientation": 0, + "taken_at": "2018-10-10 20:14:47", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/03c4ba06d9544d718182d545d2c091d0.jpg", + "handle": "03c4ba06d9544d718182d545d2c091d0.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0552.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-06-30 23:14:14", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0552.jpg", + "handle": "IMG_0552.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 26.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:38:55", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 26.jpg", + "handle": "Rome - 26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0234.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-08 20:25:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0234.jpg", + "handle": "IMG_0234.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8898.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-04-13 20:18:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8898.jpg", + "handle": "IMG_8898.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG", + "handle": "b12bd8fd-0978-495e-a068-562dbc9f2f23.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 17.17.27.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:27", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 17.17.27.jpg", + "handle": "2018-02-12 17.17.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.25.55.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:25:55", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.25.55.jpg", + "handle": "2016-04-08 12.25.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0383.jpg", + "handle": "IMG_0383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2fb74866c5cc46fab8cd366a70a48b73.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 15:41:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/2fb74866c5cc46fab8cd366a70a48b73.jpg", + "handle": "2fb74866c5cc46fab8cd366a70a48b73.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2543.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:35:22", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2543.JPG", + "handle": "IMG_2543.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05688.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-13 11:32:57", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05688.jpg", + "handle": "DSC05688.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0181.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 16:00:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0181.jpg", + "handle": "IMG_0181.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06154.jpg", + "width": 1200, + "height": 835, + "orientation": 0, + "taken_at": "2018-02-17 16:44:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06154.jpg", + "handle": "DSC06154.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9199.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-27 14:46:53", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9199.jpg", + "handle": "IMG_9199.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-02 16:19:06", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0624.jpg", + "handle": "IMG_0624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.02.29.jpg", + "width": 1024, + "height": 331, + "orientation": 0, + "taken_at": "2018-04-09 14:02:29", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.02.29.jpg", + "handle": "2018-04-09 14.02.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_4319.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-01-11 06:42:00", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_4319.jpg", + "handle": "IMG_4319.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 07.05.30.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 07:05:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 07.05.30.jpg", + "handle": "2018-04-10 07.05.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06182.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-18 07:54:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06182.jpg", + "handle": "DSC06182.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0157.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-26 13:47:24", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0157.jpg", + "handle": "IMG_0157.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2973.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-31 01:47:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2973.jpg", + "handle": "IMG_2973.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2797.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:33:22", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2797.jpg", + "handle": "IMG_2797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-08-24_10.40.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2016-08-24 10:40:13", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-08-24_10.40.13.jpg", + "handle": "2016-08-24_10.40.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9359.jpg", + "width": 1000, + "height": 589, + "orientation": 0, + "taken_at": "2018-05-05 18:37:45", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9359.jpg", + "handle": "IMG_9359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.12.05.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:12:05", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.12.05.jpg", + "handle": "2018-04-09 14.12.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 23.27.14.jpg", + "width": 1489, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 15:27:14", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 23.27.14.jpg", + "handle": "2016-04-08 23.27.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 13.20.04.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 13:20:04", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 13.20.04.jpg", + "handle": "2018-04-09 13.20.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05892.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:10:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05892.jpg", + "handle": "DSC05892.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1cb7e311f4f14ef383969959677e626e.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 14:15:13", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/1cb7e311f4f14ef383969959677e626e.jpg", + "handle": "1cb7e311f4f14ef383969959677e626e.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.04.17.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:04:17", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.04.17.jpg", + "handle": "2018-04-10 19.04.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0382.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-06-17 13:47:38", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0382.jpg", + "handle": "IMG_0382.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.34.15.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 14:34:15", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.34.15.jpg", + "handle": "2018-04-09 14.34.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3d90ea859f8d40eebdc30a33e3421389.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-11 16:15:36", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3d90ea859f8d40eebdc30a33e3421389.jpg", + "handle": "3d90ea859f8d40eebdc30a33e3421389.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3066.JPG", + "width": 562, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/IMG_3066.JPG", + "handle": "IMG_3066.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8133.JPG", + "width": 1000, + "height": 562, + "orientation": 0, + "taken_at": "2018-02-04 10:38:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8133.JPG", + "handle": "IMG_8133.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 27.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 16:39:18", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 27.jpg", + "handle": "Rome - 27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 33.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:12:33", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 33.jpg", + "handle": "Rome - 33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.29.01.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:29:01", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.29.01.jpg", + "handle": "2018-04-10 08.29.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3099.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-09 21:39:14", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3099.jpg", + "handle": "IMG_3099.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8325.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-14 13:55:18", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8325.jpg", + "handle": "IMG_8325.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0037.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-26 11:09:55", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0037.jpg", + "handle": "IMG_0037.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9013.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-04-15 17:48:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9013.JPG", + "handle": "IMG_9013.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.17.45.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:17:45", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.17.45.jpg", + "handle": "2018-02-13 10.17.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.25.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:25", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.05.25.jpg", + "handle": "2016-04-08 12.05.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.58.36.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:58:36", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.58.36.jpg", + "handle": "2018-04-10 12.58.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.17.57.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:17:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.17.57.jpg", + "handle": "2018-04-10 12.17.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8490.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-08 17:36:01", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8490.jpg", + "handle": "IMG_8490.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 12:43:42", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg", + "handle": "3c4ee700c1ab4be7b2d0d50fe557d4b4.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9995.JPG", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 20:34:35", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9995.JPG", + "handle": "IMG_9995.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.21.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2016-04-08 12:05:21", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.05.21.jpg", + "handle": "2016-04-08 12.05.21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9003.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-04-17 14:01:16", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9003.jpg", + "handle": "IMG_9003.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2624.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-08 00:18:58", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2624.jpg", + "handle": "IMG_2624.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1baa005e07454acebdcc98e870a631f1.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:39:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/1baa005e07454acebdcc98e870a631f1.jpg", + "handle": "1baa005e07454acebdcc98e870a631f1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.00.59.jpg", + "width": 808, + "height": 1200, + "orientation": 90, + "taken_at": "2018-02-12 16:00:59", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 16.00.59.jpg", + "handle": "2018-02-12 16.00.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 10.28.58.jpg", + "width": 675, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-13 10:28:58", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 10.28.58.jpg", + "handle": "2018-02-13 10.28.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.06.16.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:06:16", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.06.16.jpg", + "handle": "2018-04-10 19.06.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2383.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-07 21:01:57", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2383.jpg", + "handle": "IMG_2383.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC00681.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:57:55", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC00681.jpg", + "handle": "DSC00681.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9201.jpg", + "width": 1000, + "height": 751, + "orientation": 0, + "taken_at": "2018-04-27 14:48:42", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9201.jpg", + "handle": "IMG_9201.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 37.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:37:10", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 37.jpg", + "handle": "Rome - 37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0225.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:19:51", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0225.jpg", + "handle": "IMG_0225.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 23.jpg", + "width": 1024, + "height": 677, + "orientation": 0, + "taken_at": "2016-05-29 16:12:45", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 23.jpg", + "handle": "Rome - 23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.11.33.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:11:33", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.11.33.jpg", + "handle": "2018-04-09 15.11.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 19.04.07.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 19:04:07", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 19.04.07.jpg", + "handle": "2018-04-10 19.04.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2585.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-11-28 13:26:09", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2585.jpg", + "handle": "IMG_2585.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0fc2f67adef44881b29ff09b8889891a.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 11:22:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0fc2f67adef44881b29ff09b8889891a.jpg", + "handle": "0fc2f67adef44881b29ff09b8889891a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2963.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-30 17:11:02", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2963.jpg", + "handle": "IMG_2963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06151.jpg", + "width": 1200, + "height": 807, + "orientation": 0, + "taken_at": "2018-02-17 16:42:31", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06151.jpg", + "handle": "DSC06151.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06145.jpg", + "width": 1200, + "height": 765, + "orientation": 0, + "taken_at": "2018-02-17 16:42:26", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06145.jpg", + "handle": "DSC06145.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1e5b988e96ee42448d7a123fd623730a.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 10:55:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/1e5b988e96ee42448d7a123fd623730a.jpg", + "handle": "1e5b988e96ee42448d7a123fd623730a.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1265.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-03-09 14:08:31", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1265.jpg", + "handle": "IMG_1265.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8527.jpg", + "width": 1000, + "height": 604, + "orientation": 0, + "taken_at": "2018-04-09 12:09:11", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8527.jpg", + "handle": "IMG_8527.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 16.48.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 16:48:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 16.48.12.jpg", + "handle": "2018-04-09 16.48.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2751.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-15 14:44:13", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2751.jpg", + "handle": "IMG_2751.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2745.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-15 14:34:43", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2745.jpg", + "handle": "IMG_2745.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3315.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:02:56", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3315.JPG", + "handle": "IMG_3315.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 14.52.55.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 14:52:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 14.52.55.jpg", + "handle": "2018-04-10 14.52.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0608.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-01 12:08:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0608.jpg", + "handle": "IMG_0608.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.46.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:46:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.46.10.jpg", + "handle": "2018-04-10 08.46.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.01.18.jpg", + "width": 1199, + "height": 496, + "orientation": 0, + "taken_at": "2018-02-12 16:01:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 16.01.18.jpg", + "handle": "2018-02-12 16.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9823.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-09 12:15:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9823.jpg", + "handle": "IMG_9823.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.15.47.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 12:15:47", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.15.47.jpg", + "handle": "2018-04-10 12.15.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-13 11.17.37.jpg", + "width": 551, + "height": 667, + "orientation": 0, + "taken_at": "2018-02-13 11:17:37", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-13 11.17.37.jpg", + "handle": "2018-02-13 11.17.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05854.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:02:24", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05854.jpg", + "handle": "DSC05854.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC05840.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 15:53:49", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC05840.jpg", + "handle": "DSC05840.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9348.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 18:30:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9348.jpg", + "handle": "IMG_9348.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0387.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:52:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0387.jpg", + "handle": "IMG_0387.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 13.19.18.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 13:19:18", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 13.19.18.jpg", + "handle": "2018-04-10 13.19.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.34.10.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:34:10", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.34.10.jpg", + "handle": "2018-04-09 14.34.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.26.34.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 11:26:34", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.26.34.jpg", + "handle": "2016-04-08 11.26.34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 22.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 16:00:04", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 22.jpg", + "handle": "Rome - 22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 36.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 19:49:32", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 36.jpg", + "handle": "Rome - 36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_145219.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:20:18", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180212_145219.jpg", + "handle": "20180212_145219.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-12-21 13.21.19.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-12-21 13:21:19", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-12-21 13.21.19.jpg", + "handle": "2016-12-21 13.21.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "width": 1000, + "height": 562, + "orientation": 270, + "taken_at": "2018-08-11 12:01:07", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG", + "handle": "D0389800-DCCC-4D2B-9AF1-5D8AF5311383.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8687.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-04-10 21:40:15", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8687.jpg", + "handle": "IMG_8687.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/0c86a91b209b4d81b03449bacdfcf8fc.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-10 12:40:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/0c86a91b209b4d81b03449bacdfcf8fc.jpg", + "handle": "0c86a91b209b4d81b03449bacdfcf8fc.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC06018.jpg", + "width": 1200, + "height": 801, + "orientation": 0, + "taken_at": "2018-02-17 16:20:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC06018.jpg", + "handle": "DSC06018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-12-18 09:44:23", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2800.jpg", + "handle": "IMG_2800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0971.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:23", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0971.jpg", + "handle": "IMG_0971.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9941.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-03-06 10:44:22", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9941.jpg", + "handle": "IMG_9941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.22.50.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:22:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.22.50.jpg", + "handle": "2018-04-10 09.22.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.40.55.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:40:55", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.40.55.jpg", + "handle": "2018-04-09 15.40.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-14 18.11.13.jpg", + "width": 1200, + "height": 266, + "orientation": 0, + "taken_at": "2018-02-14 18:11:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-14 18.11.13.jpg", + "handle": "2018-02-14 18.11.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8849.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-10-30 14:23:01", + "camera": "iPhone 7", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8849.JPG", + "handle": "IMG_8849.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_1689.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-10-14 13:23:59", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_1689.jpg", + "handle": "IMG_1689.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0583.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-07-01 00:33:29", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0583.jpg", + "handle": "IMG_0583.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.58.57.jpg", + "width": 1024, + "height": 275, + "orientation": 0, + "taken_at": "2018-04-09 14:58:57", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.58.57.jpg", + "handle": "2018-04-09 14.58.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 20.jpg", + "width": 1024, + "height": 768, + "orientation": 0, + "taken_at": "2016-05-29 15:59:39", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 20.jpg", + "handle": "Rome - 20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 34.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 17:26:26", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 34.jpg", + "handle": "Rome - 34.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/DSC01359.jpg", + "width": 1200, + "height": 864, + "orientation": 0, + "taken_at": "2018-02-17 16:20:30", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/DSC01359.jpg", + "handle": "DSC01359.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-08 20.14.12.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-08 20:14:12", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-08 20.14.12.jpg", + "handle": "2018-04-08 20.14.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.38.43.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:38:43", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.38.43.jpg", + "handle": "2018-04-10 08.38.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG", + "handle": "1c123d18-9fdf-4cf6-ad4e-66bc8e9517e4.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3317.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-05-05 19:03:42", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3317.JPG", + "handle": "IMG_3317.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.28.46.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 08:28:46", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.28.46.jpg", + "handle": "2018-04-10 08.28.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_9606.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-06 14:51:40", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_9606.jpg", + "handle": "IMG_9606.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 14.44.47.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 14:44:47", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 14.44.47.jpg", + "handle": "2018-04-09 14.44.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 10.57.54.jpg", + "width": 1600, + "height": 921, + "orientation": 0, + "taken_at": "2016-04-08 10:57:54", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 10.57.54.jpg", + "handle": "2016-04-08 10.57.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_5015.JPG", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-12-30 20:29:13", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_5015.JPG", + "handle": "IMG_5015.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7170.jpg", + "width": 1024, + "height": 512, + "orientation": 0, + "taken_at": "2016-05-24 21:00:14", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7170.jpg", + "handle": "IMG_7170.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0192.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-28 06:39:12", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0192.jpg", + "handle": "IMG_0192.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3ef75635fea049239910eaeef3879765.jpg", + "width": 1200, + "height": 900, + "orientation": 270, + "taken_at": "2018-10-10 11:44:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3ef75635fea049239910eaeef3879765.jpg", + "handle": "3ef75635fea049239910eaeef3879765.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0186.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-05-27 09:33:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0186.jpg", + "handle": "IMG_0186.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.01.19.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 12:01:19", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.01.19.jpg", + "handle": "2018-04-10 12.01.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 08.41.26.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-10 08:41:26", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 08.41.26.jpg", + "handle": "2018-04-10 08.41.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "width": 692, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG", + "handle": "1eaca7ae-4ef9-466d-aeef-cb0caccfd07d.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_3128.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-04-10 11:25:39", + "camera": "iPhone X", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_3128.jpg", + "handle": "IMG_3128.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 09.18.44.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 09:18:44", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 09.18.44.jpg", + "handle": "2018-04-10 09.18.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0384.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-06-17 13:48:20", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0384.jpg", + "handle": "IMG_0384.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_175252.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 18:10:13", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180212_175252.jpg", + "handle": "20180212_175252.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 17.17.08.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 17:17:08", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 17.17.08.jpg", + "handle": "2018-02-12 17.17.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0227.jpg", + "width": 1000, + "height": 751, + "orientation": 270, + "taken_at": "2018-06-08 20:22:02", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0227.jpg", + "handle": "IMG_0227.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG", + "handle": "48f33c76-f04b-463e-a0dd-164f2ff1aa00.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 35.jpg", + "width": 1024, + "height": 683, + "orientation": 0, + "taken_at": "2016-05-29 18:51:27", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 35.jpg", + "handle": "Rome - 35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2356.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-07 19:57:48", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2356.jpg", + "handle": "IMG_2356.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", + "width": 1200, + "height": 900, + "orientation": 180, + "taken_at": "2018-10-12 16:42:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/1ee95f9b7a854fc9afea3581c3ca3bd3.jpg", + "handle": "1ee95f9b7a854fc9afea3581c3ca3bd3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/Rome - 21.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-29 15:59:47", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/Rome - 21.jpg", + "handle": "Rome - 21.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "width": 567, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG", + "handle": "8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180212_141929.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-02-12 14:19:29", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180212_141929.jpg", + "handle": "20180212_141929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0596.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2018-07-01 00:41:54", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0596.jpg", + "handle": "IMG_0596.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.37.09.jpg", + "width": 498, + "height": 1024, + "orientation": 0, + "taken_at": "2018-04-09 15:37:09", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.37.09.jpg", + "handle": "2018-04-09 15.37.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_2632.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-12-09 10:13:50", + "camera": "iPhone XS Max", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_2632.jpg", + "handle": "IMG_2632.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 12.05.37.jpg", + "width": 1600, + "height": 900, + "orientation": 0, + "taken_at": "2016-04-08 12:05:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 12.05.37.jpg", + "handle": "2016-04-08 12.05.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_7038.jpg", + "width": 1024, + "height": 1365, + "orientation": 0, + "taken_at": "2016-05-23 20:04:05", + "camera": "iPhone 6 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_7038.jpg", + "handle": "IMG_7038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-09 15.47.49.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-09 15:47:49", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-09 15.47.49.jpg", + "handle": "2018-04-09 15.47.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_8337.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2018-03-18 01:07:56", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_8337.jpg", + "handle": "IMG_8337.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2018-11-04 22:58:04", + "camera": "N/A", + "camera_make": "N/A", + "filename": "sample-imagesets/700/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG", + "handle": "9c436bfe-e0ed-483c-9094-89b723ee017c.JPG" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-02-12 16.56.23.jpg", + "width": 1200, + "height": 675, + "orientation": 0, + "taken_at": "2018-02-12 16:56:23", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-02-12 16.56.23.jpg", + "handle": "2018-02-12 16.56.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2016-04-08 11.34.37.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2016-04-08 11:34:37", + "camera": "SAMSUNG-SM-G928A", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2016-04-08 11.34.37.jpg", + "handle": "2016-04-08 11.34.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 12.58.30.jpg", + "width": 806, + "height": 392, + "orientation": 0, + "taken_at": "2018-04-10 12:58:30", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 12.58.30.jpg", + "handle": "2018-04-10 12.58.30.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/20180217_091648.jpg", + "width": 900, + "height": 1200, + "orientation": 0, + "taken_at": "2018-02-14 09:35:14", + "camera": "SM-G950U", + "camera_make": "samsung", + "filename": "sample-imagesets/700/20180217_091648.jpg", + "handle": "20180217_091648.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/2018-04-10 11.55.50.jpg", + "width": 1024, + "height": 498, + "orientation": 0, + "taken_at": "2018-04-10 11:55:50", + "camera": "SM-G960U1", + "camera_make": "samsung", + "filename": "sample-imagesets/700/2018-04-10 11.55.50.jpg", + "handle": "2018-04-10 11.55.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/IMG_0970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2018-07-29 16:45:21", + "camera": "iPhone 8 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/700/IMG_0970.jpg", + "handle": "IMG_0970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/700/3d3f907e1d76489084e871986a590474.jpg", + "width": 1200, + "height": 900, + "orientation": 0, + "taken_at": "2018-10-10 12:54:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/700/3d3f907e1d76489084e871986a590474.jpg", + "handle": "3d3f907e1d76489084e871986a590474.jpg" + } + ] } diff --git a/core/data/image-sets/dominic-budapest-low-res.json b/core/data/image-sets/dominic-budapest-low-res.json index 01f005c..8d3a861 100644 --- a/core/data/image-sets/dominic-budapest-low-res.json +++ b/core/data/image-sets/dominic-budapest-low-res.json @@ -1,125 +1,125 @@ { - "dominic-budapest-low-res": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3895.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-10-23 12:13:43", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3895.jpg", - "handle": "IMG_3895.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3881.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-23 11:37:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3881.jpg", - "handle": "IMG_3881.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3856.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-22 11:51:20", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3856.jpg", - "handle": "IMG_3856.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3920.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-23 12:43:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3920.jpg", - "handle": "IMG_3920.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4068.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-10-24 17:01:01", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4068.jpg", - "handle": "IMG_4068.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3897.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-23 12:15:39", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3897.jpg", - "handle": "IMG_3897.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4135.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-25 12:53:23", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4135.jpg", - "handle": "IMG_4135.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3855.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-22 11:27:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3855.jpg", - "handle": "IMG_3855.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4082.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-24 17:32:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4082.jpg", - "handle": "IMG_4082.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4096.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-10-24 18:09:21", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4096.jpg", - "handle": "IMG_4096.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4243.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-10-26 13:17:00", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4243.jpg", - "handle": "IMG_4243.jpg" - } - ] -} \ No newline at end of file + "dominic-budapest-low-res": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3895.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-10-23 12:13:43", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3895.jpg", + "handle": "IMG_3895.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3881.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-23 11:37:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3881.jpg", + "handle": "IMG_3881.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3856.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-22 11:51:20", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3856.jpg", + "handle": "IMG_3856.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3920.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-23 12:43:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3920.jpg", + "handle": "IMG_3920.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4068.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-10-24 17:01:01", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4068.jpg", + "handle": "IMG_4068.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3897.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-23 12:15:39", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3897.jpg", + "handle": "IMG_3897.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4135.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-25 12:53:23", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4135.jpg", + "handle": "IMG_4135.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_3855.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-22 11:27:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_3855.jpg", + "handle": "IMG_3855.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4082.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-24 17:32:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4082.jpg", + "handle": "IMG_4082.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4096.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-10-24 18:09:21", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4096.jpg", + "handle": "IMG_4096.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-budapest-low-res/IMG_4243.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-10-26 13:17:00", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-budapest-low-res/IMG_4243.jpg", + "handle": "IMG_4243.jpg" + } + ] +} diff --git a/core/data/image-sets/dominic-rhodos-row-res.json b/core/data/image-sets/dominic-rhodos-row-res.json index 544e1b9..92d790e 100644 --- a/core/data/image-sets/dominic-rhodos-row-res.json +++ b/core/data/image-sets/dominic-rhodos-row-res.json @@ -1,906 +1,906 @@ { - "dominic-rhodos-row-res": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1861.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 12:47:55", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1861.jpg", - "handle": "IMG_1861.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1929.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2017-06-09 11:00:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1929.jpg", - "handle": "IMG_1929.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2038.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 14:07:20", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2038.jpg", - "handle": "IMG_2038.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1876.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 13:45:16", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1876.jpg", - "handle": "IMG_1876.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1907.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 21:24:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1907.jpg", - "handle": "IMG_1907.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2017.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 12:11:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2017.jpg", - "handle": "IMG_2017.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2016.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 12:11:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2016.jpg", - "handle": "IMG_2016.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1899.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 20:15:09", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1899.jpg", - "handle": "IMG_1899.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2001.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 18:58:35", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2001.jpg", - "handle": "IMG_2001.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2015.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 12:10:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2015.jpg", - "handle": "IMG_2015.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1905.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 21:23:37", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1905.jpg", - "handle": "IMG_1905.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1865.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 13:40:11", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1865.jpg", - "handle": "IMG_1865.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2106.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-12 07:57:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2106.jpg", - "handle": "IMG_2106.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1816.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 11:59:57", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1816.jpg", - "handle": "IMG_1816.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1977.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:27:49", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1977.jpg", - "handle": "IMG_1977.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1963.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 11:23:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1963.jpg", - "handle": "IMG_1963.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2111.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-12 09:20:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2111.jpg", - "handle": "IMG_2111.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2139.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-13 10:39:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2139.jpg", - "handle": "IMG_2139.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1829.jpg", - "width": 4000, - "height": 1144, - "orientation": 0, - "taken_at": "2017-06-07 12:12:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1829.jpg", - "handle": "IMG_1829.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1961.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:22:35", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1961.jpg", - "handle": "IMG_1961.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1949.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 11:20:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1949.jpg", - "handle": "IMG_1949.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1974.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 11:27:09", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1974.jpg", - "handle": "IMG_1974.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1828.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:11:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1828.jpg", - "handle": "IMG_1828.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1814.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 11:59:15", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1814.jpg", - "handle": "IMG_1814.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1800.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-05 20:52:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1800.jpg", - "handle": "IMG_1800.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2138.jpg", - "width": 4000, - "height": 1658, - "orientation": 0, - "taken_at": "2017-06-13 10:15:02", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2138.jpg", - "handle": "IMG_2138.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1804.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 11:50:48", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1804.jpg", - "handle": "IMG_1804.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1958.jpg", - "width": 1000, - "height": 750, - "orientation": 180, - "taken_at": "2017-06-09 11:22:06", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1958.jpg", - "handle": "IMG_1958.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1970.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 11:26:07", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1970.jpg", - "handle": "IMG_1970.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2049.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 15:13:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2049.jpg", - "handle": "IMG_2049.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1811.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 11:56:53", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1811.jpg", - "handle": "IMG_1811.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2115.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-12 09:20:43", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2115.jpg", - "handle": "IMG_2115.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2103.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-12 07:50:35", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2103.jpg", - "handle": "IMG_2103.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2117.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-12 09:21:22", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2117.jpg", - "handle": "IMG_2117.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1813.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 11:58:26", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1813.jpg", - "handle": "IMG_1813.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1797.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-05 20:51:19", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1797.jpg", - "handle": "IMG_1797.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2089.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 21:46:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2089.jpg", - "handle": "IMG_2089.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1972.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:26:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1972.jpg", - "handle": "IMG_1972.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1796.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-04 20:39:01", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1796.jpg", - "handle": "IMG_1796.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1806.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 11:55:21", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1806.jpg", - "handle": "IMG_1806.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1943.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:18:17", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1943.jpg", - "handle": "IMG_1943.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1957.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:21:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1957.jpg", - "handle": "IMG_1957.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2046.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 15:13:12", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2046.jpg", - "handle": "IMG_2046.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1836.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:14:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1836.jpg", - "handle": "IMG_1836.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2132.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-12 22:18:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2132.jpg", - "handle": "IMG_2132.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1954.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:21:26", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1954.jpg", - "handle": "IMG_1954.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1940.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:16:51", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1940.jpg", - "handle": "IMG_1940.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1997.jpg", - "width": 1000, - "height": 622, - "orientation": 0, - "taken_at": "2017-06-09 18:11:26", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1997.jpg", - "handle": "IMG_1997.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2044.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 14:38:39", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2044.jpg", - "handle": "IMG_2044.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2078.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2017-06-10 21:19:52", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2078.jpg", - "handle": "IMG_2078.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2079.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2017-06-10 21:20:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2079.jpg", - "handle": "IMG_2079.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2045.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 15:12:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2045.jpg", - "handle": "IMG_2045.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2086.jpg", - "width": 750, - "height": 1000, - "orientation": 0, - "taken_at": "2017-06-10 21:43:50", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2086.jpg", - "handle": "IMG_2086.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1982.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 17:43:33", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1982.jpg", - "handle": "IMG_1982.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1969.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 11:25:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1969.jpg", - "handle": "IMG_1969.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1941.jpg", - "width": 4000, - "height": 1223, - "orientation": 0, - "taken_at": "2017-06-09 11:17:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1941.jpg", - "handle": "IMG_1941.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1809.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 11:56:29", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1809.jpg", - "handle": "IMG_1809.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2109.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-12 08:04:11", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2109.jpg", - "handle": "IMG_2109.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1831.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:13:17", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1831.jpg", - "handle": "IMG_1831.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1762.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-04 09:15:10", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1762.jpg", - "handle": "IMG_1762.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2055.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 15:23:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2055.jpg", - "handle": "IMG_2055.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2040.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 14:38:30", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2040.jpg", - "handle": "IMG_2040.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1987.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 17:56:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1987.jpg", - "handle": "IMG_1987.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1993.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 17:59:38", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1993.jpg", - "handle": "IMG_1993.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1978.jpg", - "width": 4000, - "height": 1452, - "orientation": 0, - "taken_at": "2017-06-09 17:42:56", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1978.jpg", - "handle": "IMG_1978.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1832.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:13:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1832.jpg", - "handle": "IMG_1832.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1761.jpg", - "width": 4000, - "height": 1475, - "orientation": 0, - "taken_at": "2017-06-04 09:14:53", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1761.jpg", - "handle": "IMG_1761.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1985.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-09 17:56:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1985.jpg", - "handle": "IMG_1985.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1991.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-09 17:57:18", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1991.jpg", - "handle": "IMG_1991.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2056.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 15:26:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2056.jpg", - "handle": "IMG_2056.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2042.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 14:38:35", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2042.jpg", - "handle": "IMG_2042.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1883.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 14:04:38", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1883.jpg", - "handle": "IMG_1883.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2018.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 12:12:08", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2018.jpg", - "handle": "IMG_2018.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1909.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 21:26:46", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1909.jpg", - "handle": "IMG_1909.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1881.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 13:59:54", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1881.jpg", - "handle": "IMG_1881.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2022.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 12:12:34", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2022.jpg", - "handle": "IMG_2022.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2023.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-10 12:13:04", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2023.jpg", - "handle": "IMG_2023.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1853.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:26:59", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1853.jpg", - "handle": "IMG_1853.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1847.jpg", - "width": 1000, - "height": 750, - "orientation": 0, - "taken_at": "2017-06-07 12:19:49", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1847.jpg", - "handle": "IMG_1847.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2143.jpg", - "width": 4000, - "height": 1103, - "orientation": 0, - "taken_at": "2017-06-13 14:13:45", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2143.jpg", - "handle": "IMG_2143.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2034.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-10 13:49:58", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2034.jpg", - "handle": "IMG_2034.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1850.jpg", - "width": 1000, - "height": 750, - "orientation": 270, - "taken_at": "2017-06-07 12:22:05", - "camera": "iPhone 6s", - "camera_make": "Apple", - "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1850.jpg", - "handle": "IMG_1850.jpg" - } - ] -} \ No newline at end of file + "dominic-rhodos-row-res": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1861.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 12:47:55", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1861.jpg", + "handle": "IMG_1861.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1929.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2017-06-09 11:00:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1929.jpg", + "handle": "IMG_1929.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2038.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 14:07:20", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2038.jpg", + "handle": "IMG_2038.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1876.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 13:45:16", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1876.jpg", + "handle": "IMG_1876.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1907.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 21:24:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1907.jpg", + "handle": "IMG_1907.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2017.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 12:11:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2017.jpg", + "handle": "IMG_2017.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2016.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 12:11:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2016.jpg", + "handle": "IMG_2016.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1899.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 20:15:09", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1899.jpg", + "handle": "IMG_1899.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2001.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 18:58:35", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2001.jpg", + "handle": "IMG_2001.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2015.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 12:10:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2015.jpg", + "handle": "IMG_2015.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1905.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 21:23:37", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1905.jpg", + "handle": "IMG_1905.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1865.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 13:40:11", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1865.jpg", + "handle": "IMG_1865.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2106.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-12 07:57:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2106.jpg", + "handle": "IMG_2106.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1816.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 11:59:57", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1816.jpg", + "handle": "IMG_1816.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1977.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:27:49", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1977.jpg", + "handle": "IMG_1977.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1963.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 11:23:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1963.jpg", + "handle": "IMG_1963.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2111.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-12 09:20:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2111.jpg", + "handle": "IMG_2111.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2139.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-13 10:39:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2139.jpg", + "handle": "IMG_2139.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1829.jpg", + "width": 4000, + "height": 1144, + "orientation": 0, + "taken_at": "2017-06-07 12:12:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1829.jpg", + "handle": "IMG_1829.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1961.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:22:35", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1961.jpg", + "handle": "IMG_1961.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1949.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 11:20:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1949.jpg", + "handle": "IMG_1949.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1974.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 11:27:09", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1974.jpg", + "handle": "IMG_1974.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1828.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:11:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1828.jpg", + "handle": "IMG_1828.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1814.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 11:59:15", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1814.jpg", + "handle": "IMG_1814.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1800.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-05 20:52:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1800.jpg", + "handle": "IMG_1800.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2138.jpg", + "width": 4000, + "height": 1658, + "orientation": 0, + "taken_at": "2017-06-13 10:15:02", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2138.jpg", + "handle": "IMG_2138.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1804.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 11:50:48", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1804.jpg", + "handle": "IMG_1804.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1958.jpg", + "width": 1000, + "height": 750, + "orientation": 180, + "taken_at": "2017-06-09 11:22:06", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1958.jpg", + "handle": "IMG_1958.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1970.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 11:26:07", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1970.jpg", + "handle": "IMG_1970.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2049.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 15:13:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2049.jpg", + "handle": "IMG_2049.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1811.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 11:56:53", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1811.jpg", + "handle": "IMG_1811.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2115.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-12 09:20:43", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2115.jpg", + "handle": "IMG_2115.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2103.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-12 07:50:35", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2103.jpg", + "handle": "IMG_2103.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2117.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-12 09:21:22", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2117.jpg", + "handle": "IMG_2117.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1813.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 11:58:26", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1813.jpg", + "handle": "IMG_1813.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1797.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-05 20:51:19", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1797.jpg", + "handle": "IMG_1797.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2089.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 21:46:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2089.jpg", + "handle": "IMG_2089.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1972.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:26:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1972.jpg", + "handle": "IMG_1972.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1796.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-04 20:39:01", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1796.jpg", + "handle": "IMG_1796.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1806.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 11:55:21", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1806.jpg", + "handle": "IMG_1806.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1943.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:18:17", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1943.jpg", + "handle": "IMG_1943.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1957.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:21:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1957.jpg", + "handle": "IMG_1957.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2046.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 15:13:12", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2046.jpg", + "handle": "IMG_2046.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1836.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:14:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1836.jpg", + "handle": "IMG_1836.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2132.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-12 22:18:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2132.jpg", + "handle": "IMG_2132.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1954.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:21:26", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1954.jpg", + "handle": "IMG_1954.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1940.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:16:51", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1940.jpg", + "handle": "IMG_1940.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1997.jpg", + "width": 1000, + "height": 622, + "orientation": 0, + "taken_at": "2017-06-09 18:11:26", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1997.jpg", + "handle": "IMG_1997.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2044.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 14:38:39", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2044.jpg", + "handle": "IMG_2044.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2078.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2017-06-10 21:19:52", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2078.jpg", + "handle": "IMG_2078.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2079.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2017-06-10 21:20:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2079.jpg", + "handle": "IMG_2079.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2045.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 15:12:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2045.jpg", + "handle": "IMG_2045.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2086.jpg", + "width": 750, + "height": 1000, + "orientation": 0, + "taken_at": "2017-06-10 21:43:50", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2086.jpg", + "handle": "IMG_2086.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1982.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 17:43:33", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1982.jpg", + "handle": "IMG_1982.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1969.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 11:25:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1969.jpg", + "handle": "IMG_1969.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1941.jpg", + "width": 4000, + "height": 1223, + "orientation": 0, + "taken_at": "2017-06-09 11:17:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1941.jpg", + "handle": "IMG_1941.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1809.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 11:56:29", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1809.jpg", + "handle": "IMG_1809.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2109.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-12 08:04:11", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2109.jpg", + "handle": "IMG_2109.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1831.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:13:17", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1831.jpg", + "handle": "IMG_1831.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1762.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-04 09:15:10", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1762.jpg", + "handle": "IMG_1762.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2055.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 15:23:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2055.jpg", + "handle": "IMG_2055.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2040.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 14:38:30", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2040.jpg", + "handle": "IMG_2040.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1987.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 17:56:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1987.jpg", + "handle": "IMG_1987.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1993.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 17:59:38", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1993.jpg", + "handle": "IMG_1993.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1978.jpg", + "width": 4000, + "height": 1452, + "orientation": 0, + "taken_at": "2017-06-09 17:42:56", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1978.jpg", + "handle": "IMG_1978.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1832.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:13:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1832.jpg", + "handle": "IMG_1832.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1761.jpg", + "width": 4000, + "height": 1475, + "orientation": 0, + "taken_at": "2017-06-04 09:14:53", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1761.jpg", + "handle": "IMG_1761.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1985.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-09 17:56:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1985.jpg", + "handle": "IMG_1985.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1991.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-09 17:57:18", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1991.jpg", + "handle": "IMG_1991.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2056.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 15:26:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2056.jpg", + "handle": "IMG_2056.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2042.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 14:38:35", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2042.jpg", + "handle": "IMG_2042.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1883.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 14:04:38", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1883.jpg", + "handle": "IMG_1883.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2018.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 12:12:08", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2018.jpg", + "handle": "IMG_2018.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1909.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 21:26:46", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1909.jpg", + "handle": "IMG_1909.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1881.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 13:59:54", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1881.jpg", + "handle": "IMG_1881.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2022.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 12:12:34", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2022.jpg", + "handle": "IMG_2022.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2023.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-10 12:13:04", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2023.jpg", + "handle": "IMG_2023.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1853.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:26:59", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1853.jpg", + "handle": "IMG_1853.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1847.jpg", + "width": 1000, + "height": 750, + "orientation": 0, + "taken_at": "2017-06-07 12:19:49", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1847.jpg", + "handle": "IMG_1847.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2143.jpg", + "width": 4000, + "height": 1103, + "orientation": 0, + "taken_at": "2017-06-13 14:13:45", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2143.jpg", + "handle": "IMG_2143.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_2034.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-10 13:49:58", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_2034.jpg", + "handle": "IMG_2034.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/dominic-rhodos-row-res/IMG_1850.jpg", + "width": 1000, + "height": 750, + "orientation": 270, + "taken_at": "2017-06-07 12:22:05", + "camera": "iPhone 6s", + "camera_make": "Apple", + "filename": "sample-imagesets/dominic-rhodos-row-res/IMG_1850.jpg", + "handle": "IMG_1850.jpg" + } + ] +} diff --git a/core/data/image-sets/europe.json b/core/data/image-sets/europe.json index ddbddd7..ec53e5e 100644 --- a/core/data/image-sets/europe.json +++ b/core/data/image-sets/europe.json @@ -1,2325 +1,2325 @@ { - "europe": [ - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.03.24.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 15:03:24", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 15.03.24.jpg", - "handle": "2017-06-19 15.03.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.50.33.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 14:50:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 14.50.33.jpg", - "handle": "2017-06-19 14.50.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 09.52.33.jpg", - "width": 506, - "height": 659, - "orientation": 0, - "taken_at": "2017-06-27 09:52:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 09.52.33.jpg", - "handle": "2017-06-27 09.52.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.15.51.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:15:51", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.15.51.jpg", - "handle": "2017-06-28 13.15.51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.54.00.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 04:54:00", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.54.00.jpg", - "handle": "2017-06-30 05.54.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 21.18.37-2.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-17 21:18:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-17 21.18.37-2.jpg", - "handle": "2017-06-17 21.18.37-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.12.44.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 10:12:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 10.12.44.jpg", - "handle": "2017-06-28 10.12.44.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.56.48.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 20:56:48", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.56.48.jpg", - "handle": "2017-06-26 20.56.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.17.28.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 20:17:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.17.28.jpg", - "handle": "2017-06-26 20.17.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 14.53.13.jpg", - "width": 1600, - "height": 1067, - "orientation": 0, - "taken_at": "2017-06-30 14:53:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 14.53.13.jpg", - "handle": "2017-06-30 14.53.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 11.26.45.jpg", - "width": 1023, - "height": 944, - "orientation": 0, - "taken_at": "2017-06-25 10:26:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 11.26.45.jpg", - "handle": "2017-06-25 11.26.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.07.11.jpg", - "width": 1513, - "height": 1136, - "orientation": 0, - "taken_at": "2017-06-26 18:07:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 18.07.11.jpg", - "handle": "2017-06-26 18.07.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 16.03.56.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 16:03:56", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 16.03.56.jpg", - "handle": "2017-06-26 16.03.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.01.18.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:01:18", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.01.18.jpg", - "handle": "2017-06-27 11.01.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.30.10.jpg", - "width": 1084, - "height": 1036, - "orientation": 0, - "taken_at": "2017-06-23 12:30:10", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 12.30.10.jpg", - "handle": "2017-06-23 12.30.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.29.23.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 05:29:22", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.29.23.jpg", - "handle": "2017-06-30 06.29.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.55.59.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:55:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.55.59.jpg", - "handle": "2017-06-27 11.55.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 06.57.45.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-17 05:57:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-17 06.57.45.jpg", - "handle": "2017-06-17 06.57.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.18.06.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:18:06", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.18.06.jpg", - "handle": "2017-06-28 13.18.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.05.05-1.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-16 20:05:05", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-16 20.05.05-1.jpg", - "handle": "2017-06-16 20.05.05-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.52.51.jpg", - "width": 1145, - "height": 1526, - "orientation": 0, - "taken_at": "2017-06-26 17:52:51", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 17.52.51.jpg", - "handle": "2017-06-26 17.52.51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.54.45.jpg", - "width": 1600, - "height": 1202, - "orientation": 0, - "taken_at": "2017-06-18 19:54:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.54.45.jpg", - "handle": "2017-06-18 19.54.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.39.55.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 12:39:55", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.39.55.jpg", - "handle": "2017-06-28 12.39.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.03.17.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 10:03:17", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 10.03.17.jpg", - "handle": "2017-06-28 10.03.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.08.33.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 21:08:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 21.08.33.jpg", - "handle": "2017-06-27 21.08.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.22.42.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 15:22:42", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.22.42.jpg", - "handle": "2017-06-26 15.22.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.04.03.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 05:04:02", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.04.03.jpg", - "handle": "2017-06-30 06.04.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.40.41.jpg", - "width": 1599, - "height": 852, - "orientation": 0, - "taken_at": "2017-06-27 11:40:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.40.41.jpg", - "handle": "2017-06-27 11.40.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.28.03.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:28:03", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.28.03.jpg", - "handle": "2017-06-27 10.28.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.03.27.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 13:03:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.03.27.jpg", - "handle": "2017-06-28 13.03.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 13.08.17.jpg", - "width": 1030, - "height": 665, - "orientation": 0, - "taken_at": "2017-06-18 12:45:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 13.08.17.jpg", - "handle": "2017-06-18 13.08.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.42.24.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 12:42:24", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.42.24.jpg", - "handle": "2017-06-28 12.42.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.32.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 15:02:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.02.32.jpg", - "handle": "2017-06-26 15.02.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.46.55.jpg", - "width": 1600, - "height": 1202, - "orientation": 0, - "taken_at": "2017-06-28 12:46:55", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.46.55.jpg", - "handle": "2017-06-28 12.46.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 19.19.33.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 19:19:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 19.19.33.jpg", - "handle": "2017-06-19 19.19.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 17.51.19.jpg", - "width": 1048, - "height": 1398, - "orientation": 0, - "taken_at": "2017-06-22 17:51:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 17.51.19.jpg", - "handle": "2017-06-22 17.51.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.20.47.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:20:47", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.20.47.jpg", - "handle": "2017-06-26 20.20.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.10.06.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:10:06", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.10.06.jpg", - "handle": "2017-06-27 10.10.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.51.28-1.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 17:51:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 17.51.28-1.jpg", - "handle": "2017-06-26 17.51.28-1.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.09.13.jpg", - "width": 1551, - "height": 1163, - "orientation": 0, - "taken_at": "2017-06-27 13:09:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.09.13.jpg", - "handle": "2017-06-27 13.09.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.28.45.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 16:28:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 16.28.45.jpg", - "handle": "2017-06-19 16.28.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.09.40.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 05:09:40", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.09.40.jpg", - "handle": "2017-06-30 06.09.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.23.42.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:23:42", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.23.42.jpg", - "handle": "2017-06-27 11.23.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.33.19.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 21:18:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 20.33.19.jpg", - "handle": "2017-06-22 20.33.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.16.28.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 05:16:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.16.28.jpg", - "handle": "2017-06-30 06.16.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.19.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 15:02:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.02.19.jpg", - "handle": "2017-06-26 15.02.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 10.30.25.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-18 10:30:25", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 10.30.25.jpg", - "handle": "2017-06-18 10.30.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 14.22.37.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 14:22:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 14.22.37.jpg", - "handle": "2017-06-26 14.22.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.31.43.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 17:31:43", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 17.31.43.jpg", - "handle": "2017-06-26 17.31.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.37.36.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:37:36", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.37.36.jpg", - "handle": "2017-06-27 11.37.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.48.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:29:48", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.29.48.jpg", - "handle": "2017-06-26 20.29.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 14.21.12.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 14:21:12", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 14.21.12.jpg", - "handle": "2017-06-27 14.21.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.51.28.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 19:51:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.51.28.jpg", - "handle": "2017-06-18 19.51.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 06.13.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-17 06:13:49", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-17 06.13.49.jpg", - "handle": "2017-06-17 06.13.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.36.39.jpg", - "width": 1127, - "height": 1504, - "orientation": 0, - "taken_at": "2017-06-26 17:36:39", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 17.36.39.jpg", - "handle": "2017-06-26 17.36.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.40.37.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-20 17:40:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 17.40.37.jpg", - "handle": "2017-06-20 17.40.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.53.39.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 19:53:39", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.53.39.jpg", - "handle": "2017-06-18 19.53.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.14.45.jpg", - "width": 1600, - "height": 901, - "orientation": 0, - "taken_at": "2017-06-20 12:14:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 12.14.45.jpg", - "handle": "2017-06-20 12.14.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.55.11.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:55:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.55.11.jpg", - "handle": "2017-06-27 11.55.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.25.04.jpg", - "width": 1600, - "height": 582, - "orientation": 0, - "taken_at": "2017-06-28 11:25:04", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 11.25.04.jpg", - "handle": "2017-06-28 11.25.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.09.08.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:09:08", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.09.08.jpg", - "handle": "2017-06-28 13.09.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.06.09.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-16 20:06:09", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-16 20.06.09.jpg", - "handle": "2017-06-16 20.06.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.10.41.jpg", - "width": 1033, - "height": 1377, - "orientation": 0, - "taken_at": "2017-06-27 13:10:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.10.41.jpg", - "handle": "2017-06-27 13.10.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.58.52.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:58:52", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.58.52.jpg", - "handle": "2017-06-27 11.58.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.08.08.jpg", - "width": 1479, - "height": 768, - "orientation": 0, - "taken_at": "2017-06-27 13:08:08", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.08.08.jpg", - "handle": "2017-06-27 13.08.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.21.02.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 12:21:02", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 12.21.02.jpg", - "handle": "2017-06-27 12.21.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.54.27.jpg", - "width": 1600, - "height": 886, - "orientation": 0, - "taken_at": "2017-06-18 19:54:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.54.27.jpg", - "handle": "2017-06-18 19.54.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.03.20.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 19:40:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 20.03.20.jpg", - "handle": "2017-06-22 20.03.20.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.35.32.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 13:35:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 13.35.32.jpg", - "handle": "2017-06-25 13.35.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.43.51.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 04:43:50", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.43.51.jpg", - "handle": "2017-06-30 05.43.51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.18.38.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:18:38", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.18.38.jpg", - "handle": "2017-06-27 10.18.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.13.19.jpg", - "width": 1594, - "height": 642, - "orientation": 0, - "taken_at": "2017-06-27 10:13:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.13.19.jpg", - "handle": "2017-06-27 10.13.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.23.32.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:23:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.23.32.jpg", - "handle": "2017-06-27 11.23.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.40.12.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 12:40:12", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 12.40.12.jpg", - "handle": "2017-06-27 12.40.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.39.37.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 12:39:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 12.39.37.jpg", - "handle": "2017-06-18 12.39.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.54.43.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:54:43", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.54.43.jpg", - "handle": "2017-06-27 11.54.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.22.35.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 15:22:35", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.22.35.jpg", - "handle": "2017-06-26 15.22.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 15.07.30-3.jpg", - "width": 1600, - "height": 1067, - "orientation": 0, - "taken_at": "2017-06-30 15:07:30", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 15.07.30-3.jpg", - "handle": "2017-06-30 15.07.30-3.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 13.46.13.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 13:46:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 13.46.13.jpg", - "handle": "2017-06-26 13.46.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 16.51.17.jpg", - "width": 1557, - "height": 529, - "orientation": 0, - "taken_at": "2017-06-27 16:51:17", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 16.51.17.jpg", - "handle": "2017-06-27 16.51.17.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 07.25.27.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 06:25:26", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 07.25.27.jpg", - "handle": "2017-06-30 07.25.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 20.00.04.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 19:28:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 20.00.04.jpg", - "handle": "2017-06-19 20.00.04.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.03.24.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 19:42:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 20.03.24.jpg", - "handle": "2017-06-22 20.03.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 18.07.59.jpg", - "width": 951, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 18:07:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 18.07.59.jpg", - "handle": "2017-06-27 18.07.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.00.11.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 15:00:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 15.00.11.jpg", - "handle": "2017-06-19 15.00.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.31.25.jpg", - "width": 900, - "height": 1600, - "orientation": 90, - "taken_at": "2017-06-30 05:51:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.31.25.jpg", - "handle": "2017-06-30 06.31.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.33.26.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-23 12:33:26", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 12.33.26.jpg", - "handle": "2017-06-23 12.33.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.16.45.jpg", - "width": 1553, - "height": 1166, - "orientation": 0, - "taken_at": "2017-06-20 12:16:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 12.16.45.jpg", - "handle": "2017-06-20 12.16.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.17.05-2.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 12:17:05", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.17.05-2.jpg", - "handle": "2017-06-28 12.17.05-2.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 11.46.11.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-18 11:46:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 11.46.11.jpg", - "handle": "2017-06-18 11.46.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.59.26.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 04:59:26", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.59.26.jpg", - "handle": "2017-06-30 05.59.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.27.39.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 18:27:39", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 18.27.39.jpg", - "handle": "2017-06-26 18.27.39.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 22.17.26.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-17 22:17:26", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-17 22.17.26.jpg", - "handle": "2017-06-17 22.17.26.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.02.13.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 13:02:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.02.13.jpg", - "handle": "2017-06-28 13.02.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.21.19.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:31:50", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.21.19.jpg", - "handle": "2017-06-27 11.21.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.52.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 15:02:52", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.02.52.jpg", - "handle": "2017-06-26 15.02.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.52.40.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 12:52:40", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.52.40.jpg", - "handle": "2017-06-28 12.52.40.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.49.03.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-20 17:49:03", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 17.49.03.jpg", - "handle": "2017-06-20 17.49.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.57.22.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 04:57:22", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.57.22.jpg", - "handle": "2017-06-30 05.57.22.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 20.00.14.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 20:00:14", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 20.00.14.jpg", - "handle": "2017-06-18 20.00.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.52.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 19:52:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.52.41.jpg", - "handle": "2017-06-18 19.52.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.52.27.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-23 14:52:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 14.52.27.jpg", - "handle": "2017-06-23 14.52.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.51.43.jpg", - "width": 720, - "height": 1280, - "orientation": 90, - "taken_at": "2017-06-30 04:51:42", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.51.43.jpg", - "handle": "2017-06-30 05.51.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.07.53.jpg", - "width": 1531, - "height": 1148, - "orientation": 0, - "taken_at": "2017-06-27 13:07:53", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.07.53.jpg", - "handle": "2017-06-27 13.07.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.52.02.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-23 14:52:02", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 14.52.02.jpg", - "handle": "2017-06-23 14.52.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.51.31.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 13:51:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 13.51.31.jpg", - "handle": "2017-06-30 13.51.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.33.58.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 13:33:58", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 13.33.58.jpg", - "handle": "2017-06-25 13.33.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.44.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 12:44:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 12.44.41.jpg", - "handle": "2017-06-27 12.44.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.47.55.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 14:47:55", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 14.47.55.jpg", - "handle": "2017-06-19 14.47.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.38.45.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 13:38:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 13.38.45.jpg", - "handle": "2017-06-25 13.38.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 19.36.27.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 19:36:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 19.36.27.jpg", - "handle": "2017-06-22 19.36.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.05.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 18:37:05", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 18.37.05.jpg", - "handle": "2017-06-22 18.37.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 03.39.33.jpg", - "width": 900, - "height": 1404, - "orientation": 0, - "taken_at": "2017-06-28 02:39:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 03.39.33.jpg", - "handle": "2017-06-28 03.39.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.36.51.jpg", - "width": 1202, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 18:36:51", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 18.36.51.jpg", - "handle": "2017-06-22 18.36.51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.56.03.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-18 19:56:03", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.56.03.jpg", - "handle": "2017-06-18 19.56.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 21.45.06.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-16 21:45:06", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-16 21.45.06.jpg", - "handle": "2017-06-16 21.45.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.14.18.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:14:18", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.14.18.jpg", - "handle": "2017-06-27 10.14.18.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.51.45.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 05:51:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.51.45.jpg", - "handle": "2017-06-30 06.51.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.04.16.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 18:04:16", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 18.04.16.jpg", - "handle": "2017-06-26 18.04.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.26.41.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:26:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.26.41.jpg", - "handle": "2017-06-27 10.26.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 21.19.24.jpg", - "width": 952, - "height": 1128, - "orientation": 0, - "taken_at": "2017-06-17 21:19:24", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-17 21.19.24.jpg", - "handle": "2017-06-17 21.19.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 14.16.25.jpg", - "width": 1200, - "height": 864, - "orientation": 0, - "taken_at": "2017-06-28 14:16:25", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 14.16.25.jpg", - "handle": "2017-06-28 14.16.25.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 19.36.31.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 19:36:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 19.36.31.jpg", - "handle": "2017-06-22 19.36.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 06.25.41.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 13:36:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 06.25.41.jpg", - "handle": "2017-06-26 06.25.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 19.27.11.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 19:27:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 19.27.11.jpg", - "handle": "2017-06-19 19.27.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.51.51.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-23 14:51:51", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 14.51.51.jpg", - "handle": "2017-06-23 14.51.51.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.16.03.jpg", - "width": 1200, - "height": 1245, - "orientation": 0, - "taken_at": "2017-06-28 11:16:03", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 11.16.03.jpg", - "handle": "2017-06-28 11.16.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.07.14.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 05:07:14", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.07.14.jpg", - "handle": "2017-06-30 06.07.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.27.47.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-20 12:27:47", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 12.27.47.jpg", - "handle": "2017-06-20 12.27.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.02.14.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 21:02:14", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 21.02.14.jpg", - "handle": "2017-06-27 21.02.14.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.59.56.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 12:59:56", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.59.56.jpg", - "handle": "2017-06-28 12.59.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.57.15.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 04:57:14", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.57.15.jpg", - "handle": "2017-06-30 05.57.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.29.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 13:29:49", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.29.49.jpg", - "handle": "2017-06-28 13.29.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.56.16.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 14:56:16", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 14.56.16.jpg", - "handle": "2017-06-19 14.56.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 12.59.31.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-25 12:59:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 12.59.31.jpg", - "handle": "2017-06-25 12.59.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.02.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 18:37:02", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 18.37.02.jpg", - "handle": "2017-06-22 18.37.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.16.55.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 05:16:54", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.16.55.jpg", - "handle": "2017-06-30 06.16.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.51.52.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-23 12:51:52", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 12.51.52.jpg", - "handle": "2017-06-23 12.51.52.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.04.10.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:04:10", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.04.10.jpg", - "handle": "2017-06-26 20.04.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.16.37.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 12:16:36", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 13.16.37.jpg", - "handle": "2017-06-30 13.16.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.30.42.jpg", - "width": 1573, - "height": 576, - "orientation": 0, - "taken_at": "2017-06-27 11:30:42", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.30.42.jpg", - "handle": "2017-06-27 11.30.42.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 19.34.11.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 19:34:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 19.34.11.jpg", - "handle": "2017-06-26 19.34.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.07.56.jpg", - "width": 1600, - "height": 543, - "orientation": 0, - "taken_at": "2017-06-26 15:07:56", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.07.56.jpg", - "handle": "2017-06-26 15.07.56.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-29 08.50.55.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 20:43:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-29 08.50.55.jpg", - "handle": "2017-06-29 08.50.55.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.53.47.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-23 14:53:47", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 14.53.47.jpg", - "handle": "2017-06-23 14.53.47.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.16.35.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 12:16:34", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 13.16.35.jpg", - "handle": "2017-06-30 13.16.35.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.49.16.jpg", - "width": 720, - "height": 1280, - "orientation": 0, - "taken_at": "2017-06-30 04:49:16", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.49.16.jpg", - "handle": "2017-06-30 05.49.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.32.50.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 11:32:50", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.32.50.jpg", - "handle": "2017-06-27 11.32.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.26.11.jpg", - "width": 1600, - "height": 594, - "orientation": 0, - "taken_at": "2017-06-20 12:26:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 12.26.11.jpg", - "handle": "2017-06-20 12.26.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.18.43.jpg", - "width": 1186, - "height": 625, - "orientation": 0, - "taken_at": "2017-06-28 13:18:43", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.18.43.jpg", - "handle": "2017-06-28 13.18.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.07.59.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-18 12:07:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 12.07.59.jpg", - "handle": "2017-06-18 12.07.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.43.07.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 13:43:07", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.43.07.jpg", - "handle": "2017-06-27 13.43.07.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 07.47.50.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 10:03:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 07.47.50.jpg", - "handle": "2017-06-25 07.47.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.04.06.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 15:04:06", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.04.06.jpg", - "handle": "2017-06-26 15.04.06.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.00.33.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 15:00:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 15.00.33.jpg", - "handle": "2017-06-19 15.00.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.10.27.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:10:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.10.27.jpg", - "handle": "2017-06-28 13.10.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 14.19.33.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 14:19:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 14.19.33.jpg", - "handle": "2017-06-27 14.19.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.56.12.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 15:56:12", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 15.56.12.jpg", - "handle": "2017-06-22 15.56.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 16.04.32.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 16:04:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 16.04.32.jpg", - "handle": "2017-06-26 16.04.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.00.54.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 05:00:54", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 06.00.54.jpg", - "handle": "2017-06-30 06.00.54.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.26.58.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 16:26:58", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 16.26.58.jpg", - "handle": "2017-06-19 16.26.58.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.13.59.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-27 10:13:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.13.59.jpg", - "handle": "2017-06-27 10.13.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.18.38.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 10:18:38", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 10.18.38.jpg", - "handle": "2017-06-28 10.18.38.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 14.22.12.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 14:22:12", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 14.22.12.jpg", - "handle": "2017-06-26 14.22.12.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.42.16.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 12:42:16", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.42.16.jpg", - "handle": "2017-06-28 12.42.16.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.16.08.jpg", - "width": 1021, - "height": 1451, - "orientation": 0, - "taken_at": "2017-06-28 13:16:08", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.16.08.jpg", - "handle": "2017-06-28 13.16.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.17.23.jpg", - "width": 787, - "height": 1520, - "orientation": 0, - "taken_at": "2017-06-28 11:17:23", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 11.17.23.jpg", - "handle": "2017-06-28 11.17.23.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.52.13.jpg", - "width": 1438, - "height": 851, - "orientation": 0, - "taken_at": "2017-06-28 12:52:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.52.13.jpg", - "handle": "2017-06-28 12.52.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.51.36.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-26 17:51:36", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 17.51.36.jpg", - "handle": "2017-06-26 17.51.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.10.15.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 13:10:15", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.10.15.jpg", - "handle": "2017-06-27 13.10.15.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 15.08.41.jpg", - "width": 1600, - "height": 1067, - "orientation": 0, - "taken_at": "2017-06-30 15:08:41", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 15.08.41.jpg", - "handle": "2017-06-30 15.08.41.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.25.11.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:25:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.25.11.jpg", - "handle": "2017-06-28 13.25.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.25.59.jpg", - "width": 1510, - "height": 1132, - "orientation": 0, - "taken_at": "2017-06-27 10:25:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.25.59.jpg", - "handle": "2017-06-27 10.25.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.08.05.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 21:08:05", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 21.08.05.jpg", - "handle": "2017-06-27 21.08.05.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.07.19.jpg", - "width": 1600, - "height": 1202, - "orientation": 0, - "taken_at": "2017-06-26 15:07:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.07.19.jpg", - "handle": "2017-06-26 15.07.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.55.19.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 15:55:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 15.55.19.jpg", - "handle": "2017-06-22 15.55.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.26.00.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 15:26:00", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 15.26.00.jpg", - "handle": "2017-06-26 15.26.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.50.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:29:50", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.29.50.jpg", - "handle": "2017-06-26 20.29.50.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.46.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:29:46", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.29.46.jpg", - "handle": "2017-06-26 20.29.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.38.09.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 18:38:09", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 18.38.09.jpg", - "handle": "2017-06-22 18.38.09.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.12.08.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-18 12:12:08", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 12.12.08.jpg", - "handle": "2017-06-18 12.12.08.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.36.57.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-20 17:36:57", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 17.36.57.jpg", - "handle": "2017-06-20 17.36.57.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.33.11.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 13:33:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 13.33.11.jpg", - "handle": "2017-06-30 13.33.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.39.48.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 12:39:48", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 12.39.48.jpg", - "handle": "2017-06-28 12.39.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.18.11.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-20 12:18:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-20 12.18.11.jpg", - "handle": "2017-06-20 12.18.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.07.32.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 13:07:32", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 13.07.32.jpg", - "handle": "2017-06-27 13.07.32.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.53.jpg", - "width": 1600, - "height": 1202, - "orientation": 0, - "taken_at": "2017-06-26 20:29:53", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.29.53.jpg", - "handle": "2017-06-26 20.29.53.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.37.59.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 13:37:59", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 13.37.59.jpg", - "handle": "2017-06-25 13.37.59.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.43.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-26 20:29:43", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-26 20.29.43.jpg", - "handle": "2017-06-26 20.29.43.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.04.33.jpg", - "width": 1452, - "height": 690, - "orientation": 0, - "taken_at": "2017-06-28 13:04:33", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.04.33.jpg", - "handle": "2017-06-28 13.04.33.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.25.01.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:25:01", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.25.01.jpg", - "handle": "2017-06-27 11.25.01.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.06.13.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-19 16:06:13", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 16.06.13.jpg", - "handle": "2017-06-19 16.06.13.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.48.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 18:37:48", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 18.37.48.jpg", - "handle": "2017-06-22 18.37.48.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.51.24.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 11:51:24", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 11.51.24.jpg", - "handle": "2017-06-27 11.51.24.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.17.36.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-16 20:17:36", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-16 20.17.36.jpg", - "handle": "2017-06-16 20.17.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 16.50.00.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 16:50:00", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 16.50.00.jpg", - "handle": "2017-06-27 16.50.00.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.58.49.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-18 19:58:49", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-18 19.58.49.jpg", - "handle": "2017-06-18 19.58.49.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.10.19.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:10:19", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.10.19.jpg", - "handle": "2017-06-27 10.10.19.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.54.11.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-23 14:54:11", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 14.54.11.jpg", - "handle": "2017-06-23 14.54.11.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 21.18.37.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 21:18:37", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 21.18.37.jpg", - "handle": "2017-06-22 21.18.37.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.51.27.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-23 12:51:27", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-23 12.51.27.jpg", - "handle": "2017-06-23 12.51.27.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.57.31.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-22 15:57:31", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 15.57.31.jpg", - "handle": "2017-06-22 15.57.31.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 21.18.36.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-22 21:18:36", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-22 21.18.36.jpg", - "handle": "2017-06-22 21.18.36.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 03.18.03.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-25 10:01:44", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-25 03.18.03.jpg", - "handle": "2017-06-25 03.18.03.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.16.45.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-27 10:16:45", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-27 10.16.45.jpg", - "handle": "2017-06-27 10.16.45.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.03.10.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 13:03:10", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 13.03.10.jpg", - "handle": "2017-06-28 13.03.10.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.14.28.jpg", - "width": 1200, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-28 10:14:28", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 10.14.28.jpg", - "handle": "2017-06-28 10.14.28.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.27.46.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-28 11:27:46", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 11.27.46.jpg", - "handle": "2017-06-28 11.27.46.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 14.17.29.jpg", - "width": 1200, - "height": 1166, - "orientation": 0, - "taken_at": "2017-06-28 14:17:29", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-28 14.17.29.jpg", - "handle": "2017-06-28 14.17.29.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.50.02.jpg", - "width": 1600, - "height": 1200, - "orientation": 0, - "taken_at": "2017-06-19 14:50:02", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-19 14.50.02.jpg", - "handle": "2017-06-19 14.50.02.jpg" - }, - { - "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.45.48.jpg", - "width": 900, - "height": 1600, - "orientation": 0, - "taken_at": "2017-06-30 04:45:48", - "camera": "iPhone 7 Plus", - "camera_make": "Apple", - "filename": "sample-imagesets/europe/2017-06-30 05.45.48.jpg", - "handle": "2017-06-30 05.45.48.jpg" - } - ] -} \ No newline at end of file + "europe": [ + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.03.24.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 15:03:24", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 15.03.24.jpg", + "handle": "2017-06-19 15.03.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.50.33.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 14:50:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 14.50.33.jpg", + "handle": "2017-06-19 14.50.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 09.52.33.jpg", + "width": 506, + "height": 659, + "orientation": 0, + "taken_at": "2017-06-27 09:52:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 09.52.33.jpg", + "handle": "2017-06-27 09.52.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.15.51.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:15:51", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.15.51.jpg", + "handle": "2017-06-28 13.15.51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.54.00.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 04:54:00", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.54.00.jpg", + "handle": "2017-06-30 05.54.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 21.18.37-2.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-17 21:18:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-17 21.18.37-2.jpg", + "handle": "2017-06-17 21.18.37-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.12.44.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 10:12:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 10.12.44.jpg", + "handle": "2017-06-28 10.12.44.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.56.48.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 20:56:48", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.56.48.jpg", + "handle": "2017-06-26 20.56.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.17.28.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 20:17:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.17.28.jpg", + "handle": "2017-06-26 20.17.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 14.53.13.jpg", + "width": 1600, + "height": 1067, + "orientation": 0, + "taken_at": "2017-06-30 14:53:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 14.53.13.jpg", + "handle": "2017-06-30 14.53.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 11.26.45.jpg", + "width": 1023, + "height": 944, + "orientation": 0, + "taken_at": "2017-06-25 10:26:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 11.26.45.jpg", + "handle": "2017-06-25 11.26.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.07.11.jpg", + "width": 1513, + "height": 1136, + "orientation": 0, + "taken_at": "2017-06-26 18:07:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 18.07.11.jpg", + "handle": "2017-06-26 18.07.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 16.03.56.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 16:03:56", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 16.03.56.jpg", + "handle": "2017-06-26 16.03.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.01.18.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:01:18", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.01.18.jpg", + "handle": "2017-06-27 11.01.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.30.10.jpg", + "width": 1084, + "height": 1036, + "orientation": 0, + "taken_at": "2017-06-23 12:30:10", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 12.30.10.jpg", + "handle": "2017-06-23 12.30.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.29.23.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 05:29:22", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.29.23.jpg", + "handle": "2017-06-30 06.29.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.55.59.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:55:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.55.59.jpg", + "handle": "2017-06-27 11.55.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 06.57.45.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-17 05:57:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-17 06.57.45.jpg", + "handle": "2017-06-17 06.57.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.18.06.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:18:06", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.18.06.jpg", + "handle": "2017-06-28 13.18.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.05.05-1.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-16 20:05:05", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-16 20.05.05-1.jpg", + "handle": "2017-06-16 20.05.05-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.52.51.jpg", + "width": 1145, + "height": 1526, + "orientation": 0, + "taken_at": "2017-06-26 17:52:51", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 17.52.51.jpg", + "handle": "2017-06-26 17.52.51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.54.45.jpg", + "width": 1600, + "height": 1202, + "orientation": 0, + "taken_at": "2017-06-18 19:54:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.54.45.jpg", + "handle": "2017-06-18 19.54.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.39.55.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 12:39:55", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.39.55.jpg", + "handle": "2017-06-28 12.39.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.03.17.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 10:03:17", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 10.03.17.jpg", + "handle": "2017-06-28 10.03.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.08.33.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 21:08:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 21.08.33.jpg", + "handle": "2017-06-27 21.08.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.22.42.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 15:22:42", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.22.42.jpg", + "handle": "2017-06-26 15.22.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.04.03.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 05:04:02", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.04.03.jpg", + "handle": "2017-06-30 06.04.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.40.41.jpg", + "width": 1599, + "height": 852, + "orientation": 0, + "taken_at": "2017-06-27 11:40:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.40.41.jpg", + "handle": "2017-06-27 11.40.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.28.03.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:28:03", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.28.03.jpg", + "handle": "2017-06-27 10.28.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.03.27.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 13:03:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.03.27.jpg", + "handle": "2017-06-28 13.03.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 13.08.17.jpg", + "width": 1030, + "height": 665, + "orientation": 0, + "taken_at": "2017-06-18 12:45:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 13.08.17.jpg", + "handle": "2017-06-18 13.08.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.42.24.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 12:42:24", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.42.24.jpg", + "handle": "2017-06-28 12.42.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.32.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 15:02:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.02.32.jpg", + "handle": "2017-06-26 15.02.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.46.55.jpg", + "width": 1600, + "height": 1202, + "orientation": 0, + "taken_at": "2017-06-28 12:46:55", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.46.55.jpg", + "handle": "2017-06-28 12.46.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 19.19.33.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 19:19:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 19.19.33.jpg", + "handle": "2017-06-19 19.19.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 17.51.19.jpg", + "width": 1048, + "height": 1398, + "orientation": 0, + "taken_at": "2017-06-22 17:51:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 17.51.19.jpg", + "handle": "2017-06-22 17.51.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.20.47.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:20:47", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.20.47.jpg", + "handle": "2017-06-26 20.20.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.10.06.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:10:06", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.10.06.jpg", + "handle": "2017-06-27 10.10.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.51.28-1.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 17:51:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 17.51.28-1.jpg", + "handle": "2017-06-26 17.51.28-1.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.09.13.jpg", + "width": 1551, + "height": 1163, + "orientation": 0, + "taken_at": "2017-06-27 13:09:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.09.13.jpg", + "handle": "2017-06-27 13.09.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.28.45.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 16:28:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 16.28.45.jpg", + "handle": "2017-06-19 16.28.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.09.40.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 05:09:40", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.09.40.jpg", + "handle": "2017-06-30 06.09.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.23.42.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:23:42", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.23.42.jpg", + "handle": "2017-06-27 11.23.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.33.19.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 21:18:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 20.33.19.jpg", + "handle": "2017-06-22 20.33.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.16.28.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 05:16:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.16.28.jpg", + "handle": "2017-06-30 06.16.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.19.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 15:02:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.02.19.jpg", + "handle": "2017-06-26 15.02.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 10.30.25.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-18 10:30:25", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 10.30.25.jpg", + "handle": "2017-06-18 10.30.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 14.22.37.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 14:22:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 14.22.37.jpg", + "handle": "2017-06-26 14.22.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.31.43.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 17:31:43", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 17.31.43.jpg", + "handle": "2017-06-26 17.31.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.37.36.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:37:36", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.37.36.jpg", + "handle": "2017-06-27 11.37.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.48.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:29:48", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.29.48.jpg", + "handle": "2017-06-26 20.29.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 14.21.12.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 14:21:12", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 14.21.12.jpg", + "handle": "2017-06-27 14.21.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.51.28.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 19:51:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.51.28.jpg", + "handle": "2017-06-18 19.51.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 06.13.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-17 06:13:49", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-17 06.13.49.jpg", + "handle": "2017-06-17 06.13.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.36.39.jpg", + "width": 1127, + "height": 1504, + "orientation": 0, + "taken_at": "2017-06-26 17:36:39", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 17.36.39.jpg", + "handle": "2017-06-26 17.36.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.40.37.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-20 17:40:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 17.40.37.jpg", + "handle": "2017-06-20 17.40.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.53.39.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 19:53:39", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.53.39.jpg", + "handle": "2017-06-18 19.53.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.14.45.jpg", + "width": 1600, + "height": 901, + "orientation": 0, + "taken_at": "2017-06-20 12:14:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 12.14.45.jpg", + "handle": "2017-06-20 12.14.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.55.11.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:55:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.55.11.jpg", + "handle": "2017-06-27 11.55.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.25.04.jpg", + "width": 1600, + "height": 582, + "orientation": 0, + "taken_at": "2017-06-28 11:25:04", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 11.25.04.jpg", + "handle": "2017-06-28 11.25.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.09.08.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:09:08", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.09.08.jpg", + "handle": "2017-06-28 13.09.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.06.09.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-16 20:06:09", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-16 20.06.09.jpg", + "handle": "2017-06-16 20.06.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.10.41.jpg", + "width": 1033, + "height": 1377, + "orientation": 0, + "taken_at": "2017-06-27 13:10:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.10.41.jpg", + "handle": "2017-06-27 13.10.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.58.52.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:58:52", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.58.52.jpg", + "handle": "2017-06-27 11.58.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.08.08.jpg", + "width": 1479, + "height": 768, + "orientation": 0, + "taken_at": "2017-06-27 13:08:08", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.08.08.jpg", + "handle": "2017-06-27 13.08.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.21.02.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 12:21:02", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 12.21.02.jpg", + "handle": "2017-06-27 12.21.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.54.27.jpg", + "width": 1600, + "height": 886, + "orientation": 0, + "taken_at": "2017-06-18 19:54:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.54.27.jpg", + "handle": "2017-06-18 19.54.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.03.20.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 19:40:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 20.03.20.jpg", + "handle": "2017-06-22 20.03.20.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.35.32.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 13:35:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 13.35.32.jpg", + "handle": "2017-06-25 13.35.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.43.51.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 04:43:50", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.43.51.jpg", + "handle": "2017-06-30 05.43.51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.18.38.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:18:38", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.18.38.jpg", + "handle": "2017-06-27 10.18.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.13.19.jpg", + "width": 1594, + "height": 642, + "orientation": 0, + "taken_at": "2017-06-27 10:13:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.13.19.jpg", + "handle": "2017-06-27 10.13.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.23.32.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:23:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.23.32.jpg", + "handle": "2017-06-27 11.23.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.40.12.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 12:40:12", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 12.40.12.jpg", + "handle": "2017-06-27 12.40.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.39.37.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 12:39:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 12.39.37.jpg", + "handle": "2017-06-18 12.39.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.54.43.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:54:43", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.54.43.jpg", + "handle": "2017-06-27 11.54.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.22.35.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 15:22:35", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.22.35.jpg", + "handle": "2017-06-26 15.22.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 15.07.30-3.jpg", + "width": 1600, + "height": 1067, + "orientation": 0, + "taken_at": "2017-06-30 15:07:30", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 15.07.30-3.jpg", + "handle": "2017-06-30 15.07.30-3.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 13.46.13.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 13:46:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 13.46.13.jpg", + "handle": "2017-06-26 13.46.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 16.51.17.jpg", + "width": 1557, + "height": 529, + "orientation": 0, + "taken_at": "2017-06-27 16:51:17", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 16.51.17.jpg", + "handle": "2017-06-27 16.51.17.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 07.25.27.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 06:25:26", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 07.25.27.jpg", + "handle": "2017-06-30 07.25.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 20.00.04.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 19:28:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 20.00.04.jpg", + "handle": "2017-06-19 20.00.04.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 20.03.24.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 19:42:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 20.03.24.jpg", + "handle": "2017-06-22 20.03.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 18.07.59.jpg", + "width": 951, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 18:07:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 18.07.59.jpg", + "handle": "2017-06-27 18.07.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.00.11.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 15:00:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 15.00.11.jpg", + "handle": "2017-06-19 15.00.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.31.25.jpg", + "width": 900, + "height": 1600, + "orientation": 90, + "taken_at": "2017-06-30 05:51:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.31.25.jpg", + "handle": "2017-06-30 06.31.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.33.26.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-23 12:33:26", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 12.33.26.jpg", + "handle": "2017-06-23 12.33.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.16.45.jpg", + "width": 1553, + "height": 1166, + "orientation": 0, + "taken_at": "2017-06-20 12:16:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 12.16.45.jpg", + "handle": "2017-06-20 12.16.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.17.05-2.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 12:17:05", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.17.05-2.jpg", + "handle": "2017-06-28 12.17.05-2.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 11.46.11.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-18 11:46:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 11.46.11.jpg", + "handle": "2017-06-18 11.46.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.59.26.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 04:59:26", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.59.26.jpg", + "handle": "2017-06-30 05.59.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.27.39.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 18:27:39", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 18.27.39.jpg", + "handle": "2017-06-26 18.27.39.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 22.17.26.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-17 22:17:26", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-17 22.17.26.jpg", + "handle": "2017-06-17 22.17.26.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.02.13.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 13:02:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.02.13.jpg", + "handle": "2017-06-28 13.02.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.21.19.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:31:50", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.21.19.jpg", + "handle": "2017-06-27 11.21.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.02.52.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 15:02:52", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.02.52.jpg", + "handle": "2017-06-26 15.02.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.52.40.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 12:52:40", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.52.40.jpg", + "handle": "2017-06-28 12.52.40.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.49.03.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-20 17:49:03", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 17.49.03.jpg", + "handle": "2017-06-20 17.49.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.57.22.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 04:57:22", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.57.22.jpg", + "handle": "2017-06-30 05.57.22.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 20.00.14.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 20:00:14", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 20.00.14.jpg", + "handle": "2017-06-18 20.00.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.52.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 19:52:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.52.41.jpg", + "handle": "2017-06-18 19.52.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.52.27.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-23 14:52:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 14.52.27.jpg", + "handle": "2017-06-23 14.52.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.51.43.jpg", + "width": 720, + "height": 1280, + "orientation": 90, + "taken_at": "2017-06-30 04:51:42", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.51.43.jpg", + "handle": "2017-06-30 05.51.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.07.53.jpg", + "width": 1531, + "height": 1148, + "orientation": 0, + "taken_at": "2017-06-27 13:07:53", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.07.53.jpg", + "handle": "2017-06-27 13.07.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.52.02.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-23 14:52:02", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 14.52.02.jpg", + "handle": "2017-06-23 14.52.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.51.31.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 13:51:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 13.51.31.jpg", + "handle": "2017-06-30 13.51.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.33.58.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 13:33:58", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 13.33.58.jpg", + "handle": "2017-06-25 13.33.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 12.44.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 12:44:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 12.44.41.jpg", + "handle": "2017-06-27 12.44.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.47.55.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 14:47:55", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 14.47.55.jpg", + "handle": "2017-06-19 14.47.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.38.45.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 13:38:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 13.38.45.jpg", + "handle": "2017-06-25 13.38.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 19.36.27.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 19:36:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 19.36.27.jpg", + "handle": "2017-06-22 19.36.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.05.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 18:37:05", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 18.37.05.jpg", + "handle": "2017-06-22 18.37.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 03.39.33.jpg", + "width": 900, + "height": 1404, + "orientation": 0, + "taken_at": "2017-06-28 02:39:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 03.39.33.jpg", + "handle": "2017-06-28 03.39.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.36.51.jpg", + "width": 1202, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 18:36:51", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 18.36.51.jpg", + "handle": "2017-06-22 18.36.51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.56.03.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-18 19:56:03", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.56.03.jpg", + "handle": "2017-06-18 19.56.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 21.45.06.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-16 21:45:06", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-16 21.45.06.jpg", + "handle": "2017-06-16 21.45.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.14.18.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:14:18", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.14.18.jpg", + "handle": "2017-06-27 10.14.18.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.51.45.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 05:51:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.51.45.jpg", + "handle": "2017-06-30 06.51.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 18.04.16.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 18:04:16", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 18.04.16.jpg", + "handle": "2017-06-26 18.04.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.26.41.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:26:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.26.41.jpg", + "handle": "2017-06-27 10.26.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-17 21.19.24.jpg", + "width": 952, + "height": 1128, + "orientation": 0, + "taken_at": "2017-06-17 21:19:24", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-17 21.19.24.jpg", + "handle": "2017-06-17 21.19.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 14.16.25.jpg", + "width": 1200, + "height": 864, + "orientation": 0, + "taken_at": "2017-06-28 14:16:25", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 14.16.25.jpg", + "handle": "2017-06-28 14.16.25.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 19.36.31.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 19:36:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 19.36.31.jpg", + "handle": "2017-06-22 19.36.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 06.25.41.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 13:36:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 06.25.41.jpg", + "handle": "2017-06-26 06.25.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 19.27.11.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 19:27:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 19.27.11.jpg", + "handle": "2017-06-19 19.27.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.51.51.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-23 14:51:51", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 14.51.51.jpg", + "handle": "2017-06-23 14.51.51.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.16.03.jpg", + "width": 1200, + "height": 1245, + "orientation": 0, + "taken_at": "2017-06-28 11:16:03", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 11.16.03.jpg", + "handle": "2017-06-28 11.16.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.07.14.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 05:07:14", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.07.14.jpg", + "handle": "2017-06-30 06.07.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.27.47.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-20 12:27:47", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 12.27.47.jpg", + "handle": "2017-06-20 12.27.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.02.14.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 21:02:14", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 21.02.14.jpg", + "handle": "2017-06-27 21.02.14.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.59.56.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 12:59:56", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.59.56.jpg", + "handle": "2017-06-28 12.59.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.57.15.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 04:57:14", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.57.15.jpg", + "handle": "2017-06-30 05.57.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.29.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 13:29:49", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.29.49.jpg", + "handle": "2017-06-28 13.29.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.56.16.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 14:56:16", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 14.56.16.jpg", + "handle": "2017-06-19 14.56.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 12.59.31.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-25 12:59:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 12.59.31.jpg", + "handle": "2017-06-25 12.59.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.02.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 18:37:02", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 18.37.02.jpg", + "handle": "2017-06-22 18.37.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.16.55.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 05:16:54", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.16.55.jpg", + "handle": "2017-06-30 06.16.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.51.52.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-23 12:51:52", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 12.51.52.jpg", + "handle": "2017-06-23 12.51.52.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.04.10.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:04:10", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.04.10.jpg", + "handle": "2017-06-26 20.04.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.16.37.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 12:16:36", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 13.16.37.jpg", + "handle": "2017-06-30 13.16.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.30.42.jpg", + "width": 1573, + "height": 576, + "orientation": 0, + "taken_at": "2017-06-27 11:30:42", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.30.42.jpg", + "handle": "2017-06-27 11.30.42.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 19.34.11.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 19:34:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 19.34.11.jpg", + "handle": "2017-06-26 19.34.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.07.56.jpg", + "width": 1600, + "height": 543, + "orientation": 0, + "taken_at": "2017-06-26 15:07:56", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.07.56.jpg", + "handle": "2017-06-26 15.07.56.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-29 08.50.55.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 20:43:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-29 08.50.55.jpg", + "handle": "2017-06-29 08.50.55.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.53.47.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-23 14:53:47", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 14.53.47.jpg", + "handle": "2017-06-23 14.53.47.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.16.35.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 12:16:34", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 13.16.35.jpg", + "handle": "2017-06-30 13.16.35.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.49.16.jpg", + "width": 720, + "height": 1280, + "orientation": 0, + "taken_at": "2017-06-30 04:49:16", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.49.16.jpg", + "handle": "2017-06-30 05.49.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.32.50.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 11:32:50", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.32.50.jpg", + "handle": "2017-06-27 11.32.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.26.11.jpg", + "width": 1600, + "height": 594, + "orientation": 0, + "taken_at": "2017-06-20 12:26:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 12.26.11.jpg", + "handle": "2017-06-20 12.26.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.18.43.jpg", + "width": 1186, + "height": 625, + "orientation": 0, + "taken_at": "2017-06-28 13:18:43", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.18.43.jpg", + "handle": "2017-06-28 13.18.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.07.59.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-18 12:07:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 12.07.59.jpg", + "handle": "2017-06-18 12.07.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.43.07.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 13:43:07", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.43.07.jpg", + "handle": "2017-06-27 13.43.07.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 07.47.50.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 10:03:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 07.47.50.jpg", + "handle": "2017-06-25 07.47.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.04.06.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 15:04:06", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.04.06.jpg", + "handle": "2017-06-26 15.04.06.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 15.00.33.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 15:00:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 15.00.33.jpg", + "handle": "2017-06-19 15.00.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.10.27.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:10:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.10.27.jpg", + "handle": "2017-06-28 13.10.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 14.19.33.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 14:19:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 14.19.33.jpg", + "handle": "2017-06-27 14.19.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.56.12.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 15:56:12", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 15.56.12.jpg", + "handle": "2017-06-22 15.56.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 16.04.32.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 16:04:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 16.04.32.jpg", + "handle": "2017-06-26 16.04.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 06.00.54.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 05:00:54", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 06.00.54.jpg", + "handle": "2017-06-30 06.00.54.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.26.58.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 16:26:58", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 16.26.58.jpg", + "handle": "2017-06-19 16.26.58.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.13.59.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-27 10:13:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.13.59.jpg", + "handle": "2017-06-27 10.13.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.18.38.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 10:18:38", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 10.18.38.jpg", + "handle": "2017-06-28 10.18.38.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 14.22.12.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 14:22:12", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 14.22.12.jpg", + "handle": "2017-06-26 14.22.12.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.42.16.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 12:42:16", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.42.16.jpg", + "handle": "2017-06-28 12.42.16.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.16.08.jpg", + "width": 1021, + "height": 1451, + "orientation": 0, + "taken_at": "2017-06-28 13:16:08", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.16.08.jpg", + "handle": "2017-06-28 13.16.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.17.23.jpg", + "width": 787, + "height": 1520, + "orientation": 0, + "taken_at": "2017-06-28 11:17:23", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 11.17.23.jpg", + "handle": "2017-06-28 11.17.23.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.52.13.jpg", + "width": 1438, + "height": 851, + "orientation": 0, + "taken_at": "2017-06-28 12:52:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.52.13.jpg", + "handle": "2017-06-28 12.52.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 17.51.36.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-26 17:51:36", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 17.51.36.jpg", + "handle": "2017-06-26 17.51.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.10.15.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 13:10:15", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.10.15.jpg", + "handle": "2017-06-27 13.10.15.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 15.08.41.jpg", + "width": 1600, + "height": 1067, + "orientation": 0, + "taken_at": "2017-06-30 15:08:41", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 15.08.41.jpg", + "handle": "2017-06-30 15.08.41.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.25.11.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:25:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.25.11.jpg", + "handle": "2017-06-28 13.25.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.25.59.jpg", + "width": 1510, + "height": 1132, + "orientation": 0, + "taken_at": "2017-06-27 10:25:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.25.59.jpg", + "handle": "2017-06-27 10.25.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 21.08.05.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 21:08:05", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 21.08.05.jpg", + "handle": "2017-06-27 21.08.05.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.07.19.jpg", + "width": 1600, + "height": 1202, + "orientation": 0, + "taken_at": "2017-06-26 15:07:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.07.19.jpg", + "handle": "2017-06-26 15.07.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.55.19.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 15:55:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 15.55.19.jpg", + "handle": "2017-06-22 15.55.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 15.26.00.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 15:26:00", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 15.26.00.jpg", + "handle": "2017-06-26 15.26.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.50.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:29:50", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.29.50.jpg", + "handle": "2017-06-26 20.29.50.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.46.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:29:46", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.29.46.jpg", + "handle": "2017-06-26 20.29.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.38.09.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 18:38:09", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 18.38.09.jpg", + "handle": "2017-06-22 18.38.09.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 12.12.08.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-18 12:12:08", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 12.12.08.jpg", + "handle": "2017-06-18 12.12.08.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 17.36.57.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-20 17:36:57", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 17.36.57.jpg", + "handle": "2017-06-20 17.36.57.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 13.33.11.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 13:33:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 13.33.11.jpg", + "handle": "2017-06-30 13.33.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 12.39.48.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 12:39:48", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 12.39.48.jpg", + "handle": "2017-06-28 12.39.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-20 12.18.11.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-20 12:18:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-20 12.18.11.jpg", + "handle": "2017-06-20 12.18.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 13.07.32.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 13:07:32", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 13.07.32.jpg", + "handle": "2017-06-27 13.07.32.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.53.jpg", + "width": 1600, + "height": 1202, + "orientation": 0, + "taken_at": "2017-06-26 20:29:53", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.29.53.jpg", + "handle": "2017-06-26 20.29.53.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 13.37.59.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 13:37:59", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 13.37.59.jpg", + "handle": "2017-06-25 13.37.59.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-26 20.29.43.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-26 20:29:43", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-26 20.29.43.jpg", + "handle": "2017-06-26 20.29.43.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.04.33.jpg", + "width": 1452, + "height": 690, + "orientation": 0, + "taken_at": "2017-06-28 13:04:33", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.04.33.jpg", + "handle": "2017-06-28 13.04.33.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.25.01.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:25:01", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.25.01.jpg", + "handle": "2017-06-27 11.25.01.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 16.06.13.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-19 16:06:13", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 16.06.13.jpg", + "handle": "2017-06-19 16.06.13.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 18.37.48.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 18:37:48", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 18.37.48.jpg", + "handle": "2017-06-22 18.37.48.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 11.51.24.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 11:51:24", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 11.51.24.jpg", + "handle": "2017-06-27 11.51.24.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-16 20.17.36.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-16 20:17:36", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-16 20.17.36.jpg", + "handle": "2017-06-16 20.17.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 16.50.00.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 16:50:00", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 16.50.00.jpg", + "handle": "2017-06-27 16.50.00.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-18 19.58.49.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-18 19:58:49", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-18 19.58.49.jpg", + "handle": "2017-06-18 19.58.49.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.10.19.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:10:19", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.10.19.jpg", + "handle": "2017-06-27 10.10.19.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 14.54.11.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-23 14:54:11", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 14.54.11.jpg", + "handle": "2017-06-23 14.54.11.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 21.18.37.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 21:18:37", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 21.18.37.jpg", + "handle": "2017-06-22 21.18.37.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-23 12.51.27.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-23 12:51:27", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-23 12.51.27.jpg", + "handle": "2017-06-23 12.51.27.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 15.57.31.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-22 15:57:31", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 15.57.31.jpg", + "handle": "2017-06-22 15.57.31.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-22 21.18.36.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-22 21:18:36", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-22 21.18.36.jpg", + "handle": "2017-06-22 21.18.36.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-25 03.18.03.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-25 10:01:44", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-25 03.18.03.jpg", + "handle": "2017-06-25 03.18.03.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-27 10.16.45.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-27 10:16:45", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-27 10.16.45.jpg", + "handle": "2017-06-27 10.16.45.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 13.03.10.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 13:03:10", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 13.03.10.jpg", + "handle": "2017-06-28 13.03.10.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 10.14.28.jpg", + "width": 1200, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-28 10:14:28", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 10.14.28.jpg", + "handle": "2017-06-28 10.14.28.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 11.27.46.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-28 11:27:46", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 11.27.46.jpg", + "handle": "2017-06-28 11.27.46.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-28 14.17.29.jpg", + "width": 1200, + "height": 1166, + "orientation": 0, + "taken_at": "2017-06-28 14:17:29", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-28 14.17.29.jpg", + "handle": "2017-06-28 14.17.29.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-19 14.50.02.jpg", + "width": 1600, + "height": 1200, + "orientation": 0, + "taken_at": "2017-06-19 14:50:02", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-19 14.50.02.jpg", + "handle": "2017-06-19 14.50.02.jpg" + }, + { + "url": "https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/europe/2017-06-30 05.45.48.jpg", + "width": 900, + "height": 1600, + "orientation": 0, + "taken_at": "2017-06-30 04:45:48", + "camera": "iPhone 7 Plus", + "camera_make": "Apple", + "filename": "sample-imagesets/europe/2017-06-30 05.45.48.jpg", + "handle": "2017-06-30 05.45.48.jpg" + } + ] +} diff --git a/core/data/images.ts b/core/data/images.ts index d4bc227..4817325 100644 --- a/core/data/images.ts +++ b/core/data/images.ts @@ -1,306 +1,306 @@ -import {Image} from '@magiclabs.ai/magicbook-client' +import {Image} from '../types/design-request/image' export const images: Array = [ { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg', - 'width': 1024, - 'height': 768, - 'rotation': 0, - 'captureTime': '2016-05-24 21:12:49', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/IMG_7174.jpg', - 'handle': 'IMG_7174.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7174.jpg', + width: 1024, + height: 768, + rotation: 0, + captureTime: '2016-05-24 21:12:49', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/IMG_7174.jpg', + handle: 'IMG_7174.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 15:50:43', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 18.jpg', - 'handle': 'Rome - 18.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 18.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 15:50:43', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 18.jpg', + handle: 'Rome - 18.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 16:53:48', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 30.jpg', - 'handle': 'Rome - 30.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 30.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 16:53:48', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 30.jpg', + handle: 'Rome - 30.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg', - 'width': 1024, - 'height': 1941, - 'rotation': 0, - 'captureTime': '2016-05-29 16:24:08', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 24.jpg', - 'handle': 'Rome - 24.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 24.jpg', + width: 1024, + height: 1941, + rotation: 0, + captureTime: '2016-05-29 16:24:08', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 24.jpg', + handle: 'Rome - 24.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-27 13:41:24', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 9.jpg', - 'handle': 'Rome - 9.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 9.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-27 13:41:24', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 9.jpg', + handle: 'Rome - 9.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg', - 'width': 1024, - 'height': 768, - 'rotation': 0, - 'captureTime': '2016-05-23 19:47:52', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/IMG_7017.jpg', - 'handle': 'IMG_7017.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7017.jpg', + width: 1024, + height: 768, + rotation: 0, + captureTime: '2016-05-23 19:47:52', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/IMG_7017.jpg', + handle: 'IMG_7017.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 17:12:23', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 32.jpg', - 'handle': 'Rome - 32.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 32.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 17:12:23', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 32.jpg', + handle: 'Rome - 32.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 16:38:55', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 26.jpg', - 'handle': 'Rome - 26.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 26.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 16:38:55', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 26.jpg', + handle: 'Rome - 26.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 16:39:18', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 27.jpg', - 'handle': 'Rome - 27.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 27.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 16:39:18', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 27.jpg', + handle: 'Rome - 27.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 17:12:33', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 33.jpg', - 'handle': 'Rome - 33.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 33.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 17:12:33', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 33.jpg', + handle: 'Rome - 33.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 15:37:10', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 37.jpg', - 'handle': 'Rome - 37.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 37.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 15:37:10', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 37.jpg', + handle: 'Rome - 37.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg', - 'width': 1024, - 'height': 677, - 'rotation': 0, - 'captureTime': '2016-05-29 16:12:45', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 23.jpg', - 'handle': 'Rome - 23.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 23.jpg', + width: 1024, + height: 677, + rotation: 0, + captureTime: '2016-05-29 16:12:45', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 23.jpg', + handle: 'Rome - 23.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg', - 'width': 1024, - 'height': 768, - 'rotation': 0, - 'captureTime': '2016-05-29 16:00:04', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 22.jpg', - 'handle': 'Rome - 22.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 22.jpg', + width: 1024, + height: 768, + rotation: 0, + captureTime: '2016-05-29 16:00:04', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 22.jpg', + handle: 'Rome - 22.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 19:49:32', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 36.jpg', - 'handle': 'Rome - 36.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 36.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 19:49:32', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 36.jpg', + handle: 'Rome - 36.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg', - 'width': 1024, - 'height': 768, - 'rotation': 0, - 'captureTime': '2016-05-29 15:59:39', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 20.jpg', - 'handle': 'Rome - 20.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 20.jpg', + width: 1024, + height: 768, + rotation: 0, + captureTime: '2016-05-29 15:59:39', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 20.jpg', + handle: 'Rome - 20.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 17:26:26', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 34.jpg', - 'handle': 'Rome - 34.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 34.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 17:26:26', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 34.jpg', + handle: 'Rome - 34.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg', - 'width': 1024, - 'height': 512, - 'rotation': 0, - 'captureTime': '2016-05-24 21:00:14', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/IMG_7170.jpg', - 'handle': 'IMG_7170.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7170.jpg', + width: 1024, + height: 512, + rotation: 0, + captureTime: '2016-05-24 21:00:14', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/IMG_7170.jpg', + handle: 'IMG_7170.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg', - 'width': 1024, - 'height': 683, - 'rotation': 0, - 'captureTime': '2016-05-29 18:51:27', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 35.jpg', - 'handle': 'Rome - 35.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 35.jpg', + width: 1024, + height: 683, + rotation: 0, + captureTime: '2016-05-29 18:51:27', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 35.jpg', + handle: 'Rome - 35.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-29 15:59:47', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/Rome - 21.jpg', - 'handle': 'Rome - 21.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/Rome - 21.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-29 15:59:47', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/Rome - 21.jpg', + handle: 'Rome - 21.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg', - 'width': 1024, - 'height': 1365, - 'rotation': 0, - 'captureTime': '2016-05-23 20:04:05', - 'cameraModel': 'iPhone 6 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-nice-and-rome/IMG_7038.jpg', - 'handle': 'IMG_7038.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-nice-and-rome/IMG_7038.jpg', + width: 1024, + height: 1365, + rotation: 0, + captureTime: '2016-05-23 20:04:05', + cameraModel: 'iPhone 6 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-nice-and-rome/IMG_7038.jpg', + handle: 'IMG_7038.jpg' } ] export const additionalImages: Array = [ { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2356.jpg', - 'width': 750, - 'height': 1000, - 'rotation': 0, - 'captureTime': '2018-11-07 19:57:48', - 'cameraModel': 'iPhone XS Max', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-yir-2019-lr/IMG_2356.jpg', - 'handle': 'IMG_2356.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2356.jpg', + width: 750, + height: 1000, + rotation: 0, + captureTime: '2018-11-07 19:57:48', + cameraModel: 'iPhone XS Max', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-yir-2019-lr/IMG_2356.jpg', + handle: 'IMG_2356.jpg' }, { // eslint-disable-next-line max-len - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG', - 'width': 567, - 'height': 1000, - 'rotation': 0, - 'captureTime': '2018-11-04 22:58:04', - 'cameraModel': 'N/A', - 'cameraMake': 'N/A', - 'filename': 'sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG', - 'handle': '8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG', + width: 567, + height: 1000, + rotation: 0, + captureTime: '2018-11-04 22:58:04', + cameraModel: 'N/A', + cameraMake: 'N/A', + filename: 'sample-imagesets/00-yir-2019-lr/8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG', + handle: '8af09cab-1acd-48f1-a0b9-5c273d4f0957 - Copy.JPG' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0596.jpg', - 'width': 1000, - 'height': 750, - 'rotation': 270, - 'captureTime': '2018-07-01 00:41:54', - 'cameraModel': 'iPhone 8 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-yir-2019-lr/IMG_0596.jpg', - 'handle': 'IMG_0596.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0596.jpg', + width: 1000, + height: 750, + rotation: 270, + captureTime: '2018-07-01 00:41:54', + cameraModel: 'iPhone 8 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-yir-2019-lr/IMG_0596.jpg', + handle: 'IMG_0596.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2632.jpg', - 'width': 1000, - 'height': 750, - 'rotation': 180, - 'captureTime': '2018-12-09 10:13:50', - 'cameraModel': 'iPhone XS Max', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-yir-2019-lr/IMG_2632.jpg', - 'handle': 'IMG_2632.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_2632.jpg', + width: 1000, + height: 750, + rotation: 180, + captureTime: '2018-12-09 10:13:50', + cameraModel: 'iPhone XS Max', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-yir-2019-lr/IMG_2632.jpg', + handle: 'IMG_2632.jpg' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8337.jpg', - 'width': 1000, - 'height': 750, - 'rotation': 180, - 'captureTime': '2018-03-18 01:07:56', - 'cameraModel': 'iPhone 8 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-yir-2019-lr/IMG_8337.jpg', - 'handle': 'IMG_8337.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_8337.jpg', + width: 1000, + height: 750, + rotation: 180, + captureTime: '2018-03-18 01:07:56', + cameraModel: 'iPhone 8 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-yir-2019-lr/IMG_8337.jpg', + handle: 'IMG_8337.jpg' }, { // eslint-disable-next-line max-len - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG', - 'width': 750, - 'height': 1000, - 'rotation': 0, - 'captureTime': '2018-11-04 22:58:04', - 'cameraModel': 'N/A', - 'cameraMake': 'N/A', - 'filename': 'sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG', - 'handle': '9c436bfe-e0ed-483c-9094-89b723ee017c.JPG' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG', + width: 750, + height: 1000, + rotation: 0, + captureTime: '2018-11-04 22:58:04', + cameraModel: 'N/A', + cameraMake: 'N/A', + filename: 'sample-imagesets/00-yir-2019-lr/9c436bfe-e0ed-483c-9094-89b723ee017c.JPG', + handle: '9c436bfe-e0ed-483c-9094-89b723ee017c.JPG' }, { - 'url': 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0970.jpg', - 'width': 1000, - 'height': 750, - 'rotation': 0, - 'captureTime': '2018-07-29 16:45:21', - 'cameraModel': 'iPhone 8 Plus', - 'cameraMake': 'Apple', - 'filename': 'sample-imagesets/00-yir-2019-lr/IMG_0970.jpg', - 'handle': 'IMG_0970.jpg' + url: 'https://mb-sls-engine-shared.s3.amazonaws.com/sample-imagesets/00-yir-2019-lr/IMG_0970.jpg', + width: 1000, + height: 750, + rotation: 0, + captureTime: '2018-07-29 16:45:21', + cameraModel: 'iPhone 8 Plus', + cameraMake: 'Apple', + filename: 'sample-imagesets/00-yir-2019-lr/IMG_0970.jpg', + handle: 'IMG_0970.jpg' } ] diff --git a/core/models/design-request/design-options.ts b/core/models/design-request/design-options.ts deleted file mode 100644 index 8a03e66..0000000 --- a/core/models/design-request/design-options.ts +++ /dev/null @@ -1,43 +0,0 @@ -import {z} from 'zod' - -export const imageDensityOptionSchema = z.object({ - maxPageCount: z.number(), - minPageCount: z.number(), - maxImageCount: z.number(), - avgImageCount: z.number(), - minImageCount: z.number() -}) -export type ImageDensityOption = z.infer - -export const imageDensityOptionsSchema = z.object({ - high: imageDensityOptionSchema, - medium: imageDensityOptionSchema, - low: imageDensityOptionSchema -}) -export type ImageDensityOptions = z.infer - -export const designOptionsSchema = z.object({ - densities: imageDensityOptionsSchema -}) -export type DesignOptions = z.infer - -export const imageDensityOptionServerSchema = z.object({ - max_page_count: z.number(), - min_page_count: z.number(), - max_image_count: z.number(), - avg_image_count: z.number(), - min_image_count: z.number() -}) -export type ImageDensityOptionServer = z.infer - -export const imageDensityOptionsServerSchema = z.object({ - high: imageDensityOptionServerSchema, - medium: imageDensityOptionServerSchema, - low: imageDensityOptionServerSchema -}) -export type ImageDensityOptionsServer = z.infer - -export const designOptionsServerSchema = z.object({ - densities: imageDensityOptionsServerSchema -}) -export type DesignOptionsServer = z.infer diff --git a/core/models/engine-api/endpoints/books.ts b/core/models/engine-api/endpoints/books.ts deleted file mode 100644 index 72b199f..0000000 --- a/core/models/engine-api/endpoints/books.ts +++ /dev/null @@ -1,101 +0,0 @@ -import {Book, BookReport, bookPropsSchema} from '../../book' -import {EngineAPI} from '..' -import {bindThisToFunctions, handleAsyncFunction} from '@/core/utils/toolbox' -import {bookCreationRequestSchema} from '../../galleon' -import {cleanJSON} from '@/core/utils/toolbox' - -export class BooksEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - create(book: Partial) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: '/v1/books', - options: { - method: 'POST', - body: cleanJSON(book) - } - }) - bookPropsSchema.safeParse(res) - return new Book(res) - }) - } - - retrieve(bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({path: `/v1/books/${bookId}`}) - bookPropsSchema.safeParse(res) - return new Book(res) - }) - } - - update(bookId: string, book: Partial) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}`, - options: { - method: 'PUT', - body: cleanJSON(book) - } - }) - bookPropsSchema.safeParse(res) - return new Book(res) - }) - } - - design(bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}/design`, - options: {method: 'POST'} - }) - bookPropsSchema.safeParse(res) - return new Book(res) - }) - } - - cancel(bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}/cancel`, - options: {method: 'POST'} - }) - bookPropsSchema.safeParse(res) - return new Book(res) - }) - } - - report(bookId: string, report: BookReport) { - return handleAsyncFunction(async () => { - await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}/report`, - options: { - method: 'POST', - body: cleanJSON(report) - } - }) - }) - } - - delete(bookId: string) { - return handleAsyncFunction(async () => { - await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}`, - options: {method: 'DELETE'} - }) - }) - } - - retrieveGalleon(bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/books/${bookId}/format/galleon` - }) - return bookCreationRequestSchema.parse(res) - }) - } - -} diff --git a/core/models/engine-api/endpoints/design-options.ts b/core/models/engine-api/endpoints/design-options.ts deleted file mode 100644 index 2841ee4..0000000 --- a/core/models/engine-api/endpoints/design-options.ts +++ /dev/null @@ -1,26 +0,0 @@ -import {BookSize, ImageFilteringLevel} from '../../design-request' -import {EngineAPI} from '..' -import {bindThisToFunctions, handleAsyncFunction} from '@/core/utils/toolbox' -import {designOptionsServerSchema} from '../../design-request/design-options' - -export class DesignOptionsEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - retrieve( - bookSize: BookSize, - imageCount: number, - imageFilteringLevel: ImageFilteringLevel - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - // eslint-disable-next-line max-len - path: `/v1/designoptions/booksize/${bookSize}/imagecount/${imageCount}/imagefilteringlevel/${imageFilteringLevel}` - }) - return designOptionsServerSchema.parse(res) - }) - } - -} diff --git a/core/models/engine-api/endpoints/events.ts b/core/models/engine-api/endpoints/events.ts deleted file mode 100644 index 6db7125..0000000 --- a/core/models/engine-api/endpoints/events.ts +++ /dev/null @@ -1,32 +0,0 @@ -import {EngineAPI} from '..' -import {EventContext, eventSchema} from '../../event' -import {bindThisToFunctions, cleanJSON, handleAsyncFunction} from '@/core/utils/toolbox' - -export class EventsEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - createBookEvent( - bookId: string, - name: string, - data?: EventContext - ) { - return handleAsyncFunction(async () => { - const body: EventContext = { - name - } - data && (body['context'] = data) - const res = await this.engineAPI.fetcher.call({ - path: `/v1/events/book/${bookId}`, - options: { - method: 'POST', - body: cleanJSON(body) - } - }) - return eventSchema.parse(res) - }) - } - -} diff --git a/core/models/engine-api/endpoints/images.ts b/core/models/engine-api/endpoints/images.ts deleted file mode 100644 index 5e50307..0000000 --- a/core/models/engine-api/endpoints/images.ts +++ /dev/null @@ -1,68 +0,0 @@ -import {EngineAPI} from '..' -import {ImageServer, imageServerSchema} from '../../design-request/image' -import {bindThisToFunctions, handleAsyncFunction} from '@/core/utils/toolbox' -import {cleanJSON} from '@/core/utils/toolbox' -import {z} from 'zod' - -export class ImagesEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - list(bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/images/book/${bookId}` - }) - return z.array(imageServerSchema).parse(res) - }) - } - - retrieve(imageId: string, bookId: string) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/images/${imageId}/book/${bookId}/` - }) - return imageServerSchema.parse(res) - }) - } - - update(imageId: string, bookId: string, image: ImageServer) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/images/${imageId}/book/${bookId}/`, - options: { - method: 'PUT', - body: cleanJSON(image) - } - }) - return imageServerSchema.parse(res) - }) - } - - delete(imageId: string, bookId: string) { - return handleAsyncFunction(async () => { - await this.engineAPI.fetcher.call({ - path: `/v1/images/${imageId}/book/${bookId}/`, - options: { - method: 'DELETE' - } - }) - }) - } - - addToBook(bookId: string, image: ImageServer) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/images/book/${bookId}`, - options: { - method: 'POST', - body: cleanJSON(image) - } - }) - return imageServerSchema.parse(res) - }) - } - -} diff --git a/core/models/engine-api/endpoints/spreads.ts b/core/models/engine-api/endpoints/spreads.ts deleted file mode 100644 index 3080972..0000000 --- a/core/models/engine-api/endpoints/spreads.ts +++ /dev/null @@ -1,83 +0,0 @@ -import {EngineAPI} from '..' -import {SpreadServer, spreadServerSchema} from '../../spread' -import {bindThisToFunctions, handleAsyncFunction} from '@/core/utils/toolbox' -import {cleanJSON} from '@/core/utils/toolbox' -import {z} from 'zod' - -export class SpreadsEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - list( - bookId: string - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/spreads/book/${bookId}` - }) - return z.array(spreadServerSchema).parse(res) - }) - } - - create( - bookId: string, - spread: SpreadServer - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/spreads/book/${bookId}`, - options: { - method: 'POST', - body: cleanJSON(spread) - } - }) - return spreadServerSchema.parse(res) - }) - } - - retrieve( - spreadId: string, - bookId: string - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/spreads/${spreadId}/book/${bookId}` - }) - return spreadServerSchema.parse(res) - }) - } - - update( - spreadId: string, - bookId: string, - spread: SpreadServer - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/spreads/${spreadId}/book/${bookId}`, - options: { - method: 'PUT', - body: cleanJSON(spread) - } - }) - return spreadServerSchema.parse(res) - }) - } - - delete( - spreadId: string, - bookId: string - ) { - return handleAsyncFunction(async () => { - await this.engineAPI.fetcher.call({ - path: `/v1/spreads/${spreadId}/book/${bookId}`, - options: { - method: 'DELETE' - } - }) - }) - } - -} diff --git a/core/models/engine-api/endpoints/storyboard-items.ts b/core/models/engine-api/endpoints/storyboard-items.ts deleted file mode 100644 index 88d4d83..0000000 --- a/core/models/engine-api/endpoints/storyboard-items.ts +++ /dev/null @@ -1,23 +0,0 @@ -import {EngineAPI} from '..' -import {StoryboardItemServerSchema} from '../../storyboard-item' -import {bindThisToFunctions, handleAsyncFunction} from '@/core/utils/toolbox' -import {z} from 'zod' - -export class StoryboardItemsEndpoints { - // eslint-disable-next-line no-unused-vars - constructor(private readonly engineAPI: EngineAPI) { - bindThisToFunctions(this) - } - - list( - bookId: string - ) { - return handleAsyncFunction(async () => { - const res = await this.engineAPI.fetcher.call({ - path: `/v1/storyboarditems/book/${bookId}` - }) - return z.array(StoryboardItemServerSchema).parse(res) - }) - } - -} diff --git a/core/models/fetcher.ts b/core/models/fetcher.ts deleted file mode 100644 index 4d4541f..0000000 --- a/core/models/fetcher.ts +++ /dev/null @@ -1,54 +0,0 @@ -import {mergeNestedObject} from '../utils/toolbox' - -export type CallProps = { - path: string - options?: RequestInit - apiKey?: string -} - -export const baseOptions: RequestInit = { - headers: { - 'Content-Type': 'application/json' - }, - method: 'GET' -} - -export class Fetcher { - baseUrl: URL - options: RequestInit - - constructor(baseUrl: string, options?: RequestInit | undefined) { - this.baseUrl = new URL(baseUrl) - this.options = mergeNestedObject(baseOptions, options || {}) - } - - async call(props: CallProps) { - try { - if (props.options?.body && typeof props.options.body !== 'string') { - props.options.body = JSON.stringify(props.options?.body) - } - const baseOptions = {...this.options} - const options = props.options ? mergeNestedObject(baseOptions, props.options) : baseOptions - const res = await fetch(this.cleanUrl((new URL(props.path, this.baseUrl)).href), options) - if (res.status >= 200 && res.status < 300) { - try { - return await res.json() - } catch (error) { - return {} - } - } else { - let detail = res.statusText - try { - detail = JSON.stringify((await res.json())?.detail) - } catch (error) { /* empty */ } - throw Error(`${res.status} ${detail}`) - } - } catch (error) { - return Promise.reject(error) - } - } - - cleanUrl(url: string) { - return url.replaceAll(' ', '').trim() - } -} diff --git a/core/models/storyboard-item.ts b/core/models/storyboard-item.ts deleted file mode 100644 index bdd9503..0000000 --- a/core/models/storyboard-item.ts +++ /dev/null @@ -1,98 +0,0 @@ -import {z} from 'zod' - -export const StoryboardItemImageFaceServerSchema = z.object({ - score: z.number(), - bounding_box: z.object({ - x: z.number(), - y: z.number(), - width: z.number(), - height: z.number() - }), - size: z.number(), - eyes_open_score: z.number(), - smile_score: z.number(), - facing_camera_score: z.number() -}) - -export const StoryboardItemImageFaceSchema = z.object({ - score: z.number(), - boundingBox: z.object({ - x: z.number(), - y: z.number(), - width: z.number(), - height: z.number() - }), - size: z.number(), - eyesOpenScore: z.number(), - smileScore: z.number(), - facingCameraScore: z.number() -}) - -export const StoryboardItemImageServerSchema = z.object({ - id: z.string(), - url: z.string(), - category: z.string(), - aesthetic_score: z.number(), - faces: z.array(StoryboardItemImageFaceServerSchema), - roi: z.object({ - x: z.number(), - y: z.number(), - width: z.number(), - height: z.number() - }), - taken_at: z.number(), - width: z.number(), - height: z.number() -}) - -export const StoryboardItemImageSchema = z.object({ - id: z.string(), - url: z.string(), - category: z.string(), - aestheticScore: z.number(), - faces: z.array(StoryboardItemImageFaceSchema), - roi: z.object({ - x: z.number(), - y: z.number(), - width: z.number(), - height: z.number() - }), - takenAt: z.number(), - width: z.number(), - height: z.number() -}) - -export const StoryboardItemServerSchema = z.object({ - id: z.string(), - sequence: z.number(), - book_id: z.string(), - similarity: z.number(), - duplicate: z.boolean(), - selected: z.boolean(), - surface_weight: z.number(), - front_cover: z.boolean().optional(), - back_cover: z.boolean().optional(), - scene: z.number(), - subscene: z.number(), - spine_break: z.boolean().optional(), - image: StoryboardItemImageServerSchema -}) -export type StoryboardItemServer = z.infer - -export const StoryboardItemSchema = z.object({ - id: z.string(), - sequence: z.number(), - bookId: z.string(), - similarity: z.number(), - duplicate: z.boolean(), - selected: z.boolean(), - surfaceWeight: z.number(), - frontCover: z.boolean().optional(), - backCover: z.boolean().optional(), - scene: z.number(), - subscene: z.number(), - spineBreak: z.boolean().optional(), - image: StoryboardItemImageSchema -}) - -export type StoryboardItem = z.infer diff --git a/core/tests/factories/book.factory.ts b/core/tests/factories/book.factory.ts index 3282e68..82f30fc 100644 --- a/core/tests/factories/book.factory.ts +++ b/core/tests/factories/book.factory.ts @@ -1,8 +1,5 @@ -import {Book, BookDesignRequestProps} from '@/core/models/book' -import { - State, - Style -} from '@/core/models/design-request' +import {Book, BookDesignRequestProps} from '@/core/types/book' +import {State, Style} from '@/core/types/design-request' import { bookSizes, coverTypes, @@ -21,8 +18,8 @@ export type BookFactoryProps = { id?: string state?: State title?: string - guid?: string, - design_request?: BookDesignRequestProps, + guid?: string + design_request?: BookDesignRequestProps user_id?: string } @@ -31,21 +28,21 @@ export function bookFactory(props?: BookFactoryProps) { id: props?.id || faker.string.uuid(), state: props?.state || faker.helpers.arrayElement(states), title: props?.title || faker.lorem.words(3), - guid: props?.guid || faker.string.uuid(), + guid: props?.guid || faker.string.uuid(), user_id: props?.user_id || faker.string.uuid(), mb_client_timeout: 60000, design_request: { occasion: props?.design_request?.occasion || faker.helpers.arrayElement(occasions), - style: props?.design_request?.style || - styles[parseInt(faker.helpers.arrayElement(Object.keys(styles))) as Style].slug, + style: + props?.design_request?.style || styles[parseInt(faker.helpers.arrayElement(Object.keys(styles))) as Style].slug, book_size: props?.design_request?.book_size || faker.helpers.arrayElement(bookSizes), cover_type: props?.design_request?.cover_type || faker.helpers.arrayElement(coverTypes), page_type: props?.design_request?.page_type || faker.helpers.arrayElement(pageTypes), image_density: props?.design_request?.image_density || faker.helpers.arrayElement(imageDensities), - image_filtering_level: props?.design_request?.image_filtering_level - || faker.helpers.arrayElement(imageFilteringLevels), - embellishment_level: props?.design_request?.embellishment_level - || faker.helpers.arrayElement(embellishmentLevels), + image_filtering_level: + props?.design_request?.image_filtering_level || faker.helpers.arrayElement(imageFilteringLevels), + embellishment_level: + props?.design_request?.embellishment_level || faker.helpers.arrayElement(embellishmentLevels), text_sticker_level: props?.design_request?.text_sticker_level || faker.helpers.arrayElement(textStickerLevels) } }) diff --git a/core/tests/factories/design-options.factory.ts b/core/tests/factories/design-options.factory.ts index 1a222c4..9b77b2e 100644 --- a/core/tests/factories/design-options.factory.ts +++ b/core/tests/factories/design-options.factory.ts @@ -1,4 +1,4 @@ -import {DesignOptions} from '@/core/models/design-request/design-options' +import {DesignOptions} from '@/core/types/design-request/design-options' import {faker} from '@faker-js/faker' export type ImageDensityOptionServer = { diff --git a/core/tests/factories/embellishment.factory.ts b/core/tests/factories/embellishment.factory.ts new file mode 100644 index 0000000..0437165 --- /dev/null +++ b/core/tests/factories/embellishment.factory.ts @@ -0,0 +1,41 @@ +import {EmbellishmentTextSticker, embellishmentTextStickerSchema} from '@/core/types/embellishment' +import {faker} from '@faker-js/faker' + +export type EmbellishmentTextStickerFactoryProps = { + id?: string + active?: boolean + url?: string + name?: string + pattern?: string + primaryColor?: string + margin?: number + width?: number + height?: number + style?: string + text?: string + isSpecific?: boolean + minSurface?: number + maxSurface?: number +} + +export function embellishmentTextStickerFactory( + props?: EmbellishmentTextStickerFactoryProps +): EmbellishmentTextSticker { + return embellishmentTextStickerSchema.parse({ + id: props?.id || faker.string.uuid(), + active: props?.active || faker.datatype.boolean(), + url: props?.url || faker.internet.url(), + name: props?.name || faker.lorem.word(), + pattern: props?.pattern || faker.lorem.word(), + primaryColor: props?.primaryColor || faker.internet.color(), + margin: props?.margin || faker.number.int(), + width: props?.width || faker.number.int(), + height: props?.height || faker.number.int(), + style: props?.style || faker.lorem.word(), + text: props?.text || faker.lorem.word(), + type: 'text-sticker', + isSpecific: props?.isSpecific || faker.datatype.boolean(), + minSurface: props?.minSurface || faker.number.int(), + maxSurface: props?.maxSurface || faker.number.int() + }) +} diff --git a/core/tests/factories/event.factory.ts b/core/tests/factories/event.factory.ts index 2399fd0..aaa727c 100644 --- a/core/tests/factories/event.factory.ts +++ b/core/tests/factories/event.factory.ts @@ -1,14 +1,18 @@ -import {Event} from '@/core/models/event' +import {Event} from '@/core/types/event' import {faker} from '@faker-js/faker' export type EventFactoryProps = { name?: string context?: Record + createdAt?: string + bookId?: string } export function eventFactory(props?: EventFactoryProps): Event { return { name: props?.name || faker.string.uuid(), - context: props?.context || {} + context: props?.context || {}, + createdAt: props?.createdAt || faker.date.past().toISOString(), + bookId: props?.bookId || faker.string.uuid() } } diff --git a/core/tests/factories/font.factory.ts b/core/tests/factories/font.factory.ts new file mode 100644 index 0000000..74f449a --- /dev/null +++ b/core/tests/factories/font.factory.ts @@ -0,0 +1,26 @@ +import {Font, fontSchema} from '@/core/types/font' +import {faker} from '@faker-js/faker' + +export type FontFactoryProps = { + slug?: string + family?: string +} + +export function fontFactory(props?: FontFactoryProps): Font { + return fontSchema.parse({ + slug: props?.slug || faker.lorem.slug(), + family: props?.family || faker.lorem.word() + }) +} + +// export type EmbellishmentFontFactoryProps = FontFactoryProps & { +// role?: typeof fontRoles[number] +// } + +// export function EmbellishmentFontFactory(props?: EmbellishmentFontFactoryProps): EmbellishmentFont { +// return embellishmentFontSchema.parse({ +// slug: props?.slug || faker.lorem.slug(), +// family: props?.family || faker.lorem.word(), +// role: faker.helpers.arrayElement(fontRoles) +// }) +// } diff --git a/core/tests/factories/galleon.factory.ts b/core/tests/factories/galleon.factory.ts index c442414..36a8782 100644 --- a/core/tests/factories/galleon.factory.ts +++ b/core/tests/factories/galleon.factory.ts @@ -1,4 +1,4 @@ -import {BookCreationRequest, bookCreationRequestSchema} from '@/core/models/galleon' +import {BookCreationRequest, bookCreationRequestSchema} from '@/core/types/galleon' import {faker} from '@faker-js/faker' export type galleonFactoryProps = { @@ -7,1912 +7,1772 @@ export type galleonFactoryProps = { export function galleonFactory(props?: galleonFactoryProps): BookCreationRequest { return bookCreationRequestSchema.parse({ - 'title': props?.title || faker.lorem.words(3), - 'binding': 'sl', - 'coverSpecId': '11x14_bk_hard', - 'styleId': 5161, - 'userId': '01H0D0SNQ05H00ERKG9NRV1GQT', - 'magicShopBook': { - 'pages': [ - { - 'pageNum': 1, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-sapphire', - 'assets': [ + title: props?.title || faker.lorem.words(3), + binding: 'sl', + coverSpecId: '11x14_bk_hard', + styleId: 5161, + userId: '01H0D0SNQ05H00ERKG9NRV1GQT', + magicShopBook: { + pages: [ + { + pageNum: 1, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-sapphire', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_gray', - 'position': { - 'x': 0.0, - 'y': 0.96875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_gray', + position: { + x: 0.0, + y: 0.96875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'bd480e91-12d7-43a8-998f-36a76930bf5d', - 'finalCrop': [ - 4.155587823638307e-17, - 0.001055181026380368, - 0.9237658253468962, - 0.9980757832527607 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.5916666666666667, - 'width': 0.9000000000000001, - 'height': 0.31666666666666676, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 3 + type: 'imageArea', + imageAssignment: { + photoRefId: 'bd480e91-12d7-43a8-998f-36a76930bf5d', + finalCrop: [4.155587823638307e-17, 0.001055181026380368, 0.9237658253468962, 0.9980757832527607] + }, + position: { + x: 0.09166666666666666, + y: 0.5916666666666667, + width: 0.9000000000000001, + height: 0.31666666666666676, + rotation: 0 + }, + seqNum: 2, + z: 3 } ] } }, { - 'pageNum': 2, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-sapphire', - 'assets': [ + pageNum: 2, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-sapphire', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_gray', - 'position': { - 'x': 0.0, - 'y': 0.96875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_gray', + position: { + x: 0.0, + y: 0.96875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'd8090571-a078-4275-8985-e7121c3297c5', - 'finalCrop': [ - 0.070862735930242, - 0.0, - 0.6757048411933999, - 1.0 - ] - }, - 'position': { - 'x': 0.008333333333333304, - 'y': 0.5916666666666667, - 'width': 0.5666666666666669, - 'height': 0.31666666666666676, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1 + type: 'imageArea', + imageAssignment: { + photoRefId: 'd8090571-a078-4275-8985-e7121c3297c5', + finalCrop: [0.070862735930242, 0.0, 0.6757048411933999, 1.0] + }, + position: { + x: 0.008333333333333304, + y: 0.5916666666666667, + width: 0.5666666666666669, + height: 0.31666666666666676, + rotation: 0 + }, + seqNum: 2, + z: 1 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', - 'finalCrop': [ - 0.058809065491988985, - 0.00025045871747572814, - 0.8938356104780887, - 0.992252826690615 - ] - }, - 'position': { - 'x': -0.4083333333333333, - 'y': 0.09166666666666666, - 'width': 1.3166666666666664, - 'height': 0.48333333333333345, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 2 + type: 'imageArea', + imageAssignment: { + photoRefId: '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', + finalCrop: [0.058809065491988985, 0.00025045871747572814, 0.8938356104780887, 0.992252826690615] + }, + position: { + x: -0.4083333333333333, + y: 0.09166666666666666, + width: 1.3166666666666664, + height: 0.48333333333333345, + rotation: 0 + }, + seqNum: 3, + z: 2 }, { - 'type': 'embellishment', - 'id': 'emb_pplains_am-texture-circle-frost', - 'position': { - 'x': -0.05833333333333335, - 'y': 0.5333333333333333, - 'width': 0.1166666666666667, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 4 + type: 'embellishment', + id: 'emb_pplains_am-texture-circle-frost', + position: { + x: -0.05833333333333335, + y: 0.5333333333333333, + width: 0.1166666666666667, + rotation: 0 + }, + seqNum: 4, + z: 4 } ] } }, { - 'pageNum': 3, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_white', - 'assets': [ + pageNum: 3, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_white', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-paint-sapphire', - 'position': { - 'x': 0.0, - 'y': 0.8583333333333333, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-paint-sapphire', + position: { + x: 0.0, + y: 0.8583333333333333, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '88606d07-311c-41e1-bea7-1d6fc70b449d', - 'finalCrop': [ - 0.17915298968239823, - 0.0, - 0.7703108844192406, - 1.0 - ] - }, - 'position': { - 'x': -0.01, - 'y': 0.3416666666666667, - 'width': 0.5850000000000001, - 'height': 0.31666666666666665, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 2 + type: 'imageArea', + imageAssignment: { + photoRefId: '88606d07-311c-41e1-bea7-1d6fc70b449d', + finalCrop: [0.17915298968239823, 0.0, 0.7703108844192406, 1.0] + }, + position: { + x: -0.01, + y: 0.3416666666666667, + width: 0.5850000000000001, + height: 0.31666666666666665, + rotation: 0 + }, + seqNum: 2, + z: 2 } ] } }, { - 'pageNum': 4, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_white', - 'assets': [ + pageNum: 4, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_white', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-paint-sapphire', - 'position': { - 'x': 0.0, - 'y': 0.8583333333333333, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-paint-sapphire', + position: { + x: 0.0, + y: 0.8583333333333333, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'db7ffae8-d785-4d4e-8966-501486c1ac3f', - 'finalCrop': [ - 0.06415409330404728, - 0.002503752708333333, - 1.0, - 0.9978238642214646 - ] - }, - 'position': { - 'x': -0.5333333333333333, - 'y': 0.175, - 'width': 1.5433333333333332, - 'height': 0.6499999999999999, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1 + type: 'imageArea', + imageAssignment: { + photoRefId: 'db7ffae8-d785-4d4e-8966-501486c1ac3f', + finalCrop: [0.06415409330404728, 0.002503752708333333, 1.0, 0.9978238642214646] + }, + position: { + x: -0.5333333333333333, + y: 0.175, + width: 1.5433333333333332, + height: 0.6499999999999999, + rotation: 0 + }, + seqNum: 2, + z: 1 } ] } }, { - 'pageNum': 5, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_antique-white', - 'assets': [ + pageNum: 5, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_antique-white', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'baa2816e-c41a-404d-8a73-33b6878231aa', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.04, - 'y': -0.02, - 'width': 1.0316666666666667, - 'height': 0.5116666666666666, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'baa2816e-c41a-404d-8a73-33b6878231aa', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -0.04, + y: -0.02, + width: 1.0316666666666667, + height: 0.5116666666666666, + rotation: 0 + }, + seqNum: 1, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.04, - 'y': 0.5083333333333333, - 'width': 1.0316666666666667, - 'height': 0.5116666666666667, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -0.04, + y: 0.5083333333333333, + width: 1.0316666666666667, + height: 0.5116666666666667, + rotation: 0 + }, + seqNum: 2, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 6, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_dark-gray', - 'assets': [ + pageNum: 6, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_dark-gray', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-paint-pumpkin', - 'position': { - 'x': 0.0, - 'y': 0.8408203125, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-paint-pumpkin', + position: { + x: 0.0, + y: 0.8408203125, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '73f77bc2-4047-40ed-bd0f-b75212cf7651', - 'finalCrop': [ - 2.478781565533229e-17, - 0.0, - 0.9999999999999999, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666656, - 'y': 0.21666666666666665, - 'width': 0.8166666666666667, - 'height': 0.5666666666666668, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '73f77bc2-4047-40ed-bd0f-b75212cf7651', + finalCrop: [2.478781565533229e-17, 0.0, 0.9999999999999999, 1.0] + }, + position: { + x: 0.09166666666666656, + y: 0.21666666666666665, + width: 0.8166666666666667, + height: 0.5666666666666668, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': -1, - 'type': 'frontCover', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_pumpkin', - 'assets': [ + pageNum: -1, + type: 'frontCover', + canvas: { + backgroundId: 'bg_sq_sfly_pumpkin', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-striae-frost', - 'position': { - 'x': 0.0, - 'y': 0.90166015625, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-striae-frost', + position: { + x: 0.0, + y: 0.90166015625, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', - 'finalCrop': [ - 9.988511242691467e-18, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.02, - 'y': 0.4250000000000001, - 'width': 1.04, - 'height': 0.44166666666666665, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', + finalCrop: [9.988511242691467e-18, 0.0, 1.0, 1.0] + }, + position: { + x: -0.02, + y: 0.4250000000000001, + width: 1.04, + height: 0.44166666666666665, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'bd480e91-12d7-43a8-998f-36a76930bf5d', - 'finalCrop': [ - 2.624349901237673e-16, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.5916666666666667, - 'y': 0.21666666666666667, - 'width': 0.31666666666666676, - 'height': 0.27499999999999997, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'bd480e91-12d7-43a8-998f-36a76930bf5d', + finalCrop: [2.624349901237673e-16, 0.0, 1.0, 1.0] + }, + position: { + x: 0.5916666666666667, + y: 0.21666666666666667, + width: 0.31666666666666676, + height: 0.27499999999999997, + rotation: 0 + }, + seqNum: 3, + z: 2, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_sfly_rugged', - 'position': { - 'x': 0.0, - 'y': 0.8666666666666667, - 'width': 0.9912280701754386, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_rugged', + position: { + x: 0.0, + y: 0.8666666666666667, + width: 0.9912280701754386, + rotation: 0 + }, + seqNum: 4, + z: 10 }, { - 'type': 'textArea', - 'horizJustification': 'center', - 'vertJustification': null, - 'text': 'My Book', - 'fontId': 'font_avante-garde_book', - 'fontSize': 34, - 'fontColor': '#000000', - 'seqNum': 5, - 'z': 200, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.30000000000000004, - 'width': 0.4833333333333334, - 'height': 0.10833333333333327, - 'rotation': 0 + type: 'textArea', + horizJustification: 'center', + vertJustification: null, + text: 'My Book', + fontId: 'font_avante-garde_book', + fontSize: 34, + fontColor: '#000000', + seqNum: 5, + z: 200, + position: { + x: 0.09166666666666666, + y: 0.30000000000000004, + width: 0.4833333333333334, + height: 0.10833333333333327, + rotation: 0 } } ] } }, { - 'pageNum': 7, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-sapphire', - 'assets': [ + pageNum: 7, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-sapphire', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_lure_es-zigzag-white', - 'position': { - 'x': 0.0, - 'y': 0.982421875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_lure_es-zigzag-white', + position: { + x: 0.0, + y: 0.982421875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'embellishment', - 'id': 'emb_pplains_am-leaf5-frost', - 'position': { - 'x': 0.03436027482471871, - 'y': 0.232324160740369, - 'width': 0.11666666666666667, - 'rotation': 1 - }, - 'seqNum': 2, - 'z': 2 + type: 'embellishment', + id: 'emb_pplains_am-leaf5-frost', + position: { + x: 0.03436027482471871, + y: 0.232324160740369, + width: 0.11666666666666667, + rotation: 1 + }, + seqNum: 2, + z: 2 } ] } }, { - 'pageNum': 8, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-sapphire', - 'assets': [ + pageNum: 8, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-sapphire', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_lure_es-zigzag-white', - 'position': { - 'x': 0.0, - 'y': 0.982421875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_lure_es-zigzag-white', + position: { + x: 0.0, + y: 0.982421875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '9fdad740-04d3-49fd-8907-dac5e2b23012', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.9083333333333333, - 'y': 0.09166666666666666, - 'width': 1.1916666666666667, - 'height': 0.8166666666666668, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '9fdad740-04d3-49fd-8907-dac5e2b23012', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -0.9083333333333333, + y: 0.09166666666666666, + width: 1.1916666666666667, + height: 0.8166666666666668, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.2166666666666666, - 'y': 0.30000000000000004, - 'width': 0.6916666666666667, - 'height': 0.4, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: 0.2166666666666666, + y: 0.30000000000000004, + width: 0.6916666666666667, + height: 0.4, + rotation: 0 + }, + seqNum: 3, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': -3, - 'type': 'backCover', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_amber', - 'assets': [ + pageNum: -3, + type: 'backCover', + canvas: { + backgroundId: 'bg_sq_sfly_amber', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-weeds', - 'position': { - 'x': 0.0, - 'y': 0.78662109375, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-weeds', + position: { + x: 0.0, + y: 0.78662109375, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'db7ffae8-d785-4d4e-8966-501486c1ac3f', - 'finalCrop': [ - 9.988511242691467e-18, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.02, - 'y': 0.13333333333333333, - 'width': 1.04, - 'height': 0.4833333333333334, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'db7ffae8-d785-4d4e-8966-501486c1ac3f', + finalCrop: [9.988511242691467e-18, 0.0, 1.0, 1.0] + }, + position: { + x: -0.02, + y: 0.13333333333333333, + width: 1.04, + height: 0.4833333333333334, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_sfly_navy', - 'position': { - 'x': 0.0, - 'y': 0.10364583333333334, - 'width': 0.9912280701754386, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_navy', + position: { + x: 0.0, + y: 0.10364583333333334, + width: 0.9912280701754386, + rotation: 0 + }, + seqNum: 3, + z: 10 }, { - 'type': 'embellishment', - 'id': 'pb_sfly_navy', - 'position': { - 'x': 0.0, - 'y': 0.6166666666666667, - 'width': 0.9912280701754386, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_navy', + position: { + x: 0.0, + y: 0.6166666666666667, + width: 0.9912280701754386, + rotation: 0 + }, + seqNum: 4, + z: 10 } ] } }, { - 'pageNum': 9, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_frost', - 'assets': [ + pageNum: 9, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_frost', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', - 'finalCrop': [ - 1.012169139259402e-16, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.09166666666666666, - 'width': 0.3999999999999999, - 'height': 0.3999999999999999, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', + finalCrop: [1.012169139259402e-16, 0.0, 1.0, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.09166666666666666, + width: 0.3999999999999999, + height: 0.3999999999999999, + rotation: 0 + }, + seqNum: 1, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 10, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_frost', - 'assets': [ + pageNum: 10, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_frost', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -1.04, - 'y': 0.3416666666666667, - 'width': 2.08, - 'height': 0.6783333333333333, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -1.04, + y: 0.3416666666666667, + width: 2.08, + height: 0.6783333333333333, + rotation: 0 + }, + seqNum: 1, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_sfly_gray2', - 'position': { - 'x': -1.0, - 'y': 0.2791666666666667, - 'width': 1.9916666666666667, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_gray2', + position: { + x: -1.0, + y: 0.2791666666666667, + width: 1.9916666666666667, + rotation: 0 + }, + seqNum: 2, + z: 10 } ] } }, { - 'pageNum': 11, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_taupe', - 'assets': [ + pageNum: 11, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_taupe', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-spray-white', - 'position': { - 'x': 0.06666666666666667, - 'y': 0.0, - 'width': 1.0, - 'rotation': 90 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-spray-white', + position: { + x: 0.06666666666666667, + y: 0.0, + width: 1.0, + rotation: 90 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '4198042f-65ed-4244-a3cb-30c2ebde9ae8', - 'finalCrop': [ - 4.957563131066458e-17, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.25833333333333336, - 'width': 0.8166666666666668, - 'height': 0.48333333333333334, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '4198042f-65ed-4244-a3cb-30c2ebde9ae8', + finalCrop: [4.957563131066458e-17, 0.0, 1.0, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.25833333333333336, + width: 0.8166666666666668, + height: 0.48333333333333334, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 12, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_antique-white', - 'assets': [ + pageNum: 12, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_antique-white', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '242b01e4-eed5-4d73-afcc-f77efd073b97', - 'finalCrop': [ - 1.8395642676362313e-17, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.008333333333333304, - 'y': 0.09166666666666666, - 'width': 1.0316666666666667, - 'height': 0.8166666666666668, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '242b01e4-eed5-4d73-afcc-f77efd073b97', + finalCrop: [1.8395642676362313e-17, 0.0, 1.0, 1.0] + }, + position: { + x: 0.008333333333333304, + y: 0.09166666666666666, + width: 1.0316666666666667, + height: 0.8166666666666668, + rotation: 0 + }, + seqNum: 1, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-amber', - 'position': { - 'x': 0.004166666666666652, - 'y': 0.06358235677083333, - 'width': 0.9916666666666666, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 10 + type: 'embellishment', + id: 'pb_pplains_am-swash-amber', + position: { + x: 0.004166666666666652, + y: 0.06358235677083333, + width: 0.9916666666666666, + rotation: 0 + }, + seqNum: 2, + z: 10 }, { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-amber', - 'position': { - 'x': 0.004166666666666652, - 'y': 0.9083333333333333, - 'width': 0.9916666666666666, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 10 + type: 'embellishment', + id: 'pb_pplains_am-swash-amber', + position: { + x: 0.004166666666666652, + y: 0.9083333333333333, + width: 0.9916666666666666, + rotation: 0 + }, + seqNum: 3, + z: 10 } ] } }, { - 'pageNum': 13, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_sapphire', - 'assets': [ + pageNum: 13, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_sapphire', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '9172b18b-2920-44c7-a24e-54d71f692484', - 'finalCrop': [ - 0.0, - 0.0, - 0.9999999999999999, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.09166666666666666, - 'width': 0.5666666666666668, - 'height': 0.3166666666666666, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '9172b18b-2920-44c7-a24e-54d71f692484', + finalCrop: [0.0, 0.0, 0.9999999999999999, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.09166666666666666, + width: 0.5666666666666668, + height: 0.3166666666666666, + rotation: 0 + }, + seqNum: 1, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 14, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_sapphire', - 'assets': [ + pageNum: 14, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_sapphire', + assets: [ { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '56b8ab69-d957-41f9-8892-6a5e459c4f31', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -1.04, - 'y': 0.3416666666666667, - 'width': 2.08, - 'height': 0.5666666666666668, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '56b8ab69-d957-41f9-8892-6a5e459c4f31', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -1.04, + y: 0.3416666666666667, + width: 2.08, + height: 0.5666666666666668, + rotation: 0 + }, + seqNum: 1, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_sfly_gray', - 'position': { - 'x': -1.0, - 'y': 0.2791666666666667, - 'width': 1.9916666666666667, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_gray', + position: { + x: -1.0, + y: 0.2791666666666667, + width: 1.9916666666666667, + rotation: 0 + }, + seqNum: 2, + z: 10 }, { - 'type': 'embellishment', - 'id': 'pb_sfly_gray', - 'position': { - 'x': -1.0, - 'y': 0.9083333333333333, - 'width': 1.9916666666666667, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_gray', + position: { + x: -1.0, + y: 0.9083333333333333, + width: 1.9916666666666667, + rotation: 0 + }, + seqNum: 3, + z: 10 } ] } }, { - 'pageNum': 15, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-whitewash', - 'assets': [ + pageNum: 15, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-whitewash', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-amber', - 'position': { - 'x': 0.0, - 'y': 0.9716796875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-swash-amber', + position: { + x: 0.0, + y: 0.9716796875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'embellishment', - 'id': 'emb_pplains_am-spray-leaf', - 'position': { - 'x': -0.0458591060076256, - 'y': 0.13002933953086698, - 'width': 0.7083333333333334, - 'rotation': 346 - }, - 'seqNum': 2, - 'z': 0 + type: 'embellishment', + id: 'emb_pplains_am-spray-leaf', + position: { + x: -0.0458591060076256, + y: 0.13002933953086698, + width: 0.7083333333333334, + rotation: 346 + }, + seqNum: 2, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '3ef88fda-7916-4305-9974-76fd22c5c823', - 'finalCrop': [ - 4.957563131066458e-17, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.21666666666666665, - 'width': 0.8166666666666668, - 'height': 0.5666666666666668, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '3ef88fda-7916-4305-9974-76fd22c5c823', + finalCrop: [4.957563131066458e-17, 0.0, 1.0, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.21666666666666665, + width: 0.8166666666666668, + height: 0.5666666666666668, + rotation: 0 + }, + seqNum: 3, + z: 1, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 16, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_olive', - 'assets': [ + pageNum: 16, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_olive', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-amber', - 'position': { - 'x': 0.0, - 'y': 0.9716796875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-swash-amber', + position: { + x: 0.0, + y: 0.9716796875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'c206902e-0a2c-4345-ad06-fd4df12b39ff', - 'finalCrop': [ - 2.478781565533229e-17, - 0.0, - 0.9999999999999999, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666656, - 'y': 0.21666666666666665, - 'width': 0.8166666666666667, - 'height': 0.5666666666666668, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'c206902e-0a2c-4345-ad06-fd4df12b39ff', + finalCrop: [2.478781565533229e-17, 0.0, 0.9999999999999999, 1.0] + }, + position: { + x: 0.09166666666666656, + y: 0.21666666666666665, + width: 0.8166666666666667, + height: 0.5666666666666668, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 17, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-amber', - 'assets': [ + pageNum: 17, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-amber', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-pumpkin', - 'position': { - 'x': 0.0, - 'y': 0.9716796875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-swash-pumpkin', + position: { + x: 0.0, + y: 0.9716796875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 } ] } }, { - 'pageNum': 18, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_pplains_am-weeds-amber', - 'assets': [ + pageNum: 18, + type: 'page', + canvas: { + backgroundId: 'bg_sq_pplains_am-weeds-amber', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_pplains_am-swash-pumpkin', - 'position': { - 'x': 0.0, - 'y': 0.9716796875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_pplains_am-swash-pumpkin', + position: { + x: 0.0, + y: 0.9716796875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.7833333333333333, - 'y': 0.5499999999999999, - 'width': 1.5666666666666662, - 'height': 0.3583333333333334, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -0.7833333333333333, + y: 0.5499999999999999, + width: 1.5666666666666662, + height: 0.3583333333333334, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -0.7833333333333333, - 'y': 0.09166666666666666, - 'width': 1.5666666666666662, - 'height': 0.4416666666666667, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -0.7833333333333333, + y: 0.09166666666666666, + width: 1.5666666666666662, + height: 0.4416666666666667, + rotation: 0 + }, + seqNum: 3, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 19, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_frost', - 'assets': [ + pageNum: 19, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_frost', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_navy', - 'position': { - 'x': 0.0, - 'y': 0.96875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_navy', + position: { + x: 0.0, + y: 0.96875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'embellishment', - 'id': 'emb_pplains_am-spray-frost', - 'position': { - 'x': 0.09615526831176045, - 'y': 0.5490955053929046, - 'width': 0.325, - 'rotation': 14 - }, - 'seqNum': 2, - 'z': 0 + type: 'embellishment', + id: 'emb_pplains_am-spray-frost', + position: { + x: 0.09615526831176045, + y: 0.5490955053929046, + width: 0.325, + rotation: 14 + }, + seqNum: 2, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'e0e0f6fe-c37c-454b-9adb-c606496289d3', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.5083333333333333, - 'width': 0.48333333333333345, - 'height': 0.31666666666666665, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'e0e0f6fe-c37c-454b-9adb-c606496289d3', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.5083333333333333, + width: 0.48333333333333345, + height: 0.31666666666666665, + rotation: 0 + }, + seqNum: 3, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': 'a89cfe7d-4d08-40c3-9de4-5742951da972', - 'finalCrop': [ - 4.957563131066458e-17, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.09166666666666666, - 'y': 0.175, - 'width': 0.8166666666666668, - 'height': 0.31666666666666665, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: 'a89cfe7d-4d08-40c3-9de4-5742951da972', + finalCrop: [4.957563131066458e-17, 0.0, 1.0, 1.0] + }, + position: { + x: 0.09166666666666666, + y: 0.175, + width: 0.8166666666666668, + height: 0.31666666666666665, + rotation: 0 + }, + seqNum: 4, + z: 2, + frame: 'frame_line_solid_medium_white' } ] } }, { - 'pageNum': 20, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_white', - 'assets': [ + pageNum: 20, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_white', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_navy', - 'position': { - 'x': 0.0, - 'y': 0.96875, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_navy', + position: { + x: 0.0, + y: 0.96875, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', - 'finalCrop': [ - 1.8395642676362313e-17, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.008333333333333304, - 'y': 0.175, - 'width': 1.0316666666666667, - 'height': 0.6499999999999999, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', + finalCrop: [1.8395642676362313e-17, 0.0, 1.0, 1.0] + }, + position: { + x: 0.008333333333333304, + y: 0.175, + width: 1.0316666666666667, + height: 0.6499999999999999, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_sfly_mossgreen', - 'position': { - 'x': 0.004166666666666652, - 'y': 0.14401041666666667, - 'width': 0.9916666666666666, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_mossgreen', + position: { + x: 0.004166666666666652, + y: 0.14401041666666667, + width: 0.9916666666666666, + rotation: 0 + }, + seqNum: 3, + z: 10 }, { - 'type': 'embellishment', - 'id': 'pb_sfly_mossgreen', - 'position': { - 'x': 0.004166666666666652, - 'y': 0.825, - 'width': 0.9916666666666666, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 10 + type: 'embellishment', + id: 'pb_sfly_mossgreen', + position: { + x: 0.004166666666666652, + y: 0.825, + width: 0.9916666666666666, + rotation: 0 + }, + seqNum: 4, + z: 10 } ] } }, { - 'pageNum': 21, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_pumpkin', - 'assets': [ + pageNum: 21, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_pumpkin', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_rugged', - 'position': { - 'x': 0.0, - 'y': 0.9912109375, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_rugged', + position: { + x: 0.0, + y: 0.9912109375, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 } ] } }, { - 'pageNum': 22, - 'type': 'page', - 'canvas': { - 'backgroundId': 'bg_sq_sfly_pumpkin', - 'assets': [ + pageNum: 22, + type: 'page', + canvas: { + backgroundId: 'bg_sq_sfly_pumpkin', + assets: [ { - 'type': 'embellishment', - 'id': 'pb_sfly_rugged', - 'position': { - 'x': 0.0, - 'y': 0.9912109375, - 'width': 1.0, - 'rotation': 0 - }, - 'seqNum': 1, - 'z': 0 + type: 'embellishment', + id: 'pb_sfly_rugged', + position: { + x: 0.0, + y: 0.9912109375, + width: 1.0, + rotation: 0 + }, + seqNum: 1, + z: 0 }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '03f46435-de5c-463f-afea-27301069bbb9', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': -1.04, - 'y': 0.09166666666666666, - 'width': 2.08, - 'height': 0.5666666666666668, - 'rotation': 0 - }, - 'seqNum': 2, - 'z': 1, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '03f46435-de5c-463f-afea-27301069bbb9', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: -1.04, + y: 0.09166666666666666, + width: 2.08, + height: 0.5666666666666668, + rotation: 0 + }, + seqNum: 2, + z: 1, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'imageArea', - 'imageAssignment': { - 'photoRefId': '1580d921-409b-4a48-89ed-dfd62a3d9eff', - 'finalCrop': [ - 0.0, - 0.0, - 1.0, - 1.0 - ] - }, - 'position': { - 'x': 0.34166666666666656, - 'y': 0.5916666666666667, - 'width': 0.5666666666666667, - 'height': 0.31666666666666676, - 'rotation': 0 - }, - 'seqNum': 3, - 'z': 2, - 'frame': 'frame_line_solid_medium_white' + type: 'imageArea', + imageAssignment: { + photoRefId: '1580d921-409b-4a48-89ed-dfd62a3d9eff', + finalCrop: [0.0, 0.0, 1.0, 1.0] + }, + position: { + x: 0.34166666666666656, + y: 0.5916666666666667, + width: 0.5666666666666667, + height: 0.31666666666666676, + rotation: 0 + }, + seqNum: 3, + z: 2, + frame: 'frame_line_solid_medium_white' }, { - 'type': 'embellishment', - 'id': 'pb_lure_es-zigzag-white', - 'position': { - 'x': -1.0, - 'y': 0.05651041666666667, - 'width': 1.9916666666666667, - 'rotation': 0 - }, - 'seqNum': 4, - 'z': 10 + type: 'embellishment', + id: 'pb_lure_es-zigzag-white', + position: { + x: -1.0, + y: 0.05651041666666667, + width: 1.9916666666666667, + rotation: 0 + }, + seqNum: 4, + z: 10 }, { - 'type': 'embellishment', - 'id': 'pb_lure_es-zigzag-white', - 'position': { - 'x': -1.0, - 'y': 0.6583333333333333, - 'width': 1.9916666666666667, - 'rotation': 0 - }, - 'seqNum': 5, - 'z': 10 + type: 'embellishment', + id: 'pb_lure_es-zigzag-white', + position: { + x: -1.0, + y: 0.6583333333333333, + width: 1.9916666666666667, + rotation: 0 + }, + seqNum: 5, + z: 10 } ] } } ], - 'photoStrip': [ - { - 'url': 'https://loremflickr.com/1000/465', - 'encryptId': '', - 'photoRefId': 'e0e0f6fe-c37c-454b-9adb-c606496289d3', - 'photoId': 'e0e0f6fe-c37c-454b-9adb-c606496289d3', - 'photoMetadata': { - 'id': '01H0D0SPFVYYWP8SSVGHMVYMN1', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 465, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:15' + photoStrip: [ + { + url: 'https://loremflickr.com/1000/465', + encryptId: '', + photoRefId: 'e0e0f6fe-c37c-454b-9adb-c606496289d3', + photoId: 'e0e0f6fe-c37c-454b-9adb-c606496289d3', + photoMetadata: { + id: '01H0D0SPFVYYWP8SSVGHMVYMN1', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 465, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:15' } }, { - 'url': 'https://loremflickr.com/1000/277', - 'encryptId': '', - 'photoRefId': 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', - 'photoId': 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', - 'photoMetadata': { - 'id': '01H0D0SPPRBM1KDGWV0QQ99C19', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 277, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/277', + encryptId: '', + photoRefId: 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', + photoId: 'e294c1bf-7041-41b2-afb1-c6b0bcae2ef1', + photoMetadata: { + id: '01H0D0SPPRBM1KDGWV0QQ99C19', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 277, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/443', - 'encryptId': '', - 'photoRefId': '73f77bc2-4047-40ed-bd0f-b75212cf7651', - 'photoId': '73f77bc2-4047-40ed-bd0f-b75212cf7651', - 'photoMetadata': { - 'id': '01H0D0SPWT1ZGZH4WF193C7SP3', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 443, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:15' + url: 'https://loremflickr.com/1000/443', + encryptId: '', + photoRefId: '73f77bc2-4047-40ed-bd0f-b75212cf7651', + photoId: '73f77bc2-4047-40ed-bd0f-b75212cf7651', + photoMetadata: { + id: '01H0D0SPWT1ZGZH4WF193C7SP3', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 443, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:15' } }, { - 'url': 'https://loremflickr.com/1000/494', - 'encryptId': '', - 'photoRefId': 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', - 'photoId': 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', - 'photoMetadata': { - 'id': '01H0D0SRXD4MXYNP17YK8ED2B8', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 494, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/494', + encryptId: '', + photoRefId: 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', + photoId: 'bb1831fc-a2db-4b0d-bacf-ce052a42d521', + photoMetadata: { + id: '01H0D0SRXD4MXYNP17YK8ED2B8', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 494, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/417', - 'encryptId': '', - 'photoRefId': '9172b18b-2920-44c7-a24e-54d71f692484', - 'photoId': '9172b18b-2920-44c7-a24e-54d71f692484', - 'photoMetadata': { - 'id': '01H0D0SRY4GYE4VD6N58J2GJH1', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 417, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/417', + encryptId: '', + photoRefId: '9172b18b-2920-44c7-a24e-54d71f692484', + photoId: '9172b18b-2920-44c7-a24e-54d71f692484', + photoMetadata: { + id: '01H0D0SRY4GYE4VD6N58J2GJH1', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 417, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/272', - 'encryptId': '', - 'photoRefId': 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', - 'photoId': 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', - 'photoMetadata': { - 'id': '01H0D0SS2JXDFPCTXYF6TV9FAY', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 272, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/272', + encryptId: '', + photoRefId: 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', + photoId: 'bc52bcc6-74ff-4e43-8916-5e455a448f6b', + photoMetadata: { + id: '01H0D0SS2JXDFPCTXYF6TV9FAY', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 272, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/449', - 'encryptId': '', - 'photoRefId': '9fdad740-04d3-49fd-8907-dac5e2b23012', - 'photoId': '9fdad740-04d3-49fd-8907-dac5e2b23012', - 'photoMetadata': { - 'id': '01H0D0SS2ZGDPACYWTDAFR252B', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 449, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/449', + encryptId: '', + photoRefId: '9fdad740-04d3-49fd-8907-dac5e2b23012', + photoId: '9fdad740-04d3-49fd-8907-dac5e2b23012', + photoMetadata: { + id: '01H0D0SS2ZGDPACYWTDAFR252B', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 449, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/320', - 'encryptId': '', - 'photoRefId': '88606d07-311c-41e1-bea7-1d6fc70b449d', - 'photoId': '88606d07-311c-41e1-bea7-1d6fc70b449d', - 'photoMetadata': { - 'id': '01H0D0SS31W0ANM9ZPPY69DRBA', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 320, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/320', + encryptId: '', + photoRefId: '88606d07-311c-41e1-bea7-1d6fc70b449d', + photoId: '88606d07-311c-41e1-bea7-1d6fc70b449d', + photoMetadata: { + id: '01H0D0SS31W0ANM9ZPPY69DRBA', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 320, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/309', - 'encryptId': '', - 'photoRefId': '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', - 'photoId': '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', - 'photoMetadata': { - 'id': '01H0D0SS39C9H9H691M9Q5MFQQ', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 309, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/309', + encryptId: '', + photoRefId: '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', + photoId: '466754bf-d8ba-4ab2-9a31-46068cdfcbf0', + photoMetadata: { + id: '01H0D0SS39C9H9H691M9Q5MFQQ', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 309, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/393', - 'encryptId': '', - 'photoRefId': '3ef88fda-7916-4305-9974-76fd22c5c823', - 'photoId': '3ef88fda-7916-4305-9974-76fd22c5c823', - 'photoMetadata': { - 'id': '01H0D0SS4FDCWY0J7MA25BBY5D', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 393, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/393', + encryptId: '', + photoRefId: '3ef88fda-7916-4305-9974-76fd22c5c823', + photoId: '3ef88fda-7916-4305-9974-76fd22c5c823', + photoMetadata: { + id: '01H0D0SS4FDCWY0J7MA25BBY5D', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 393, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/480', - 'encryptId': '', - 'photoRefId': 'baa2816e-c41a-404d-8a73-33b6878231aa', - 'photoId': 'baa2816e-c41a-404d-8a73-33b6878231aa', - 'photoMetadata': { - 'id': '01H0D0SS4QR3F82KPHEH0ECGJ8', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 480, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/480', + encryptId: '', + photoRefId: 'baa2816e-c41a-404d-8a73-33b6878231aa', + photoId: 'baa2816e-c41a-404d-8a73-33b6878231aa', + photoMetadata: { + id: '01H0D0SS4QR3F82KPHEH0ECGJ8', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 480, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/459', - 'encryptId': '', - 'photoRefId': '1580d921-409b-4a48-89ed-dfd62a3d9eff', - 'photoId': '1580d921-409b-4a48-89ed-dfd62a3d9eff', - 'photoMetadata': { - 'id': '01H0D0SS4WKCBVRZHW1PG8BCFX', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 459, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/459', + encryptId: '', + photoRefId: '1580d921-409b-4a48-89ed-dfd62a3d9eff', + photoId: '1580d921-409b-4a48-89ed-dfd62a3d9eff', + photoMetadata: { + id: '01H0D0SS4WKCBVRZHW1PG8BCFX', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 459, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/396', - 'encryptId': '', - 'photoRefId': 'db7ffae8-d785-4d4e-8966-501486c1ac3f', - 'photoId': 'db7ffae8-d785-4d4e-8966-501486c1ac3f', - 'photoMetadata': { - 'id': '01H0D0SS55RD170PJQ5CJMNS8Q', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 396, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/396', + encryptId: '', + photoRefId: 'db7ffae8-d785-4d4e-8966-501486c1ac3f', + photoId: 'db7ffae8-d785-4d4e-8966-501486c1ac3f', + photoMetadata: { + id: '01H0D0SS55RD170PJQ5CJMNS8Q', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 396, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/338', - 'encryptId': '', - 'photoRefId': 'd8090571-a078-4275-8985-e7121c3297c5', - 'photoId': 'd8090571-a078-4275-8985-e7121c3297c5', - 'photoMetadata': { - 'id': '01H0D0SS780XC8A2ECJF9CESMC', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 338, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/338', + encryptId: '', + photoRefId: 'd8090571-a078-4275-8985-e7121c3297c5', + photoId: 'd8090571-a078-4275-8985-e7121c3297c5', + photoMetadata: { + id: '01H0D0SS780XC8A2ECJF9CESMC', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 338, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/223', - 'encryptId': '', - 'photoRefId': '56b8ab69-d957-41f9-8892-6a5e459c4f31', - 'photoId': '56b8ab69-d957-41f9-8892-6a5e459c4f31', - 'photoMetadata': { - 'id': '01H0D0SS86JA4E20G8F8Q3W1WX', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 223, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/223', + encryptId: '', + photoRefId: '56b8ab69-d957-41f9-8892-6a5e459c4f31', + photoId: '56b8ab69-d957-41f9-8892-6a5e459c4f31', + photoMetadata: { + id: '01H0D0SS86JA4E20G8F8Q3W1WX', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 223, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/486', - 'encryptId': '', - 'photoRefId': '4198042f-65ed-4244-a3cb-30c2ebde9ae8', - 'photoId': '4198042f-65ed-4244-a3cb-30c2ebde9ae8', - 'photoMetadata': { - 'id': '01H0D0SS8QB0M5QD67T6TDXEYV', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 486, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/486', + encryptId: '', + photoRefId: '4198042f-65ed-4244-a3cb-30c2ebde9ae8', + photoId: '4198042f-65ed-4244-a3cb-30c2ebde9ae8', + photoMetadata: { + id: '01H0D0SS8QB0M5QD67T6TDXEYV', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 486, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/485', - 'encryptId': '', - 'photoRefId': '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', - 'photoId': '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', - 'photoMetadata': { - 'id': '01H0D0SS8RHCFKS0F9CER8SSXC', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 485, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/485', + encryptId: '', + photoRefId: '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', + photoId: '4cd9c882-62f4-45a5-98e0-185d7f1e3a14', + photoMetadata: { + id: '01H0D0SS8RHCFKS0F9CER8SSXC', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 485, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/253', - 'encryptId': '', - 'photoRefId': 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', - 'photoId': 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', - 'photoMetadata': { - 'id': '01H0D0SS916FKW818X0KDJNGSX', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 253, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/253', + encryptId: '', + photoRefId: 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', + photoId: 'a994bf13-13e9-46c2-9d8c-45137d9c4a90', + photoMetadata: { + id: '01H0D0SS916FKW818X0KDJNGSX', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 253, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/464', - 'encryptId': '', - 'photoRefId': '242b01e4-eed5-4d73-afcc-f77efd073b97', - 'photoId': '242b01e4-eed5-4d73-afcc-f77efd073b97', - 'photoMetadata': { - 'id': '01H0D0SS95YP0471T3KJYTDKKY', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 464, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/464', + encryptId: '', + photoRefId: '242b01e4-eed5-4d73-afcc-f77efd073b97', + photoId: '242b01e4-eed5-4d73-afcc-f77efd073b97', + photoMetadata: { + id: '01H0D0SS95YP0471T3KJYTDKKY', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 464, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/372', - 'encryptId': '', - 'photoRefId': 'a89cfe7d-4d08-40c3-9de4-5742951da972', - 'photoId': 'a89cfe7d-4d08-40c3-9de4-5742951da972', - 'photoMetadata': { - 'id': '01H0D0SS9XYKFC9T3GXMWZZ657', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 372, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/372', + encryptId: '', + photoRefId: 'a89cfe7d-4d08-40c3-9de4-5742951da972', + photoId: 'a89cfe7d-4d08-40c3-9de4-5742951da972', + photoMetadata: { + id: '01H0D0SS9XYKFC9T3GXMWZZ657', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 372, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/461', - 'encryptId': '', - 'photoRefId': 'c206902e-0a2c-4345-ad06-fd4df12b39ff', - 'photoId': 'c206902e-0a2c-4345-ad06-fd4df12b39ff', - 'photoMetadata': { - 'id': '01H0D0SS9ZBV29NY6MH8DGY5NC', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 461, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/461', + encryptId: '', + photoRefId: 'c206902e-0a2c-4345-ad06-fd4df12b39ff', + photoId: 'c206902e-0a2c-4345-ad06-fd4df12b39ff', + photoMetadata: { + id: '01H0D0SS9ZBV29NY6MH8DGY5NC', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 461, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/407', - 'encryptId': '', - 'photoRefId': '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', - 'photoId': '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', - 'photoMetadata': { - 'id': '01H0D0SSAH4ENDSRWC59R2B2FY', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 407, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/407', + encryptId: '', + photoRefId: '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', + photoId: '2e7b0eba-ff7c-40a9-bc39-242ea54bf3ff', + photoMetadata: { + id: '01H0D0SSAH4ENDSRWC59R2B2FY', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 407, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/326', - 'encryptId': '', - 'photoRefId': 'bd480e91-12d7-43a8-998f-36a76930bf5d', - 'photoId': 'bd480e91-12d7-43a8-998f-36a76930bf5d', - 'photoMetadata': { - 'id': '01H0D0SSASSV0H8ACRWGS26HAZ', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 326, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:17' + url: 'https://loremflickr.com/1000/326', + encryptId: '', + photoRefId: 'bd480e91-12d7-43a8-998f-36a76930bf5d', + photoId: 'bd480e91-12d7-43a8-998f-36a76930bf5d', + photoMetadata: { + id: '01H0D0SSASSV0H8ACRWGS26HAZ', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 326, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:17' } }, { - 'url': 'https://loremflickr.com/1000/226', - 'encryptId': '', - 'photoRefId': '03f46435-de5c-463f-afea-27301069bbb9', - 'photoId': '03f46435-de5c-463f-afea-27301069bbb9', - 'photoMetadata': { - 'id': '01H0D0SSB77X2ET8Y7KCMHHTPP', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 226, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/226', + encryptId: '', + photoRefId: '03f46435-de5c-463f-afea-27301069bbb9', + photoId: '03f46435-de5c-463f-afea-27301069bbb9', + photoMetadata: { + id: '01H0D0SSB77X2ET8Y7KCMHHTPP', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 226, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } }, { - 'url': 'https://loremflickr.com/1000/486', - 'encryptId': '', - 'photoRefId': '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', - 'photoId': '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', - 'photoMetadata': { - 'id': '01H0D0SSDAM0NEDVX3JSPCJS0Q', - 'llx': 0.0, - 'lly': 0.0, - 'urx': 1.0, - 'ury': 1.0, - 'data': null, - 'title': '', - 'width': 1000, - 'effect': 'Auto', - 'height': 486, - 'source': 'mb', - 'rotation': 0, - 'uploadTime': '2023:05:14 11:37:18' + url: 'https://loremflickr.com/1000/486', + encryptId: '', + photoRefId: '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', + photoId: '4c391bae-d0d2-45a0-a5b9-ecc5549b36d9', + photoMetadata: { + id: '01H0D0SSDAM0NEDVX3JSPCJS0Q', + llx: 0.0, + lly: 0.0, + urx: 1.0, + ury: 1.0, + data: null, + title: '', + width: 1000, + effect: 'Auto', + height: 486, + source: 'mb', + rotation: 0, + uploadTime: '2023:05:14 11:37:18' } } ] }, - 'reportingData': { - 'properties': [ + reportingData: { + properties: [ { - 'key': 'overtimeDays', - 'value': '' + key: 'overtimeDays', + value: '' }, { - 'key': 'stickerText', - 'value': '' + key: 'stickerText', + value: '' }, { - 'key': 'iterations', - 'value': 1 + key: 'iterations', + value: 1 }, { - 'key': 'designRequestdays', - 'value': 3 + key: 'designRequestdays', + value: 3 }, { - 'key': 'mmbDesigner', - 'value': null + key: 'mmbDesigner', + value: null }, { - 'key': 'curationStep', - 'value': true + key: 'curationStep', + value: true }, { - 'key': 'mmbSeen', - 'value': null + key: 'mmbSeen', + value: null }, { - 'key': 'size', - 'value': '10x10' + key: 'size', + value: '10x10' }, { - 'key': 'style', - 'value': 'autumn-memories-sfly' + key: 'style', + value: 'autumn-memories-sfly' }, { - 'key': 'styleName', - 'value': 'Autumn Memories Sfly' + key: 'styleName', + value: 'Autumn Memories Sfly' }, { - 'key': 'styleId', - 'value': null + key: 'styleId', + value: null }, { - 'key': 'title', - 'value': 'My Book' + key: 'title', + value: 'My Book' }, { - 'key': 'subTitle', - 'value': '' + key: 'subTitle', + value: '' }, { - 'key': 'curate', - 'value': true + key: 'curate', + value: true }, { - 'key': 'priority', - 'value': 0 + key: 'priority', + value: 0 }, { - 'key': 'promoCode', - 'value': 2 + key: 'promoCode', + value: 2 }, { - 'key': 'coverStyle', - 'value': 'hc' + key: 'coverStyle', + value: 'hc' }, { - 'key': 'coverSpecId', - 'value': '10x10_bk_hard' + key: 'coverSpecId', + value: '10x10_bk_hard' }, { - 'key': 'focusOption', - 'value': '' + key: 'focusOption', + value: '' }, { - 'key': 'phoneNumber', - 'value': '' + key: 'phoneNumber', + value: '' }, { - 'key': 'productType', - 'value': 'photobook' + key: 'productType', + value: 'photobook' }, { - 'key': 'creationTime', - 'value': null + key: 'creationTime', + value: null }, { - 'key': 'curateDensity', - 'value': 1 + key: 'curateDensity', + value: 1 }, { - 'key': 'initialDevice', - 'value': 'desktop' + key: 'initialDevice', + value: 'desktop' }, { - 'key': 'spreadDensity', - 'value': 'high' + key: 'spreadDensity', + value: 'high' }, { - 'key': 'photoStripSort', - 'value': 'datetime' + key: 'photoStripSort', + value: 'datetime' }, { - 'key': 'stickerDensity', - 'value': 'few' + key: 'stickerDensity', + value: 'few' }, { - 'key': 'photoStripCount', - 'value': 25 + key: 'photoStripCount', + value: 25 }, { - 'key': 'specialInstructions', - 'value': '' + key: 'specialInstructions', + value: '' } ] } diff --git a/core/tests/factories/image.factory.ts b/core/tests/factories/image.factory.ts index f1052dc..6eddd2d 100644 --- a/core/tests/factories/image.factory.ts +++ b/core/tests/factories/image.factory.ts @@ -1,4 +1,4 @@ -import {Image, ImageServer} from '@/core/models/design-request/image' +import {Image, ImageServer} from '@/core/types/design-request/image' import {faker} from '@faker-js/faker' export type ImageFactoryProps = { diff --git a/core/tests/factories/pagination.factory.ts b/core/tests/factories/pagination.factory.ts new file mode 100644 index 0000000..89080f7 --- /dev/null +++ b/core/tests/factories/pagination.factory.ts @@ -0,0 +1,20 @@ +import {faker} from '@faker-js/faker' +import {paginatedResponseSchema} from '@/core/types/engine-api/pagination' +import {z} from 'zod' + +type PaginationFactoryProps = { + count?: number + schema: z.ZodSchema + factory: () => Record +} + +export function paginationFactory(props: PaginationFactoryProps) { + const count = props?.count || 10 + const pagination = { + nextCursor: faker.string.uuid(), + previousCursor: faker.string.uuid(), + count, + results: Array.from({length: count}, () => props.factory()) + } + return paginatedResponseSchema(props.schema).parse(pagination) +} diff --git a/core/tests/factories/spread.factory.ts b/core/tests/factories/spread.factory.ts index 6811e88..b54d444 100644 --- a/core/tests/factories/spread.factory.ts +++ b/core/tests/factories/spread.factory.ts @@ -1,4 +1,4 @@ -import {Spread, SpreadServer, spreadSchema, spreadServerSchema} from '@/core/models/spread' +import {Spread, SpreadServer, spreadSchema, spreadServerSchema} from '@/core/types/spread' import {camelCaseObjectKeysToSnakeCase} from '@/core/utils/toolbox' import {faker} from '@faker-js/faker' @@ -30,4 +30,3 @@ export function spreadFactory(props?: SpreadFactoryProps): Spread { export function spreadServerFactory(props?: SpreadFactoryProps): SpreadServer { return spreadServerSchema.parse(camelCaseObjectKeysToSnakeCase(spreadFactory(props))) } - diff --git a/core/tests/factories/storyboard-item.factory.ts b/core/tests/factories/storyboard-item.factory.ts index 0fe20a2..a29e74d 100644 --- a/core/tests/factories/storyboard-item.factory.ts +++ b/core/tests/factories/storyboard-item.factory.ts @@ -1,10 +1,4 @@ -import { - StoryboardItem, - StoryboardItemSchema, - StoryboardItemServer, - StoryboardItemServerSchema -} from '@/core/models/storyboard-item' -import {camelCaseObjectKeysToSnakeCase} from '@/core/utils/toolbox' +import {StoryboardItem, StoryboardItemSchema} from '@/core/types/storyboard-item' import {faker} from '@faker-js/faker' export type StoryboardItemFactoryProps = { @@ -30,7 +24,10 @@ export function storyboardItemFactory(props?: StoryboardItemFactoryProps): Story id: faker.string.uuid(), url: faker.internet.url(), category: faker.lorem.word(), - aestheticScore: faker.number.int({min: 1, max: 100}), + aesthetics: { + score: faker.number.int({min: 1, max: 100}), + scoreWithoutDistance: faker.number.int({min: 1, max: 100}) + }, faces: [], roi: { x: faker.number.int({min: 1, max: 100}), @@ -44,10 +41,3 @@ export function storyboardItemFactory(props?: StoryboardItemFactoryProps): Story } }) } - -export function storyboardItemServerFactory(props?: StoryboardItemFactoryProps): StoryboardItemServer { - return StoryboardItemServerSchema.parse( - camelCaseObjectKeysToSnakeCase(storyboardItemFactory(props)) - ) -} - diff --git a/core/tests/factories/style.factory.ts b/core/tests/factories/style.factory.ts new file mode 100644 index 0000000..70a00ef --- /dev/null +++ b/core/tests/factories/style.factory.ts @@ -0,0 +1,76 @@ +import {Style, StyleBase, styleBaseSchema, styleSchema} from '@/core/types/style' +import {StyleFont} from '@/client/src' +import {faker} from '@faker-js/faker' + +export type StyleBaseFactoryProps = { + active?: boolean + name?: string + slug?: string +} + +export function styleBaseFactory(props?: StyleBaseFactoryProps): StyleBase { + faker.seed() + const name = faker.lorem.words(3) + return styleBaseSchema.parse({ + active: props?.active || false, + name: props?.name || name, + slug: props?.slug || faker.helpers.slugify(name) + }) +} + +export type StyleFactoryProps = StyleBaseFactoryProps & { + position?: number + layoutConstraints?: Record + colors?: Record + fonts: Array + compatibleBackgrounds: Array +} + +export function styleFactory(props?: StyleFactoryProps): Style { + faker.seed() + const name = faker.lorem.words(3) + return styleSchema.parse({ + active: props?.active || false, + name: props?.name || name, + slug: props?.slug || faker.helpers.slugify(name), + position: props?.position || 1, + layoutConstraints: props?.layoutConstraints || { + lots: { + whitespace: { + min: 0, + max: 0 + }, + iWhitespace: { + min: 0, + max: 0 + }, + classes: [] + }, + few: { + whitespace: { + min: 0, + max: 0 + }, + iWhitespace: { + min: 0, + max: 0 + }, + classes: [] + }, + none: { + whitespace: { + min: 0, + max: 0 + }, + iWhitespace: { + min: 0, + max: 0 + }, + classes: [] + } + }, + colors: props?.colors || {}, + compatibleBackgrounds: props?.compatibleBackgrounds || [], + fonts: props?.fonts || [] + }) +} diff --git a/core/tests/mocks/websocket.ts b/core/tests/mocks/websocket.ts index 6c0c386..d730a02 100644 --- a/core/tests/mocks/websocket.ts +++ b/core/tests/mocks/websocket.ts @@ -7,7 +7,7 @@ export class WebSocketMock { // eslint-disable-next-line @typescript-eslint/ban-ts-comment //@ts-ignore // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars, @typescript-eslint/no-empty-function - constructor(url: string|URL){} + constructor(url: string | URL) {} // eslint-disable-next-line @typescript-eslint/no-empty-function close() { diff --git a/core/tests/models/engine-api/events.test.ts b/core/tests/models/engine-api/events.test.ts deleted file mode 100644 index 848cae2..0000000 --- a/core/tests/models/engine-api/events.test.ts +++ /dev/null @@ -1,22 +0,0 @@ -import {EngineAPI} from '@/core/models/engine-api' -import {describe, expect, test} from 'vitest' -import {eventFactory} from '../../factories/event.factory' -import {fetchMocker} from '../../mocks/fetch' - -describe('Engine API Design Options Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - - test('createBookEvent', async () => { - const fakeEvent = eventFactory() - fetchMocker.mockResponse(JSON.stringify(fakeEvent)) - const event = await engineAPI.events.createBookEvent('bookId', 'book.viewed') - expect(event).toStrictEqual(fakeEvent) - }) - - test('createBookEvent with context', async () => { - const fakeEvent = eventFactory({context: {foo: 'bar'}}) - fetchMocker.mockResponse(JSON.stringify(fakeEvent)) - const event = await engineAPI.events.createBookEvent('bookId', 'book.viewed', fakeEvent.context) - expect(event).toStrictEqual(fakeEvent) - }) -}) diff --git a/core/tests/models/engine-api/spreads.test.ts b/core/tests/models/engine-api/spreads.test.ts deleted file mode 100644 index c15d747..0000000 --- a/core/tests/models/engine-api/spreads.test.ts +++ /dev/null @@ -1,42 +0,0 @@ -import {EngineAPI} from '@/core/models/engine-api' -import {describe, expect, test} from 'vitest' -import {fetchMocker} from '../../mocks/fetch' -import {spreadServerFactory} from '../../factories/spread.factory' - -describe('Engine API Spreads Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - - test('list', async () => { - const fakeSpreadList = [spreadServerFactory(), spreadServerFactory()] - fetchMocker.mockResponse(JSON.stringify(fakeSpreadList)) - const spreads = await engineAPI.spreads.list('bookId') - expect(spreads).toEqual(JSON.parse(JSON.stringify(fakeSpreadList))) - }) - - test('create', async () => { - const fakeSpread = spreadServerFactory() - fetchMocker.mockResponse(JSON.stringify(fakeSpread)) - const image = await engineAPI.spreads.create('bookId', fakeSpread) - expect(image).toEqual(JSON.parse(JSON.stringify(fakeSpread))) - }) - - test('retrieve', async () => { - const fakeSpread = spreadServerFactory() - fetchMocker.mockResponse(JSON.stringify(fakeSpread)) - const image = await engineAPI.spreads.retrieve('spreadId', 'bookId') - expect(image).toEqual(JSON.parse(JSON.stringify(fakeSpread))) - }) - - test('update', async () => { - const fakeSpread = spreadServerFactory() - fetchMocker.mockResponse(JSON.stringify(fakeSpread)) - const image = await engineAPI.spreads.update('spreadId', 'bookId', fakeSpread) - expect(image).toEqual(JSON.parse(JSON.stringify(fakeSpread))) - }) - - test('delete', async () => { - fetchMocker.mockResponse(JSON.stringify({})) - const image = await engineAPI.spreads.delete('spreadId', 'bookId') - expect(image).toBeUndefined() - }) -}) diff --git a/core/tests/models/engine-api/storyboard-items.test.ts b/core/tests/models/engine-api/storyboard-items.test.ts deleted file mode 100644 index a8fdb05..0000000 --- a/core/tests/models/engine-api/storyboard-items.test.ts +++ /dev/null @@ -1,15 +0,0 @@ -import {EngineAPI} from '@/core/models/engine-api' -import {describe, expect, test} from 'vitest' -import {fetchMocker} from '../../mocks/fetch' -import {storyboardItemServerFactory} from '../../factories/storyboard-item.factory' - -describe('Engine API Storyboard Items Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - - test('retrieve', async () => { - const fakeStoryBoardItems = [storyboardItemServerFactory(), storyboardItemServerFactory()] - fetchMocker.mockResponse(JSON.stringify(fakeStoryBoardItems)) - const storyboardItems = await engineAPI.storyboardItems.list('bookId') - expect(storyboardItems).toStrictEqual(JSON.parse(JSON.stringify(fakeStoryBoardItems))) - }) -}) diff --git a/core/tests/models/fetcher.test.ts b/core/tests/models/fetcher.test.ts deleted file mode 100644 index 7efeebd..0000000 --- a/core/tests/models/fetcher.test.ts +++ /dev/null @@ -1,43 +0,0 @@ -import {Fetcher, baseOptions} from '@/core/models/fetcher' -import {describe, expect, test} from 'vitest' -import {fetchMocker} from '@/core/tests/mocks/fetch' - -describe('Fetcher', () => { - const fetcher = new Fetcher('https://api.fake-server.com') - test('init without options', async () => { - expect(fetcher.options).toBe(baseOptions) - }) - test.fails('fail call', async () => { - fetchMocker.mockReject(() => Promise.reject('Something went wrong. Please try again.')) - const res = await fetcher.call({path:'/books'}) - expect(res).toThrowError('Something went wrong. Please try again.') - }) - test.fails('fail call when status code is > 300 with detailed message', async () => { - fetchMocker.mockResponse(() => Promise.resolve( - { - status: 400, - statusText: 'Error 400', - body: JSON.stringify({ - detail: 'Detail error' - }) - } - )) - const res = await fetcher.call({path:'/books'}) - expect(res).toThrowError('400 Detail error') - }) - test.fails('fail call when status code is > 300 with statusText', async () => { - fetchMocker.mockResponse(() => Promise.resolve( - { - status: 400, - statusText: 'Error 400' - } - )) - const res = await fetcher.call({path:'/books'}) - expect(res).toThrowError('400 Detail error') - }) - test.fails('fail call when status code is > 300', async () => { - fetchMocker.mockResponse({status: 400, statusText: 'Error 400'}) - const res = await fetcher.call({path:'/books'}) - expect(res).toThrowError('Error 400') - }) -}) diff --git a/core/tests/shared.ts b/core/tests/shared.ts new file mode 100644 index 0000000..fb54882 --- /dev/null +++ b/core/tests/shared.ts @@ -0,0 +1,4 @@ +import {EngineAPI} from '../types/engine-api' + +// export const engineAPI = new EngineAPI('https://api.dev-sls.magicbook.io', '862d2288-8dcb-451a-80c4-7cc66795d24e') +export const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') diff --git a/core/tests/models/book.test.ts b/core/tests/types/book.test.ts similarity index 95% rename from core/tests/models/book.test.ts rename to core/tests/types/book.test.ts index d886bbd..b43490d 100644 --- a/core/tests/models/book.test.ts +++ b/core/tests/types/book.test.ts @@ -1,4 +1,4 @@ -import {Book} from '../../models/book' +import {Book} from '../../types/book' import {bookFactory} from '../factories/book.factory' import {describe, expect, test} from 'vitest' @@ -25,7 +25,7 @@ describe('Book', () => { const book = bookFactory() expect(book).toStrictEqual(new Book(book.toBookProps())) }) - + test('book to BookProps with undefined timeout', async () => { const book = bookFactory() book.timeout = undefined diff --git a/core/tests/models/client.test.ts b/core/tests/types/client.test.ts similarity index 75% rename from core/tests/models/client.test.ts rename to core/tests/types/client.test.ts index dba3f49..fb62408 100644 --- a/core/tests/models/client.test.ts +++ b/core/tests/types/client.test.ts @@ -1,5 +1,5 @@ -import {DesignRequestProps} from '@/core/models/design-request' -import {MagicBookClient} from '@/core/models/client' +import {DesignRequestProps} from '@/core/types/design-request' +import {MagicBookClient} from '@/core/types/client' import {bookFactory} from '@/core/tests/factories/book.factory' import {describe, expect, test} from 'vitest' import {fetchMocker} from '@/core/tests/mocks/fetch' @@ -37,4 +37,11 @@ describe('Client', () => { const designRequest = await client.createDesignRequest({...designRequestProps}) expect(designRequest).toThrowError('userId is required') }) + test('retrieveDesignRequest', async () => { + const client = new MagicBookClient('123') + const book = bookFactory() + fetchMocker.mockResponse(JSON.stringify(book)) + const designRequest = await client.retrieveDesignRequest(book.id) + expect(designRequest.parentId).toStrictEqual(book.id) + }) }) diff --git a/core/tests/models/design-request.test.ts b/core/tests/types/design-request.test.ts similarity index 95% rename from core/tests/models/design-request.test.ts rename to core/tests/types/design-request.test.ts index bd4ca01..5fa2ea2 100644 --- a/core/tests/models/design-request.test.ts +++ b/core/tests/types/design-request.test.ts @@ -3,9 +3,9 @@ import { DesignRequestEvent, DesignRequestEventDetail, DesignRequestProps -} from '@/core/models/design-request' -import {Image, ImageServer, Images} from '@/core/models/design-request/image' -import {MagicBookClient} from '@/core/models/client' +} from '@/core/types/design-request' +import {Image, ImageServer, Images} from '@/core/types/design-request/image' +import {MagicBookClient} from '@/core/types/client' import {SpyInstance, beforeEach, describe, expect, test, vi} from 'vitest' import {WebSocketMock} from '@/core/tests/mocks/websocket' import {bookFactory} from '@/core/tests/factories/book.factory' @@ -34,7 +34,7 @@ describe('Design Request', async () => { const client = new MagicBookClient('123', 'https://api.magicbook.mock', webSocketHost) beforeEach(async () => { - ws = vi.spyOn(window, 'WebSocket').mockImplementation((value) => (new WebSocketMock(value) as unknown as WebSocket)) + ws = vi.spyOn(window, 'WebSocket').mockImplementation((value) => new WebSocketMock(value) as unknown as WebSocket) }) async function createDesignRequest(props?: Partial) { @@ -82,7 +82,7 @@ describe('Design Request', async () => { height: 500, rotation: 0, captureTime: '2021-01-01T00:00:00.000Z', - cameraMake: 'cameraMake', + cameraMake: 'cameraMake', cameraModel: 'cameraModel', filename: 'filename' } @@ -99,7 +99,7 @@ describe('Design Request', async () => { height: 500, rotation: 0, captureTime: '2021-01-01T00:00:00.000Z', - cameraMake: 'cameraMake', + cameraMake: 'cameraMake', cameraModel: 'cameraModel', filename: 'filename' } @@ -135,8 +135,9 @@ describe('Design Request', async () => { test.fails('submitDesignRequest while dr cannot be resubmitted', async () => { const designRequest = await createDesignRequest({state: 'submitted'}) const designRequestJSON = await designRequest.submit() - expect(designRequestJSON) - .toThrowError('You need to wait for the current design request to be ready before submitting a new one') + expect(designRequestJSON).toThrowError( + 'You need to wait for the current design request to be ready before submitting a new one' + ) }) test('submitDesignRequest', async () => { @@ -154,7 +155,7 @@ describe('Design Request', async () => { }) expect(ws).toHaveBeenCalledWith(`${webSocketHost}/?book_id=${designRequest.parentId}`) expect(submitDesignRequest).toStrictEqual(designRequest) - const submittedDetail = { + const submittedDetail = { state: 'submitted', slug: 'submitted', progress: 0, @@ -204,7 +205,7 @@ describe('Design Request', async () => { test('eventHandler with timeout event', async () => { await eventHandlerTester('timeout', timeoutEventDetail) }) - + test('eventHandler with error event', async () => { const expectedState = 'error' const errorEventDetail = { @@ -227,16 +228,16 @@ describe('Design Request', async () => { }) test.fails('timeoutHandler to throw error', async () => { - const designRequest = await createDesignRequest({state: 'submitted'}) + const designRequest = await createDesignRequest({state: 'submitted'}) expect(designRequest.timeoutHandler()).toThrowError('Design request timeout not set') }) - + test('setGuid', async () => { const designRequest = await createDesignRequest({state: 'ready'}) fetchMocker.mockResponse(JSON.stringify(bookFactory())) expect(await designRequest.setGuid(faker.string.uuid())).toStrictEqual(designRequest.guid) }) - + test.fails('setGuid before dr is submitted', async () => { const designRequest = await createDesignRequest({state: 'new'}) await designRequest.setGuid(faker.string.uuid()) @@ -261,19 +262,19 @@ describe('Design Request', async () => { await designRequest.cancel() expect(designRequest).toThrowError('Design Request is already cancelled') }) - + test.fails('cancel when dr is already ready', async () => { const designRequest = await createDesignRequest({state: 'ready'}) await designRequest.cancel() expect(designRequest).toThrowError('Design Request is already ready') }) - + test.fails('cancel when dr is already new', async () => { const designRequest = await createDesignRequest({state: 'new'}) await designRequest.cancel() expect(designRequest).toThrowError('Design request not submitted') }) - + test('cancel', async () => { const designRequest = await createDesignRequest({state: 'submitted'}) fetchMocker.mockResponse(JSON.stringify(bookFactory({state: 'cancelled'}))) diff --git a/core/tests/models/engine-api/books.test.ts b/core/tests/types/engine-api/books.test.ts similarity index 64% rename from core/tests/models/engine-api/books.test.ts rename to core/tests/types/engine-api/books.test.ts index dd0fdf5..b4583e3 100644 --- a/core/tests/models/engine-api/books.test.ts +++ b/core/tests/types/engine-api/books.test.ts @@ -1,67 +1,80 @@ -import {EngineAPI} from '@/core/models/engine-api' import {bookFactory} from '../../factories/book.factory' import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' import {fetchMocker} from '../../mocks/fetch' import {galleonFactory} from '../../factories/galleon.factory' describe('Engine API Book Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - test('create', async () => { const fakeBook = bookFactory() fetchMocker.mockResponse(JSON.stringify(fakeBook.toBookProps())) - const book = await engineAPI.books.create({user_id: 'test-user-id'}) + const book = await engineAPI.books.create({book: fakeBook}) expect(book).toStrictEqual(fakeBook) }) - + test('retrieve', async () => { const fakeBook = bookFactory() fetchMocker.mockResponse(JSON.stringify(fakeBook.toBookProps())) - const book = await engineAPI.books.retrieve(fakeBook.id) + const book = await engineAPI.books.retrieve({bookId: fakeBook.id}) expect(book).toStrictEqual(fakeBook) }) test('update', async () => { const fakeBook = bookFactory() fetchMocker.mockResponse(JSON.stringify(fakeBook.toBookProps())) - const book = await engineAPI.books.update(fakeBook.id, fakeBook) + const book = await engineAPI.books.update({ + bookId: fakeBook.id, + payload: fakeBook + }) expect(book).toStrictEqual(fakeBook) }) + test('delete', async () => { + fetchMocker.mockResponse('') + const book = await engineAPI.books.delete({ + bookId: '123' + }) + expect(book).toBeUndefined() + }) + test('design', async () => { const fakeBook = bookFactory() fetchMocker.mockResponse(JSON.stringify(fakeBook.toBookProps())) - const book = await engineAPI.books.design(fakeBook.id) + const book = await engineAPI.books.design({ + bookId: fakeBook.id + }) expect(book).toStrictEqual(fakeBook) }) test('cancel', async () => { const fakeBook = bookFactory({state: 'cancelled'}) fetchMocker.mockResponse(JSON.stringify(fakeBook.toBookProps())) - const book = await engineAPI.books.cancel(fakeBook.id) + const book = await engineAPI.books.cancel({ + bookId: fakeBook.id + }) expect(book.state).toBe('cancelled') expect(book).toStrictEqual(fakeBook) }) - test('delete', async () => { - fetchMocker.mockResponse('') - const book = await engineAPI.books.delete('123') - expect(book).toBeUndefined() - }) - - test('delete', async () => { - fetchMocker.mockResponse('') - const book = await engineAPI.books.report('123', { - error: 'timeout', - step: 'ingesting' - }) - expect(book).toBeUndefined() - }) - test('retrieveGalleon', async () => { const fakeGalleon = galleonFactory() fetchMocker.mockResponse(JSON.stringify(fakeGalleon)) - const galleon = await engineAPI.books.retrieveGalleon('123') + const galleon = await engineAPI.books.retrieveGalleon({ + bookId: '123' + }) expect(galleon).toStrictEqual(fakeGalleon) }) + + test('report', async () => { + const fakeBook = bookFactory() + fetchMocker.mockResponse('') + const book = await engineAPI.books.report({ + bookId: fakeBook.id, + report: { + error: 'timeout', + step: 'ingesting' + } + }) + expect(book).toStrictEqual('') + }) }) diff --git a/core/tests/models/engine-api/design-options.test.ts b/core/tests/types/engine-api/design-options.test.ts similarity index 70% rename from core/tests/models/engine-api/design-options.test.ts rename to core/tests/types/engine-api/design-options.test.ts index 3aee7c7..e3f4f5e 100644 --- a/core/tests/models/engine-api/design-options.test.ts +++ b/core/tests/types/engine-api/design-options.test.ts @@ -1,17 +1,20 @@ -import {EngineAPI} from '@/core/models/engine-api' import {describe, expect, test} from 'vitest' import {designOptionsFactory, designOptionsServerFactory} from '../../factories/design-options.factory' import {designOptionsSchema} from '@/client/src' +import {engineAPI} from '../../shared' import {fetchMocker} from '../../mocks/fetch' +import {snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' describe('Engine API Design Options Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - test('retrieve', async () => { const fakeDesignOptions = designOptionsServerFactory() fetchMocker.mockResponse(JSON.stringify(fakeDesignOptions)) - const designOptions = await engineAPI.designOptions.retrieve('10x10', 20, 'best') - expect(designOptions).toStrictEqual(fakeDesignOptions) + const designOptions = await engineAPI.designOptions.retrieve({ + bookSize: '10x10', + imageCount: 20, + imageFilteringLevel: 'best' + }) + expect(designOptions).toStrictEqual(snakeCaseObjectKeysToCamelCase(fakeDesignOptions)) }) test('design options factory', async () => { diff --git a/core/tests/types/engine-api/embellishments.test.ts b/core/tests/types/engine-api/embellishments.test.ts new file mode 100644 index 0000000..8686efc --- /dev/null +++ b/core/tests/types/engine-api/embellishments.test.ts @@ -0,0 +1,39 @@ +import {describe, expect, test} from 'vitest' +import {embellishmentTextStickerFactory} from '../../factories/embellishment.factory' +import {embellishmentTextStickerSchema} from '@/core/types/embellishment' +import {engineAPI} from '../../shared' +import {fetchMocker} from '../../mocks/fetch' +import {paginationFactory} from '../../factories/pagination.factory' + +describe('Engine API Embellishments Endpoints', () => { + test('list', async () => { + const fakeEmbellishments = paginationFactory({ + factory: embellishmentTextStickerFactory, + schema: embellishmentTextStickerSchema + }) + fetchMocker.mockResponse(JSON.stringify(fakeEmbellishments)) + const embellishments = await engineAPI.embellishments.list({styleSlug: 'style-slug'}) + expect(embellishments).toStrictEqual(fakeEmbellishments) + }) + + test('retrieve', async () => { + const fakeEmbellishment = await embellishmentTextStickerFactory() + fetchMocker.mockResponse(JSON.stringify(fakeEmbellishment)) + const embellishment = await engineAPI.embellishments.retrieve({ + embellishmentId: fakeEmbellishment.id, + styleSlug: 'style-slug' + }) + expect(embellishment).toStrictEqual(fakeEmbellishment) + }) + + test('update', async () => { + const fakeEmbellishment = await embellishmentTextStickerFactory() + fetchMocker.mockResponse(JSON.stringify(fakeEmbellishment)) + const embellishment = await engineAPI.embellishments.update({ + embellishmentId: fakeEmbellishment.id, + styleSlug: 'style-slug', + payload: fakeEmbellishment + }) + expect(embellishment).toStrictEqual(fakeEmbellishment) + }) +}) diff --git a/core/tests/types/engine-api/events.test.ts b/core/tests/types/engine-api/events.test.ts new file mode 100644 index 0000000..f96de37 --- /dev/null +++ b/core/tests/types/engine-api/events.test.ts @@ -0,0 +1,47 @@ +import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' +import {eventFactory} from '../../factories/event.factory' +import {eventSchema} from '@/core/types/event' +import {fetchMocker} from '../../mocks/fetch' +import {paginationFactory} from '../../factories/pagination.factory' + +describe('Engine API Design Options Endpoints', () => { + test('listBookEvents', async () => { + const fakeEvents = paginationFactory({factory: eventFactory, schema: eventSchema}) + fetchMocker.mockResponse(JSON.stringify(fakeEvents)) + const events = await engineAPI.events.listBookEvents({ + bookId: 'bookId' + }) + expect(events).toStrictEqual(fakeEvents) + }) + + test('createBookEvent', async () => { + const fakeEvent = eventFactory() + fetchMocker.mockResponse(JSON.stringify(fakeEvent)) + const event = await engineAPI.events.createBookEvent({ + bookId: '01HF9PDM0JZRQ26TTFKT9D99ZW', + name: 'book.viewed' + }) + expect(event).toStrictEqual(fakeEvent) + }) + + test('createBookEvent with context', async () => { + const fakeEvent = eventFactory({context: {foo: 'bar'}}) + fetchMocker.mockResponse(JSON.stringify(fakeEvent)) + const event = await engineAPI.events.createBookEvent({ + bookId: 'bookId', + name: 'book.viewed', + data: fakeEvent.context + }) + expect(event).toStrictEqual(fakeEvent) + }) + + test('deleteBookEvent', async () => { + fetchMocker.mockResponse('') + const res = await engineAPI.events.deleteBookEvent({ + bookId: '01HF9PDM0JZRQ26TTFKT9D99ZW', + name: 'test' + }) + expect(res).toStrictEqual('') + }) +}) diff --git a/core/tests/types/engine-api/fonts.test.ts b/core/tests/types/engine-api/fonts.test.ts new file mode 100644 index 0000000..2fea546 --- /dev/null +++ b/core/tests/types/engine-api/fonts.test.ts @@ -0,0 +1,15 @@ +import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' +import {fetchMocker} from '../../mocks/fetch' +import {fontFactory} from '../../factories/font.factory' +import {fontSchema} from '@/core/types/font' +import {paginationFactory} from '../../factories/pagination.factory' + +describe('Engine API Fonts Endpoints', () => { + test('list', async () => { + const fakeFonts = await paginationFactory({factory: fontFactory, schema: fontSchema}) + fetchMocker.mockResponse(JSON.stringify(fakeFonts)) + const res = await engineAPI.fonts.list() + expect(res).toStrictEqual(fakeFonts) + }) +}) diff --git a/core/tests/models/engine-api/images.test.ts b/core/tests/types/engine-api/images.test.ts similarity index 67% rename from core/tests/models/engine-api/images.test.ts rename to core/tests/types/engine-api/images.test.ts index b294adf..8d47d13 100644 --- a/core/tests/models/engine-api/images.test.ts +++ b/core/tests/types/engine-api/images.test.ts @@ -1,43 +1,55 @@ -import {EngineAPI} from '@/core/models/engine-api' import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' import {fetchMocker} from '../../mocks/fetch' import {imageServerFactory} from '../../factories/image.factory' describe('Engine API Images Endpoints', () => { - const engineAPI = new EngineAPI('https://api.magicbook.mock', '123') - test('list', async () => { const fakeImageList = [imageServerFactory(), imageServerFactory()] fetchMocker.mockResponse(JSON.stringify(fakeImageList)) - const image = await engineAPI.images.list('bookId') + const image = await engineAPI.images.list({ + bookId: 'bookId' + }) expect(image).toEqual(JSON.parse(JSON.stringify(fakeImageList))) }) test('retrieve', async () => { const fakeImage = imageServerFactory() fetchMocker.mockResponse(JSON.stringify(fakeImage)) - const image = await engineAPI.images.retrieve('imageId', 'bookId') + const image = await engineAPI.images.retrieve({ + imageId: 'imageId', + bookId: 'bookId' + }) expect(image).toEqual(JSON.parse(JSON.stringify(fakeImage))) }) test('update', async () => { const fakeImage = imageServerFactory() fetchMocker.mockResponse(JSON.stringify(fakeImage)) - const image = await engineAPI.images.update('imageId', 'bookId', fakeImage) + const image = await engineAPI.images.update({ + imageId: 'imageId', + bookId: 'bookId', + payload: fakeImage + }) expect(image).toEqual(JSON.parse(JSON.stringify(fakeImage))) }) test('delete', async () => { fetchMocker.mockResponse(JSON.stringify({})) - const image = await engineAPI.images.delete('imageId', 'bookId') + const image = await engineAPI.images.delete({ + imageId: 'imageId', + bookId: 'bookId' + }) expect(image).toBeUndefined() }) test('addToBook', async () => { const fakeImage = imageServerFactory() fetchMocker.mockResponse(JSON.stringify(fakeImage)) - const image = await engineAPI.images.addToBook('bookId', fakeImage) + const image = await engineAPI.images.addToBook({ + bookId: 'bookId', + image: fakeImage + }) expect(image).toEqual(JSON.parse(JSON.stringify(fakeImage))) }) - }) diff --git a/core/tests/types/engine-api/spreads.test.ts b/core/tests/types/engine-api/spreads.test.ts new file mode 100644 index 0000000..539bafa --- /dev/null +++ b/core/tests/types/engine-api/spreads.test.ts @@ -0,0 +1,54 @@ +import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' +import {fetchMocker} from '../../mocks/fetch' +import {snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {spreadServerFactory} from '../../factories/spread.factory' + +describe('Engine API Spreads Endpoints', () => { + test('list', async () => { + const fakeSpreadList = [spreadServerFactory(), spreadServerFactory()] + fetchMocker.mockResponse(JSON.stringify(fakeSpreadList)) + const spreads = await engineAPI.spreads.list({bookId: 'bookId'}) + expect(spreads).toEqual(fakeSpreadList.map((spread) => snakeCaseObjectKeysToCamelCase(spread))) + }) + + test('create', async () => { + const fakeSpread = spreadServerFactory() + fetchMocker.mockResponse(JSON.stringify(fakeSpread)) + const spread = await engineAPI.spreads.create({ + bookId: 'bookId', + spread: fakeSpread + }) + expect(spread).toEqual(snakeCaseObjectKeysToCamelCase(fakeSpread)) + }) + + test('retrieve', async () => { + const fakeSpread = spreadServerFactory() + fetchMocker.mockResponse(JSON.stringify(fakeSpread)) + const spread = await engineAPI.spreads.retrieve({ + spreadId: 'spreadId', + bookId: 'bookId' + }) + expect(spread).toEqual(snakeCaseObjectKeysToCamelCase(fakeSpread)) + }) + + test('update', async () => { + const fakeSpread = spreadServerFactory() + fetchMocker.mockResponse(JSON.stringify(fakeSpread)) + const spread = await engineAPI.spreads.update({ + spreadId: 'spreadId', + bookId: 'bookId', + payload: fakeSpread + }) + expect(spread).toEqual(snakeCaseObjectKeysToCamelCase(fakeSpread)) + }) + + test('delete', async () => { + fetchMocker.mockResponse(JSON.stringify({})) + const spread = await engineAPI.spreads.delete({ + spreadId: 'spreadId', + bookId: 'bookId' + }) + expect(spread).toBeUndefined() + }) +}) diff --git a/core/tests/types/engine-api/storyboard-items.test.ts b/core/tests/types/engine-api/storyboard-items.test.ts new file mode 100644 index 0000000..f04a8d1 --- /dev/null +++ b/core/tests/types/engine-api/storyboard-items.test.ts @@ -0,0 +1,20 @@ +import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' +import {fetchMocker} from '../../mocks/fetch' +import {storyboardItemFactory} from '../../factories/storyboard-item.factory' + +describe('Engine API Storyboard Items Endpoints', () => { + test('retrieve Server Schemas', async () => { + const fakeStoryBoardItems = [storyboardItemFactory(), storyboardItemFactory()] + fetchMocker.mockResponse(JSON.stringify(fakeStoryBoardItems)) + const storyboardItems = await engineAPI.storyboardItems.list({bookId: 'bookId'}) + expect(storyboardItems).toStrictEqual(JSON.parse(JSON.stringify(fakeStoryBoardItems))) + }) + + test('retrieve', async () => { + const fakeStoryBoardItems = [storyboardItemFactory(), storyboardItemFactory()] + fetchMocker.mockResponse(JSON.stringify(fakeStoryBoardItems)) + const storyboardItems = await engineAPI.storyboardItems.list({bookId: 'bookId'}) + expect(storyboardItems).toStrictEqual(JSON.parse(JSON.stringify(fakeStoryBoardItems))) + }) +}) diff --git a/core/tests/types/engine-api/styles.test.ts b/core/tests/types/engine-api/styles.test.ts new file mode 100644 index 0000000..7dc0996 --- /dev/null +++ b/core/tests/types/engine-api/styles.test.ts @@ -0,0 +1,29 @@ +import {describe, expect, test} from 'vitest' +import {engineAPI} from '../../shared' +import {fetchMocker} from '../../mocks/fetch' +import {paginationFactory} from '../../factories/pagination.factory' +import {styleBaseFactory, styleFactory} from '../../factories/style.factory' +import {styleBaseSchema} from '@/core/types/style' + +describe('Engine API Styles Endpoints', () => { + test('list', async () => { + const fakeStyles = await paginationFactory({factory: styleBaseFactory, schema: styleBaseSchema}) + fetchMocker.mockResponse(JSON.stringify(fakeStyles)) + const res = await engineAPI.styles.list() + expect(res).toStrictEqual(fakeStyles) + }) + + test('retrieve', async () => { + const fakeStyle = await styleFactory() + fetchMocker.mockResponse(JSON.stringify(fakeStyle)) + const res = await engineAPI.styles.retrieve({styleSlug: fakeStyle.slug}) + expect(res).toStrictEqual(fakeStyle) + }) + + test('update', async () => { + const fakeStyle = await styleFactory() + fetchMocker.mockResponse(JSON.stringify(fakeStyle)) + const res = await engineAPI.styles.update({styleSlug: fakeStyle.slug, payload: fakeStyle}) + expect(res).toStrictEqual(fakeStyle) + }) +}) diff --git a/core/tests/types/fetcher.test.ts b/core/tests/types/fetcher.test.ts new file mode 100644 index 0000000..89685b7 --- /dev/null +++ b/core/tests/types/fetcher.test.ts @@ -0,0 +1,46 @@ +import {Fetcher, baseOptions} from '@/core/types/fetcher' +import {describe, expect, test} from 'vitest' +import {fetchMocker} from '@/core/tests/mocks/fetch' + +describe('Fetcher', () => { + const fetcher = new Fetcher('https://api.fake-server.com') + test('init without options', async () => { + expect(fetcher.options).toBe(baseOptions) + }) + test('call with qs', async () => { + await fetcher.call({path: '/books', qs: 'test=1'}) + }) + test.fails('fail call', async () => { + fetchMocker.mockResponse(() => Promise.resolve('Something went wrong. Please try again.')) + const res = await fetcher.call({path: '/books'}) + expect(res).toThrowError('Something went wrong. Please try again.') + }) + test.fails('fail call', async () => { + fetchMocker.mockResponse(() => Promise.resolve('Something went wrong. Please try again.')) + const res = await fetcher.call({path: '/books'}) + expect(res).toThrowError('Something went wrong. Please try again.') + }) + test.fails('fail call when status code is > 300 with detailed message', async () => { + fetchMocker.mockResponse(() => + Promise.resolve({ + status: 400, + statusText: 'Error 400', + body: JSON.stringify({ + detail: 'Detail error' + }) + }) + ) + const res = await fetcher.call({path: '/books'}) + expect(res).toThrowError('400 Detail error') + }) + test.fails('fail call when status code is > 300 with statusText', async () => { + fetchMocker.mockResponse(() => + Promise.resolve({ + status: 400, + statusText: 'Error 400' + }) + ) + const res = await fetcher.call({path: '/books'}) + expect(res).toThrowError('400 Error 400') + }) +}) diff --git a/core/tests/models/image.test.ts b/core/tests/types/image.test.ts similarity index 100% rename from core/tests/models/image.test.ts rename to core/tests/types/image.test.ts diff --git a/core/tests/utils/toolbox.test.ts b/core/tests/utils/toolbox.test.ts index 5f03316..47b0b4c 100644 --- a/core/tests/utils/toolbox.test.ts +++ b/core/tests/utils/toolbox.test.ts @@ -1,12 +1,15 @@ -import {assign, camelCaseObjectKeysToSnakeCase, camelCaseToKebabCase, +import { + assign, + camelCaseObjectKeysToSnakeCase, + camelCaseToKebabCase, camelCaseToSnakeCase, chunkArray, formatReturnJSON, - handleAsyncFunction, isURL, mergeNestedObject, snakeCaseObjectKeysToCamelCase, - snakeCaseToCamelCase} from '@/core/utils/toolbox' + snakeCaseToCamelCase +} from '@/core/utils/toolbox' import {camelCaseToWords, getStyleIdBySlug} from '../../utils/toolbox' import {describe, expect, test} from 'vitest' import {faker} from '@faker-js/faker' @@ -22,8 +25,9 @@ describe('Toolbox', () => { test('mergeNestedObject', () => { const initialObject = {item: {item: {name: 'itemName'}}} const objectToMerge = {item: {item: {item: 'test'}}} - expect(mergeNestedObject(initialObject, objectToMerge)) - .toStrictEqual({item: {item: {name: 'itemName', item: 'test'}}}) + expect(mergeNestedObject(initialObject, objectToMerge)).toStrictEqual({ + item: {item: {name: 'itemName', item: 'test'}} + }) }) test('camelCaseToKebabCase', () => { expect(camelCaseToKebabCase('helloWorld')).toBe('hello-world') @@ -43,18 +47,10 @@ describe('Toolbox', () => { expect(snakeCaseToCamelCase('hello_world_test')).toBe('helloWorldTest') }) test('snakeCaseObjectKeysToCamelCase', () => { - const snakeCaseObject = {hello_world: 'helloWorld', hello_world_test: 'helloWorldTest'} - const camelCaseObject = {helloWorld: 'helloWorld', helloWorldTest: 'helloWorldTest'} + const snakeCaseObject = {hello_world: null, hello_world_test: 'helloWorldTest'} + const camelCaseObject = {helloWorld: null, helloWorldTest: 'helloWorldTest'} expect(snakeCaseObjectKeysToCamelCase(snakeCaseObject)).toStrictEqual(camelCaseObject) }) - test('handleAsyncFunction succeed', async () => { - const res = await handleAsyncFunction(async () => new Promise(resolve => resolve('success'))) - expect(res).toBe('success') - }) - test.fails('handleAsyncFunction fails', async () => { - const res = await handleAsyncFunction(async () => {throw new Error('error')}) - expect(res).toThrowError('error') - }) test('isURL function', async () => { const res = isURL('https://www.google.com') expect(res).toBeTruthy() @@ -76,7 +72,9 @@ describe('Toolbox', () => { expect(res).toBe('hello world') }) test('chunkArray', async () => { - const array = Array(100).fill(0).map((_, i) => i) + const array = Array(100) + .fill(0) + .map((_, i) => i) const res = chunkArray(array, 50) expect(res.length).toBe(2) }) diff --git a/core/models/book.ts b/core/types/book.ts similarity index 92% rename from core/models/book.ts rename to core/types/book.ts index 2df45c0..1623748 100644 --- a/core/models/book.ts +++ b/core/types/book.ts @@ -25,7 +25,7 @@ import {getStyleIdBySlug, snakeCaseObjectKeysToCamelCase} from '../utils/toolbox import {z} from 'zod' export type BookReport = { - error: 'timeout'|'design' + error: 'timeout' | 'design' step: string } @@ -85,7 +85,7 @@ export const bookPropsSchema = z.object({ state: z.enum(states).optional(), guid: z.string().optional(), cancelled_at: z.string().optional(), - mb_client_timeout: z.number().optional(), + mb_client_timeout: z.string().optional(), user_id: z.string().optional(), revision: z.number().optional() }) @@ -111,7 +111,7 @@ export class Book { this.state = props.state this.guid = props.guid this.cancelled_at = props.cancelled_at - this.timeout = props.mb_client_timeout ? props.mb_client_timeout * 1000 : undefined // convert to ms + this.timeout = props.mb_client_timeout ? parseInt(props.mb_client_timeout) * 1000 : undefined // convert to ms this.user_id = props.user_id this.revision = props.revision } @@ -127,7 +127,7 @@ export class Book { toBookProps(): BookProps { return { ...this, - mb_client_timeout: this.timeout ? this.timeout / 1000 : undefined + mb_client_timeout: this.timeout ? (this.timeout / 1000).toString() : undefined } } } diff --git a/core/models/client.ts b/core/types/client.ts similarity index 63% rename from core/models/client.ts rename to core/types/client.ts index 4842778..464c143 100644 --- a/core/models/client.ts +++ b/core/types/client.ts @@ -1,7 +1,6 @@ /* eslint-disable no-unused-vars */ import {DesignRequest, DesignRequestProps} from './design-request' import {EngineAPI} from './engine-api' -import {camelCaseObjectKeysToSnakeCase} from '../utils/toolbox' import {defaultApiHost, defaultWebSocketHost} from '../config' export class MagicBookClient { @@ -9,19 +8,23 @@ export class MagicBookClient { public constructor( private readonly apiKey: string, - private readonly apiHost=defaultApiHost, - readonly webSocketHost=defaultWebSocketHost + private readonly apiHost = defaultApiHost, + readonly webSocketHost = defaultWebSocketHost ) { this.engineAPI = new EngineAPI(this.apiHost, this.apiKey) } - async createDesignRequest(designRequestProps: DesignRequestProps) - : Promise { + async createDesignRequest(designRequestProps: DesignRequestProps): Promise { if (designRequestProps.userId) { - const book = await this.engineAPI.books.create(camelCaseObjectKeysToSnakeCase({...designRequestProps})) + const book = await this.engineAPI.books.create({book: {user_id: designRequestProps.userId}}) return new DesignRequest(book.id, this, designRequestProps) } else { throw new Error('userId is required') } } + + async retrieveDesignRequest(id: string): Promise { + const book = await this.engineAPI.books.retrieve({bookId: id}) + return new DesignRequest(id, this, book.toDesignRequestProps()) + } } diff --git a/core/types/design-request/design-options.ts b/core/types/design-request/design-options.ts new file mode 100644 index 0000000..53b607a --- /dev/null +++ b/core/types/design-request/design-options.ts @@ -0,0 +1,22 @@ +import {z} from 'zod' + +export const imageDensityOptionSchema = z.object({ + maxPageCount: z.number(), + minPageCount: z.number(), + maxImageCount: z.number(), + avgImageCount: z.number(), + minImageCount: z.number() +}) +export type ImageDensityOption = z.infer + +export const imageDensityOptionsSchema = z.object({ + high: imageDensityOptionSchema, + medium: imageDensityOptionSchema, + low: imageDensityOptionSchema +}) +export type ImageDensityOptions = z.infer + +export const designOptionsSchema = z.object({ + densities: imageDensityOptionsSchema +}) +export type DesignOptions = z.infer diff --git a/core/models/design-request/image.ts b/core/types/design-request/image.ts similarity index 88% rename from core/models/design-request/image.ts rename to core/types/design-request/image.ts index 9458cc2..61f9c8a 100644 --- a/core/models/design-request/image.ts +++ b/core/types/design-request/image.ts @@ -21,8 +21,12 @@ export class Images { length: number designRequestState: State - // eslint-disable-next-line no-unused-vars - constructor(private readonly client: MagicBookClient, parentId: string, designRequestState: State) { + constructor( + // eslint-disable-next-line no-unused-vars + private readonly client: MagicBookClient, + parentId: string, + designRequestState: State + ) { this.parentId = parentId this.images = [] this.length = this.images.length @@ -35,12 +39,14 @@ export class Images { } else { this.images.push(image) this.length = this.images.length - await this.client.engineAPI.images.addToBook(this.parentId, new ImageServer(image)) + await this.client.engineAPI.images.addToBook({ + bookId: this.parentId, + image: new ImageServer(image) + }) return new Promise((resolve) => { resolve(this.length) }) } - } } diff --git a/core/models/design-request/index.ts b/core/types/design-request/index.ts similarity index 73% rename from core/models/design-request/index.ts rename to core/types/design-request/index.ts index 33c640e..084fcc1 100644 --- a/core/models/design-request/index.ts +++ b/core/types/design-request/index.ts @@ -19,22 +19,22 @@ import { textStickerLevels, timeoutEventDetail } from '@/core/data/design-request' -import {camelCaseObjectKeysToSnakeCase, cleanJSON, snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {camelCaseObjectKeysToSnakeCase, cleanJSON} from '@/core/utils/toolbox' import {designOptionsSchema} from './design-options' import {isDesignRequestSubmitted} from '../../data/design-request' -export type Occasion = typeof occasions[number] -export type Style = keyof typeof styles -export type BookSize = typeof bookSizes[number] -export type CoverType = typeof coverTypes[number] -export type PageType = typeof pageTypes[number] -export type ImageDensity = typeof imageDensities[number] -export type ImageFilteringLevel = typeof imageFilteringLevels[number] -export type EmbellishmentLevel = typeof embellishmentLevels[number] -export type TextStickerLevel = typeof textStickerLevels[number] +export type Occasion = (typeof occasions)[number] +export type StyleId = keyof typeof styles +export type BookSize = (typeof bookSizes)[number] +export type CoverType = (typeof coverTypes)[number] +export type PageType = (typeof pageTypes)[number] +export type ImageDensity = (typeof imageDensities)[number] +export type ImageFilteringLevel = (typeof imageFilteringLevels)[number] +export type EmbellishmentLevel = (typeof embellishmentLevels)[number] +export type TextStickerLevel = (typeof textStickerLevels)[number] export const DesignRequestOptions = { occasion: occasions, - style: Object.keys(styles).map(key => parseInt(key)), + style: Object.keys(styles).map((key) => parseInt(key)), bookSize: bookSizes, coverType: coverTypes, pageType: pageTypes, @@ -48,7 +48,7 @@ export type DesignRequestProps = { subtitle?: string state?: State occasion?: Occasion - style?: Style + style?: StyleId bookSize?: BookSize coverType?: CoverType pageType?: PageType @@ -58,7 +58,7 @@ export type DesignRequestProps = { textStickerLevel?: TextStickerLevel userId: string } -export type State = typeof states[number] +export type State = (typeof states)[number] export type DesignRequestEventDetail = { state: string slug: State @@ -72,7 +72,7 @@ export class DesignRequest { title: string subtitle?: string occasion: Occasion - style: Style + style: StyleId bookSize: BookSize coverType: CoverType pageType: PageType @@ -82,7 +82,7 @@ export class DesignRequest { textStickerLevel: TextStickerLevel images: Images private webSocket?: WebSocket - userId?:string + userId?: string guid?: string timeout?: number @@ -97,7 +97,7 @@ export class DesignRequest { this.title = designRequestProps?.title || '' this.subtitle = designRequestProps?.subtitle this.occasion = designRequestProps?.occasion || occasions[0] - this.style = designRequestProps?.style || parseInt(Object.keys(styles)[0]) as Style + this.style = designRequestProps?.style || (parseInt(Object.keys(styles)[0]) as StyleId) this.bookSize = designRequestProps?.bookSize || bookSizes[0] this.coverType = designRequestProps?.coverType || coverTypes[0] this.pageType = designRequestProps?.pageType || pageTypes[0] @@ -107,7 +107,7 @@ export class DesignRequest { this.textStickerLevel = designRequestProps?.textStickerLevel || textStickerLevels[0] this.images = new Images(this.client, this.parentId, this.state) this.userId = designRequestProps?.userId - } + } private updateDesignRequest(designRequestProps: Partial) { Object.assign(this, designRequestProps) @@ -117,10 +117,13 @@ export class DesignRequest { } async getOptions(imageCount?: number) { - const options = designOptionsSchema.parse(snakeCaseObjectKeysToCamelCase( - await this.client.engineAPI.designOptions.retrieve(this.bookSize, imageCount || this.images.length, - this.imageFilteringLevel) - )) + const options = designOptionsSchema.parse( + await this.client.engineAPI.designOptions.retrieve({ + bookSize: this.bookSize, + imageCount: imageCount || this.images.length, + imageFilteringLevel: this.imageFilteringLevel + }) + ) return options } @@ -130,9 +133,12 @@ export class DesignRequest { } else { submitDesignRequestProps && this.updateDesignRequest(submitDesignRequestProps) this.webSocket = new WebSocket(`${this.client.webSocketHost}/?book_id=${this.parentId}`) - await this.client.engineAPI.books.update(this.parentId, this.toBook()) + await this.client.engineAPI.books.update({ + bookId: this.parentId, + payload: this.toBook() + }) this.updateDesignRequest( - (await this.client.engineAPI.books.design(this.parentId)).toDesignRequestProps() + (await this.client.engineAPI.books.design({bookId: this.parentId})).toDesignRequestProps() ) this.getProgress() return this @@ -145,12 +151,17 @@ export class DesignRequest { } else { this.guid = guid this.updateDesignRequest( - (await this.client.engineAPI.books.update(this.parentId, this.toBook())).toDesignRequestProps() + ( + await this.client.engineAPI.books.update({ + bookId: this.parentId, + payload: this.toBook() + }) + ).toDesignRequestProps() ) return this.guid } } - + async cancel() { if (this.state === 'cancelled') { throw new Error('Design request already cancelled') @@ -160,7 +171,11 @@ export class DesignRequest { throw new Error('Design request not submitted') } else { this.updateDesignRequest({ - ...(await this.client.engineAPI.books.cancel(this.parentId)).toDesignRequestProps(), + ...( + await this.client.engineAPI.books.cancel({ + bookId: this.parentId + }) + ).toDesignRequestProps(), state: 'cancelled' }) await this.eventHandler(cancelledEventDetail) @@ -170,24 +185,33 @@ export class DesignRequest { async getJSON() { if (this.state === 'ready') { - return await this.client.engineAPI.books.retrieveGalleon(this.parentId) + return await this.client.engineAPI.books.retrieveGalleon({ + bookId: this.parentId + }) } else { throw new Error('Design request not ready') } } async logEvent(name: string, data?: EventContext) { - return await this.client.engineAPI.events.createBookEvent(this.parentId, name, data) + return await this.client.engineAPI.events.createBookEvent({ + bookId: this.parentId, + name, + data + }) } - private async eventHandler(detail: DesignRequestEventDetail, type='MagicBook.designRequestUpdated') { + private async eventHandler(detail: DesignRequestEventDetail, type = 'MagicBook.designRequestUpdated') { const customEvent = new CustomEvent(type, {detail}) if (statesToCloseWS.includes(detail.slug)) { this.webSocket?.close() if (statesToReport.includes(detail.slug)) { - await this.client.engineAPI.books.report(this.parentId, { - error: detail.slug === 'error' ? 'design' : 'timeout', - step: this.state + await this.client.engineAPI.books.report({ + bookId: this.parentId, + report: { + error: detail.slug === 'error' ? 'design' : 'timeout', + step: this.state + } }) } } @@ -224,13 +248,12 @@ export class DesignRequest { const designRequest = { ...this, images: this.images['images'] - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // eslint-disable-next-line @typescript-eslint/no-explicit-any } as Record delete designRequest.client delete designRequest.webSocket const styleSlug = styles[this.style].slug - const bookDesignRequest = - camelCaseObjectKeysToSnakeCase(cleanJSON(designRequest)) as BookDesignRequestProps + const bookDesignRequest = camelCaseObjectKeysToSnakeCase(cleanJSON(designRequest)) as BookDesignRequestProps bookDesignRequest.style = styleSlug return new Book({ id: designRequest.parentId, diff --git a/core/types/embellishment.ts b/core/types/embellishment.ts new file mode 100644 index 0000000..fece363 --- /dev/null +++ b/core/types/embellishment.ts @@ -0,0 +1,202 @@ +import {ZodTypeAny, z} from 'zod' + +export const embellishmentTypes = [ + 'background', + 'band', + 'strip', + 'page-corner', + 'photo-corner', + 'frame', + 't-point', + 'luggage-tag', + 'stamp', + 'tape', + 'postcard', + 'top-sticker', + 'bottom-sticker', + 'graphic-sticker', + 'text-sticker' +] as const +export const embellishmentOrientations = [ + 'top', + 'bottom', + 'left', + 'right', + 'top-left', + 'top-right', + 'bottom-right', + 'bottom-left' +] as const +export const embellishmentThicknesses = ['thin', 'thick', 'normal'] as const +export const embellishmentStackings = ['front', 'back'] as const + +export const embellishmentAnchorsSchema = z.object({ + x0: z.number(), + x1: z.number(), + y0: z.number(), + y1: z.number() +}) +export type EmbellishmentAnchors = z.infer + +export const embellishmentPhotoCornerAnchorsSchema = z.object({ + x0: z.number(), + y0: z.number() +}) +export type EmbellishmentPhotoCornerAnchors = z.infer + +export const embellishmentBaseSchema = z.object({ + id: z.string(), + active: z.boolean(), + url: z.string(), + name: z.string(), + pattern: z.string(), + primaryColor: z.string(), + margin: z.number(), + width: z.number(), + height: z.number(), + style: z.string() +}) +export type EmbellishmentBase = z.infer + +export const embellishmentTextStickerSchema = embellishmentBaseSchema.extend({ + type: z.literal('text-sticker'), + text: z.string(), + isSpecific: z.boolean(), + minSurface: z.number(), + maxSurface: z.number() +}) +export type EmbellishmentTextSticker = z.infer + +export const embellishmentTPointSchema = embellishmentBaseSchema.extend({ + type: z.literal('t-point'), + minSurface: z.number(), + maxSurface: z.number() +}) +export type EmbellishmentTPoint = z.infer + +export const embellishmentGraphicStickerSchema = embellishmentBaseSchema.extend({ + type: z.literal('graphic-sticker'), + minSurface: z.number(), + maxSurface: z.number(), + hFlippable: z.boolean(), + vFlippable: z.boolean() +}) +export type EmbellishmentGraphicSticker = z.infer + +export const embellishmentStampSchema = embellishmentBaseSchema.extend({ + type: z.literal('stamp'), + minSurface: z.number(), + maxSurface: z.number(), + hFlippable: z.boolean(), + vFlippable: z.boolean() +}) +export type EmbellishmentStamp = z.infer + +export const embellishmentTapeSchema = embellishmentBaseSchema.extend({ + type: z.literal('tape'), + minSurface: z.number(), + maxSurface: z.number(), + hFlippable: z.boolean(), + vFlippable: z.boolean() +}) +export type EmbellishmentTape = z.infer + +export const embellishmentPostcardSchema = embellishmentBaseSchema.extend({ + type: z.literal('postcard'), + minSurface: z.number(), + maxSurface: z.number(), + hFlippable: z.boolean(), + vFlippable: z.boolean() +}) +export type EmbellishmentPostcard = z.infer + +export const embellishmentBandSchema = embellishmentBaseSchema.extend({ + type: z.literal('band'), + orientation: z.enum(embellishmentOrientations), + orientations: z.array(z.enum(embellishmentOrientations)), + thickness: z.enum(embellishmentThicknesses) +}) +export type EmbellishmentBand = z.infer + +export const embellishmentStripSchema = embellishmentBaseSchema.extend({ + type: z.literal('strip'), + orientation: z.enum(embellishmentOrientations), + orientations: z.array(z.enum(embellishmentOrientations)), + thickness: z.enum(embellishmentThicknesses) +}) +export type EmbellishmentStrip = z.infer + +export const embellishmentPhotoCornerSchema = embellishmentBaseSchema.extend({ + type: z.literal('photo-corner'), + orientation: z.enum(embellishmentOrientations), + orientations: z.array(z.enum(embellishmentOrientations)), + anchors: embellishmentPhotoCornerAnchorsSchema, + stacking: z.enum(embellishmentStackings), + scale: z.number() +}) +export type EmbellishmentPhotoCorner = z.infer + +export const embellishmentPageCornerSchema = embellishmentBaseSchema.extend({ + type: z.literal('page-corner'), + orientation: z.enum(embellishmentOrientations), + orientations: z.array(z.enum(embellishmentOrientations)), + scale: z.number() +}) +export type EmbellishmentPageCorner = z.infer + +export const embellishmentFrameSchema = embellishmentBaseSchema.extend({ + type: z.literal('frame'), + rotatable: z.boolean(), + anchors: embellishmentAnchorsSchema, + stacking: z.enum(embellishmentStackings) +}) +export type EmbellishmentFrame = z.infer + +export const embellishmentBackgroundListSchema = embellishmentBaseSchema.extend({ + type: z.literal('background'), + rotatable: z.boolean() +}) +export type EmbellishmentBackgroundList = z.infer + +export const embellishmentBackgroundSchema = embellishmentBackgroundListSchema.extend({ + colors: z.record(z.unknown()), + backgrounds: z.record(z.unknown()) +}) +export type EmbellishmentBackground = z.infer + +const embellishmentSchemasArray: Array = [ + embellishmentBackgroundSchema, + embellishmentFrameSchema, + embellishmentTextStickerSchema, + embellishmentBandSchema, + embellishmentStripSchema, + embellishmentPageCornerSchema, + embellishmentPhotoCornerSchema, + embellishmentTPointSchema, + embellishmentStampSchema, + embellishmentTapeSchema, + embellishmentPostcardSchema, + embellishmentGraphicStickerSchema +] +export const embellishmentSchemas = z.union([...embellishmentSchemasArray] as unknown as readonly [ + ZodTypeAny, + ZodTypeAny, + ...ZodTypeAny[] +]) +export type Embellishment = z.infer + +export const embellishmentUpdateSchemas = z.union([ + ...embellishmentSchemasArray.map((schema) => schema.partial().optional()) +] as unknown as readonly [ZodTypeAny, ZodTypeAny, ...ZodTypeAny[]]) +export type EmbellishmentUpdate = z.infer + +const embellishmentListSchemasArray = [...embellishmentSchemasArray] +embellishmentListSchemasArray.shift() // remove background +embellishmentListSchemasArray.push(embellishmentBackgroundListSchema) // add base background + +export const embellishmentListSchemas = z.union([...embellishmentListSchemasArray] as unknown as readonly [ + ZodTypeAny, + ZodTypeAny, + ...ZodTypeAny[] +]) +export type EmbellishmentList = z.infer diff --git a/core/types/engine-api/endpoints/books.ts b/core/types/engine-api/endpoints/books.ts new file mode 100644 index 0000000..861ce67 --- /dev/null +++ b/core/types/engine-api/endpoints/books.ts @@ -0,0 +1,114 @@ +import {BaseEndpointProps, BaseUpdateEndpointProps, EngineAPI} from '..' +import {Book, BookProps, BookReport, bookPropsSchema} from '../../book' +import {bookCreationRequestSchema} from '../../galleon' +import {cleanJSON} from '@/core/utils/toolbox' + +type CreateProps = BaseEndpointProps & { + book: Partial +} + +type RetrieveProps = BaseEndpointProps & { + bookId: string +} + +type DeleteProps = RetrieveProps + +type DesignProps = RetrieveProps + +type CancelProps = RetrieveProps + +type RetrieveGalleonProps = RetrieveProps + +type UpdateProps = BaseUpdateEndpointProps> & { + bookId: string +} + +type ReportProps = RetrieveProps & { + report: BookReport +} + +export class BooksEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async create({book, qs}: CreateProps) { + const res = await this.engineAPI.fetcher.call>({ + path: '/v1/books', + options: { + method: 'POST', + body: cleanJSON(book) + }, + qs + }) + return new Book(res as BookProps) + } + + async retrieve({bookId, qs}: RetrieveProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}`, + qs + }) + const bookProps = bookPropsSchema.parse(res) + return new Book(bookProps) + } + + async update({bookId, payload, qs}: UpdateProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}`, + options: { + method: 'PUT', + body: cleanJSON(payload) + }, + qs + }) + const bookProps = bookPropsSchema.parse(res) + return new Book(bookProps) + } + + async delete({bookId, qs}: DeleteProps) { + await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}`, + options: {method: 'DELETE'}, + qs + }) + } + + async design({bookId, qs}: DesignProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}/design`, + options: {method: 'POST'}, + qs + }) + const bookProps = bookPropsSchema.parse(res) + return new Book(bookProps) + } + + async cancel({bookId, qs}: CancelProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}/cancel`, + options: {method: 'POST'}, + qs + }) + const bookProps = bookPropsSchema.parse(res) + return new Book(bookProps) + } + + async retrieveGalleon({bookId, qs}: RetrieveGalleonProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}/format/galleon`, + qs + }) + return bookCreationRequestSchema.parse(res) + } + + async report({bookId, report, qs}: ReportProps) { + return await this.engineAPI.fetcher.call>({ + path: `/v1/books/${bookId}/report`, + options: { + method: 'POST', + body: cleanJSON(report) + }, + qs + }) + } +} diff --git a/core/types/engine-api/endpoints/design-options.ts b/core/types/engine-api/endpoints/design-options.ts new file mode 100644 index 0000000..7e75e35 --- /dev/null +++ b/core/types/engine-api/endpoints/design-options.ts @@ -0,0 +1,23 @@ +import {BaseEndpointProps, EngineAPI} from '..' +import {BookSize, ImageFilteringLevel} from '../../design-request' +import {designOptionsSchema} from '../../design-request/design-options' +import {snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' + +type RetrieveProps = BaseEndpointProps & { + bookSize: BookSize + imageCount: number + imageFilteringLevel: ImageFilteringLevel +} +export class DesignOptionsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async retrieve(props: RetrieveProps) { + const res = await this.engineAPI.fetcher.call>({ + // eslint-disable-next-line max-len + path: `/v1/designoptions/booksize/${props.bookSize}/imagecount/${props.imageCount}/imagefilteringlevel/${props.imageFilteringLevel}`, + qs: props.qs + }) + return designOptionsSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } +} diff --git a/core/types/engine-api/endpoints/embellishments.ts b/core/types/engine-api/endpoints/embellishments.ts new file mode 100644 index 0000000..97c94bd --- /dev/null +++ b/core/types/engine-api/endpoints/embellishments.ts @@ -0,0 +1,63 @@ +import {BaseEndpointProps, BaseUpdateEndpointProps, EngineAPI} from '..' +import {camelCaseObjectKeysToSnakeCase, cleanJSON, snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {embellishmentListSchemas, embellishmentSchemas, embellishmentUpdateSchemas} from '../../embellishment' +import {paginatedResponseSchema} from '../pagination' +import {z} from 'zod' + +export type EmbellishmentListForStyleProps = BaseEndpointProps & { + styleSlug: string +} + +export type EmbellishmentForStyleProps = EmbellishmentListForStyleProps & { + embellishmentId: string +} + +export type EmbellishmentUpdateType = z.infer +export type UpdateEmbellishmentProps = BaseUpdateEndpointProps> & EmbellishmentForStyleProps +export type BatchUpdateEmbellishmentsProps = BaseUpdateEndpointProps>> + +const embellishmentPaginatedSchema = paginatedResponseSchema(embellishmentListSchemas) + +export type EmbellishmentListReturnType = z.infer + +export type EmbellishmentReturnType = z.infer + +export class EmbellishmentsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list({styleSlug, qs}: EmbellishmentListForStyleProps): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/embellishments/style/${styleSlug}`, + qs + }) + return embellishmentPaginatedSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async retrieve({ + styleSlug, + embellishmentId, + qs + }: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/embellishments/${embellishmentId}/style/${styleSlug}`, + qs + }) + return embellishmentSchemas.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async update>>({ + styleSlug, + embellishmentId, + payload + }: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/embellishments/${embellishmentId}/style/${styleSlug}`, + options: { + method: 'PUT', + body: cleanJSON(camelCaseObjectKeysToSnakeCase({...payload})) + } + }) + return embellishmentSchemas.parse(snakeCaseObjectKeysToCamelCase(res)) + } +} diff --git a/core/types/engine-api/endpoints/events.ts b/core/types/engine-api/endpoints/events.ts new file mode 100644 index 0000000..09635de --- /dev/null +++ b/core/types/engine-api/endpoints/events.ts @@ -0,0 +1,61 @@ +import {BaseEndpointProps} from '../index' +import {EngineAPI} from '..' +import {EventContext, eventSchema} from '../../event' +import {cleanJSON, snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {paginatedResponseSchema} from '../pagination' + +type ListBookEventsProps = BaseEndpointProps & { + bookId: string +} + +const eventPaginatedSchema = paginatedResponseSchema(eventSchema) + +type CreateBookEventProps = BaseEndpointProps & { + bookId: string + name: string + data?: EventContext +} + +type DeleteBookEventProps = BaseEndpointProps & { + bookId: string + name: string +} + +export class EventsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async listBookEvents({bookId, qs}: ListBookEventsProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/events/book/${bookId}`, + qs + }) + return eventPaginatedSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async createBookEvent({name, data, bookId, qs}: CreateBookEventProps) { + const body: EventContext = { + name + } + data && (body['context'] = data) + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/events/book/${bookId}`, + options: { + method: 'POST', + body: cleanJSON(body) + }, + qs + }) + return eventSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async deleteBookEvent({name, bookId, qs}: DeleteBookEventProps) { + return await this.engineAPI.fetcher.call>({ + path: `/v1/events/book/${bookId}/name/${name}`, + options: { + method: 'DELETE' + }, + qs + }) + } +} diff --git a/core/types/engine-api/endpoints/fonts.ts b/core/types/engine-api/endpoints/fonts.ts new file mode 100644 index 0000000..6a5eae2 --- /dev/null +++ b/core/types/engine-api/endpoints/fonts.ts @@ -0,0 +1,22 @@ +import {BaseEndpointProps, EngineAPI} from '..' +import {fontSchema} from '../../font' +import {paginatedResponseSchema} from '../pagination' +import {snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {z} from 'zod' + +const fontPaginatedSchema = paginatedResponseSchema(fontSchema) + +type FontListReturnType = z.infer + +export class FontsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list(props?: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: '/v1/fonts', + qs: props?.qs + }) + return fontPaginatedSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } +} diff --git a/core/types/engine-api/endpoints/images.ts b/core/types/engine-api/endpoints/images.ts new file mode 100644 index 0000000..ceefd8c --- /dev/null +++ b/core/types/engine-api/endpoints/images.ts @@ -0,0 +1,83 @@ +import {BaseEndpointProps, BaseUpdateEndpointProps, EngineAPI} from '..' +import {ImageServer, imageServerSchema} from '../../design-request/image' +import {cleanJSON} from '@/core/utils/toolbox' +import {z} from 'zod' + +type ListProps = BaseEndpointProps & { + bookId: string +} + +type AddToBookProps = BaseEndpointProps & { + bookId: string + image: ImageServer +} + +type RetrieveProps = BaseEndpointProps & { + bookId: string + imageId: string +} + +type UpdateProps = BaseUpdateEndpointProps> & { + bookId: string + imageId: string +} + +type DeleteProps = BaseEndpointProps & { + bookId: string + imageId: string +} + +export class ImagesEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list({bookId, qs}: ListProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/images/book/${bookId}`, + qs + }) + return z.array(imageServerSchema).parse(res) + } + + async addToBook({bookId, image, qs}: AddToBookProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/images/book/${bookId}`, + options: { + method: 'POST', + body: cleanJSON(image) + }, + qs + }) + return imageServerSchema.parse(res) + } + + async retrieve({bookId, imageId, qs}: RetrieveProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/images/${imageId}/book/${bookId}/`, + qs + }) + return imageServerSchema.parse(res) + } + + async update({bookId, imageId, payload, qs}: UpdateProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/images/${imageId}/book/${bookId}/`, + options: { + method: 'PUT', + body: cleanJSON(payload) + }, + qs + }) + return imageServerSchema.parse(res) + } + + async delete({bookId, imageId, qs}: DeleteProps) { + await this.engineAPI.fetcher.call>({ + path: `/v1/images/${imageId}/book/${bookId}/`, + options: { + method: 'DELETE' + }, + qs + }) + } +} diff --git a/core/types/engine-api/endpoints/spreads.ts b/core/types/engine-api/endpoints/spreads.ts new file mode 100644 index 0000000..a6e6ef1 --- /dev/null +++ b/core/types/engine-api/endpoints/spreads.ts @@ -0,0 +1,83 @@ +import {BaseEndpointProps, BaseUpdateEndpointProps, EngineAPI} from '..' +import {SpreadServer, spreadSchema} from '../../spread' +import {cleanJSON, snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {z} from 'zod' + +type ListProps = BaseEndpointProps & { + bookId: string +} + +type CreateProps = BaseEndpointProps & { + bookId: string + spread: Partial +} + +type RetrieveProps = BaseEndpointProps & { + bookId: string + spreadId: string +} + +type UpdateProps = BaseUpdateEndpointProps> & { + bookId: string + spreadId: string +} + +type DeleteProps = BaseEndpointProps & { + bookId: string + spreadId: string +} + +export class SpreadsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list({bookId, qs}: ListProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/spreads/book/${bookId}`, + qs + }) + return z.array(spreadSchema).parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async create({bookId, spread, qs}: CreateProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/spreads/book/${bookId}`, + options: { + method: 'POST', + body: cleanJSON(spread) + }, + qs + }) + return spreadSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async retrieve({bookId, spreadId, qs}: RetrieveProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/spreads/${spreadId}/book/${bookId}`, + qs + }) + return spreadSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async update({bookId, spreadId, payload, qs}: UpdateProps) { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/spreads/${spreadId}/book/${bookId}`, + options: { + method: 'PUT', + body: cleanJSON(payload) + }, + qs + }) + return spreadSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async delete({bookId, spreadId, qs}: DeleteProps) { + await this.engineAPI.fetcher.call>({ + path: `/v1/spreads/${spreadId}/book/${bookId}`, + options: { + method: 'DELETE' + }, + qs + }) + } +} diff --git a/core/types/engine-api/endpoints/storyboard-items.ts b/core/types/engine-api/endpoints/storyboard-items.ts new file mode 100644 index 0000000..6fcb4fe --- /dev/null +++ b/core/types/engine-api/endpoints/storyboard-items.ts @@ -0,0 +1,19 @@ +import {BaseEndpointProps, EngineAPI} from '..' +import {StoryboardItem, StoryboardItemSchema} from '../../storyboard-item' +import {snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {z} from 'zod' + +type listProps = BaseEndpointProps & { + bookId: string +} +export class StoryboardItemsEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list(props: listProps): Promise> { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/storyboarditems/book/${props.bookId}` + }) + return z.array(StoryboardItemSchema).parse(snakeCaseObjectKeysToCamelCase(res)) + } +} diff --git a/core/types/engine-api/endpoints/styles.ts b/core/types/engine-api/endpoints/styles.ts new file mode 100644 index 0000000..b271954 --- /dev/null +++ b/core/types/engine-api/endpoints/styles.ts @@ -0,0 +1,54 @@ +import {BaseEndpointProps, BaseUpdateEndpointProps, EngineAPI} from '..' +import {Style, styleBaseSchema, styleSchema} from '../../style' +import {cleanJSON, snakeCaseObjectKeysToCamelCase} from '@/core/utils/toolbox' +import {paginatedResponseSchema} from '../pagination' +import {z} from 'zod' + +const stylePaginatedSchema = paginatedResponseSchema(styleBaseSchema) + +type StyleListReturnType = z.infer + +export type ListStylesProps = BaseEndpointProps + +export type UpdateStyleProps = BaseUpdateEndpointProps> & { + styleSlug: string +} + +export type RetrieveStyleProps = BaseEndpointProps & { + styleSlug: string +} + +export type StyleReturnType = z.infer + +export class StylesEndpoints { + // eslint-disable-next-line no-unused-vars + constructor(private readonly engineAPI: EngineAPI) {} + + async list(props?: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: '/v1/styles', + qs: props?.qs + }) + return stylePaginatedSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async retrieve({styleSlug, qs}: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/styles/${styleSlug}`, + qs + }) + return styleSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } + + async update({styleSlug, payload, qs}: T): Promise { + const res = await this.engineAPI.fetcher.call>({ + path: `/v1/styles/${styleSlug}`, + qs, + options: { + method: 'PUT', + body: cleanJSON(payload) + } + }) + return styleSchema.parse(snakeCaseObjectKeysToCamelCase(res)) + } +} diff --git a/core/models/engine-api/index.ts b/core/types/engine-api/index.ts similarity index 64% rename from core/models/engine-api/index.ts rename to core/types/engine-api/index.ts index bb50c7d..2aa4443 100644 --- a/core/models/engine-api/index.ts +++ b/core/types/engine-api/index.ts @@ -1,22 +1,29 @@ import {BooksEndpoints} from './endpoints/books' import {DesignOptionsEndpoints} from './endpoints/design-options' +import {EmbellishmentsEndpoints} from './endpoints/embellishments' import {EventsEndpoints} from './endpoints/events' import {Fetcher} from '../fetcher' +import {FontsEndpoints} from './endpoints/fonts' import {ImagesEndpoints} from './endpoints/images' import {SpreadsEndpoints} from './endpoints/spreads' import {StoryboardItemsEndpoints} from './endpoints/storyboard-items' +import {StylesEndpoints} from './endpoints/styles' + +export type BaseEndpointProps = { + qs?: string +} + +export type BaseUpdateEndpointProps = BaseEndpointProps & { + payload: T +} export class EngineAPI { - baseUrl: URL - apiKey: string fetcher: Fetcher constructor(baseUrl: string, apiKey: string) { - this.baseUrl = new URL(baseUrl) - this.apiKey = apiKey const options = { headers: { - 'Authorization': `API-Key ${this.apiKey}` + Authorization: `API-Key ${apiKey}` } } this.fetcher = new Fetcher(baseUrl, options) @@ -25,7 +32,10 @@ export class EngineAPI { readonly books = new BooksEndpoints(this) readonly designOptions = new DesignOptionsEndpoints(this) readonly events = new EventsEndpoints(this) + readonly embellishments = new EmbellishmentsEndpoints(this) + readonly fonts = new FontsEndpoints(this) readonly images = new ImagesEndpoints(this) - readonly storyboardItems = new StoryboardItemsEndpoints(this) readonly spreads = new SpreadsEndpoints(this) + readonly storyboardItems = new StoryboardItemsEndpoints(this) + readonly styles = new StylesEndpoints(this) } diff --git a/core/types/engine-api/pagination.ts b/core/types/engine-api/pagination.ts new file mode 100644 index 0000000..1d48bc7 --- /dev/null +++ b/core/types/engine-api/pagination.ts @@ -0,0 +1,17 @@ +import {ZodSchema, z} from 'zod' + +export function paginatedResponseSchema(arrayOf: T) { + return z.object({ + count: z.number(), + nextCursor: z.string().nullable(), + previousCursor: z.string().optional(), + results: z.array(arrayOf) + }) +} + +export type PaginatedResponse = { + count: number + nextCursor: string | null + previousCursor?: string + results: Array +} diff --git a/core/models/event.ts b/core/types/event.ts similarity index 78% rename from core/models/event.ts rename to core/types/event.ts index e215b5f..6f4b67e 100644 --- a/core/models/event.ts +++ b/core/types/event.ts @@ -5,6 +5,8 @@ export type EventContext = z.infer export const eventSchema = z.object({ name: z.string(), - context: eventContextSchema + context: eventContextSchema, + bookId: z.string(), + createdAt: z.string() }) export type Event = z.infer diff --git a/core/types/fetcher.ts b/core/types/fetcher.ts new file mode 100644 index 0000000..aabb32f --- /dev/null +++ b/core/types/fetcher.ts @@ -0,0 +1,61 @@ +import {mergeNestedObject} from '../utils/toolbox' + +export type CallProps = { + path: string + qs?: string + options?: RequestInit + apiKey?: string +} + +export const baseOptions: RequestInit = { + headers: { + 'Content-Type': 'application/json' + }, + method: 'GET' +} + +export class Fetcher { + baseUrl: URL + options: RequestInit + + constructor(baseUrl: string, options?: RequestInit | undefined) { + this.baseUrl = new URL(baseUrl) + this.options = mergeNestedObject(baseOptions, options || {}) + } + + async call(props: CallProps): Promise { + const {options, path, qs} = props + + if (options?.body && typeof options.body !== 'string') { + options.body = JSON.stringify(options.body) + } + + const finalOptions = options ? mergeNestedObject({...this.options}, options) : {...this.options} + + const qualityScore = qs ? `?${qs}` : '' + + const response = await fetch(this.cleanUrl(`${this.baseUrl}${path}${qualityScore}`), finalOptions) + + if (response.ok) { + const result = await response.text() + try { + return JSON.parse(result) as T + } catch (error) { + return result as T + } + } + + let detail: string | undefined + try { + detail = JSON.stringify((await response.json())?.detail) + } catch (error) { + detail = response.statusText + } + + throw Error(`${response.status} ${detail}`) + } + + cleanUrl(url: string) { + return url.replace(/\/\//g, '/').replaceAll(' ', '').trim() + } +} diff --git a/core/types/font.ts b/core/types/font.ts new file mode 100644 index 0000000..9b592df --- /dev/null +++ b/core/types/font.ts @@ -0,0 +1,16 @@ +import {z} from 'zod' + +export const fontRoles = ['title', 'subtitle', 'caption'] as const + +export const fontSchema = z.object({ + slug: z.string(), + family: z.string() +}) +export type Font = z.infer + +export type FontSchema = z.infer + +export const styleFontSchema = fontSchema.extend({ + role: z.enum(fontRoles) +}) +export type StyleFont = z.infer diff --git a/core/models/galleon.ts b/core/types/galleon.ts similarity index 100% rename from core/models/galleon.ts rename to core/types/galleon.ts diff --git a/core/models/spread.ts b/core/types/spread.ts similarity index 100% rename from core/models/spread.ts rename to core/types/spread.ts diff --git a/core/types/storyboard-item.ts b/core/types/storyboard-item.ts new file mode 100644 index 0000000..f52d65c --- /dev/null +++ b/core/types/storyboard-item.ts @@ -0,0 +1,53 @@ +import {z} from 'zod' + +export const StoryboardItemImageFaceSchema = z.object({ + score: z.number(), + boundingBox: z.object({ + x: z.number(), + y: z.number(), + width: z.number(), + height: z.number() + }), + size: z.number(), + eyesOpenScore: z.number(), + smileScore: z.number(), + facingCameraScore: z.number() +}) + +export const StoryboardItemImageSchema = z.object({ + id: z.string(), + url: z.string(), + category: z.string(), + aesthetics: z.object({ + score: z.number(), + scoreWithoutDistance: z.number() + }), + faces: z.array(StoryboardItemImageFaceSchema), + roi: z.object({ + x: z.number(), + y: z.number(), + width: z.number(), + height: z.number() + }), + takenAt: z.number(), + width: z.number(), + height: z.number() +}) + +export const StoryboardItemSchema = z.object({ + id: z.string(), + sequence: z.number(), + bookId: z.string(), + similarity: z.number(), + duplicate: z.boolean(), + selected: z.boolean(), + surfaceWeight: z.number(), + frontCover: z.boolean().optional(), + backCover: z.boolean().optional(), + scene: z.number(), + subscene: z.number(), + spineBreak: z.boolean().optional(), + image: StoryboardItemImageSchema +}) + +export type StoryboardItem = z.infer diff --git a/core/types/style.ts b/core/types/style.ts new file mode 100644 index 0000000..75844a6 --- /dev/null +++ b/core/types/style.ts @@ -0,0 +1,82 @@ +import {styleFontSchema} from './font' +import {z} from 'zod' + +export const styleBaseSchema = z.object({ + active: z.boolean(), + name: z.string(), + slug: z.string() +}) +export type StyleBase = z.infer + +export const backgroundSchema = z.object({ + url: z.string(), + compatible: z.boolean() +}) +export type Background = z.infer + +export const colorSchema = z.object({ + compatible: z.boolean() +}) +export type Color = z.infer + +export const compatibleBackgroundSchema = z.object({ + id: z.string(), + url: z.string(), + backgrounds: z.record(z.string(), backgroundSchema), + colors: z.record(z.string(), colorSchema) +}) +export type CompatibleBackground = z.infer + +export const whitespaceSchema = z.object({ + min: z.number(), + max: z.number() +}) + +export const layoutConstraintsClasses = [ + 'A', + 'B', + 'C', + 'D', + 'E', + 'F', + 'G', + 'H', + 'I', + 'J', + 'K', + 'L', + 'M', + 'N', + 'O', + 'P', + 'Q', + 'R', + 'S', + 'T', + 'U', + 'V', + 'W', + 'X', + 'Y', + 'Z' +] as const +export const layoutConstraintSchema = z.object({ + whitespace: whitespaceSchema, + iWhitespace: whitespaceSchema, + classes: z.array(z.enum(layoutConstraintsClasses)) +}) + +export const layoutConstraintsSchema = z.object({ + lots: layoutConstraintSchema, + few: layoutConstraintSchema, + none: layoutConstraintSchema +}) + +export const styleSchema = styleBaseSchema.extend({ + position: z.number(), + compatibleBackgrounds: z.array(compatibleBackgroundSchema), + fonts: z.array(styleFontSchema), + layoutConstraints: layoutConstraintsSchema, + colors: z.record(z.string(), z.array(z.string())) +}) +export type Style = z.infer diff --git a/core/utils/toolbox.ts b/core/utils/toolbox.ts index fa1149a..8f739ad 100644 --- a/core/utils/toolbox.ts +++ b/core/utils/toolbox.ts @@ -3,15 +3,13 @@ import {styles} from '../data/design-request' // eslint-disable-next-line @typescript-eslint/no-explicit-any export function assign(obj: Record, fields: Array, value: unknown) { const lastKey = fields.pop() || '' - const lastObj = fields.reduce((obj, key) => - obj[key] = obj[key] || {}, - obj) + const lastObj = fields.reduce((obj, key) => (obj[key] = obj[key] || {}), obj) lastObj[lastKey] = value } // eslint-disable-next-line @typescript-eslint/no-explicit-any export function mergeNestedObject(obj: Record, objToMerge: Record) { - Object.keys(objToMerge).map(key => { + Object.keys(objToMerge).map((key) => { if (typeof obj[key] === 'object' && typeof objToMerge[key] === 'object') { mergeNestedObject(obj[key], objToMerge[key]) } else { @@ -30,34 +28,40 @@ export function camelCaseToSnakeCase(str: string) { } export function camelCaseObjectKeysToSnakeCase(camelCaseObject: Record) { - Object.keys(camelCaseObject).map(key => { + Object.keys(camelCaseObject).map((key) => { const snakeCaseKey = camelCaseToSnakeCase(key) if (snakeCaseKey.includes('_')) { camelCaseObject[snakeCaseKey] = camelCaseObject[key] delete camelCaseObject[key] } if (typeof camelCaseObject[snakeCaseKey] === 'object') { - camelCaseObject[snakeCaseKey] = - camelCaseObjectKeysToSnakeCase(camelCaseObject[snakeCaseKey] as Record) + camelCaseObject[snakeCaseKey] = camelCaseObjectKeysToSnakeCase( + camelCaseObject[snakeCaseKey] as Record + ) } }) return camelCaseObject } export function snakeCaseToCamelCase(str: string) { - return str.replace(/([-_][a-z])/g, $1 => $1.toUpperCase().replace('-', '').replace('_', '')) + return str.replace(/([-_][a-z])/g, ($1) => $1.toUpperCase().replace('-', '').replace('_', '')) } export function snakeCaseObjectKeysToCamelCase(snakeCaseObject: Record) { - Object.keys(snakeCaseObject).map(key => { + Object.keys(snakeCaseObject).map((key) => { const camelCaseKey = snakeCaseToCamelCase(key) if (camelCaseKey !== key) { snakeCaseObject[camelCaseKey] = snakeCaseObject[key] delete snakeCaseObject[key] } if (typeof snakeCaseObject[camelCaseKey] === 'object') { - snakeCaseObject[camelCaseKey] = - snakeCaseObjectKeysToCamelCase(snakeCaseObject[camelCaseKey] as Record) + if (snakeCaseObject[camelCaseKey] === null) { + snakeCaseObject[camelCaseKey] = null + } else { + snakeCaseObject[camelCaseKey] = snakeCaseObjectKeysToCamelCase( + snakeCaseObject[camelCaseKey] as Record + ) + } } }) return snakeCaseObject @@ -67,32 +71,11 @@ export function camelCaseToWords(str: string) { return str.replace(/([a-z])([A-Z])/g, '$1 $2').toLowerCase() } -export async function handleAsyncFunction(fn: () => Promise) { - try { - return await fn() - } catch (error) { - return Promise.reject(error) - } -} - export function isURL(str: string) { const pattern = /^(https|ws|wss):\/\/[^ "]+$/ return pattern.test(str) } -// eslint-disable-next-line @typescript-eslint/no-explicit-any -export function bindThisToFunctions( - instance: InstanceType -): void { - for (const name of Object.getOwnPropertyNames( - Object.getPrototypeOf(instance) - )) { - if (typeof instance[name] === 'function' && name !== 'constructor') { - instance[name] = instance[name].bind(instance) - } - } -} - export function formatReturnJSON(value: unknown) { return JSON.stringify(value, null, 2) } @@ -102,7 +85,7 @@ export function cleanJSON(obj: unknown) { } export function getStyleIdBySlug(slug: string): number | undefined { - for (const id in styles) { + for (const id in styles) { const style = styles[id as unknown as keyof typeof styles] if (style.slug === slug) { return parseInt(id) diff --git a/package.json b/package.json index 40b4e17..22fa936 100644 --- a/package.json +++ b/package.json @@ -15,20 +15,24 @@ "turbo:coverage": "./scripts/build/before.sh --watch && turbo run coverage" }, "dependencies": { - "@faker-js/faker": "^8.0.2", + "@faker-js/faker": "^8.3.1", "@types/node": "^18.14.0", - "@typescript-eslint/eslint-plugin": "^6.2.1", - "@typescript-eslint/parser": "^6.2.1", - "@vitest/coverage-istanbul": "^0.34.1", - "@vitest/coverage-v8": "^0.34.1", - "@vitest/ui": "^0.34.1", + "@typescript-eslint/eslint-plugin": "^6.13.2", + "@typescript-eslint/parser": "^6.13.2", + "@vitest/coverage-istanbul": "^1.0.2", + "@vitest/coverage-v8": "^1.0.2", + "@vitest/ui": "^1.0.2", "dotenv": "^16.3.1", "eslint-plugin-sort-imports-es6-autofix": "^0.6.0", - "jsdom": "^22.1.0", - "turbo": "^1.10.12", - "typescript": "^5.1.6", - "vitest": "^0.34.1", + "jsdom": "^23.0.1", + "tsup": "^8.0.1", + "turbo": "^1.11.0", + "typescript": "^5.3.3", + "vitest": "^1.0.2", "vitest-fetch-mock": "^0.2.2", - "zod": "^3.21.4" + "zod": "^3.22.4" + }, + "devDependencies": { + "prettier": "^3.2.4" } } diff --git a/packages/cli/README.md b/packages/cli/README.md index a628fcb..5318451 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -13,11 +13,13 @@ npm install -g @magiclabs.ai/magicbook-cli@latest ## Usage Use the config command to set your credentials. + ```bash mb config ``` Use `mb [command] --help` for more information about a command. + ```bash mb --help ``` diff --git a/packages/cli/package.json b/packages/cli/package.json index 0dfdfaa..31f4dbb 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@magiclabs.ai/magicbook-cli", - "version": "0.0.0", + "version": "0.6.8-canary", "private": false, "description": "", "license": "ISC", @@ -21,28 +21,28 @@ "setup:dev": "./scripts/setup-dev.sh" }, "dependencies": { - "@faker-js/faker": "^8.0.2", + "@faker-js/faker": "*", "chalk": "^5.3.0", "cli-progress": "^3.12.0", - "clipboardy": "^3.0.0", - "commander": "^11.0.0", + "clipboardy": "^4.0.0", + "commander": "^11.1.0", "cross-env": "^7.0.3", "prompts": "^2.4.2", - "tsup": "^7.2.0", - "ws": "^8.13.0" + "tsup": "*", + "ws": "^8.14.2" }, "devDependencies": { - "@types/cli-progress": "^3.11.0", - "@types/node": "^18.14.0", - "@types/prompts": "^2.4.4", - "@typescript-eslint/eslint-plugin": "^6.2.1", - "@typescript-eslint/parser": "^6.2.1", - "eslint-plugin-sort-imports-es6-autofix": "^0.6.0", - "jsdom": "^22.1.0", + "@types/cli-progress": "^3.11.5", + "@types/node": "*", + "@types/prompts": "^2.4.9", + "@typescript-eslint/eslint-plugin": "*", + "@typescript-eslint/parser": "*", + "eslint-plugin-sort-imports-es6-autofix": "*", + "jsdom": "^23.0.1", "ts-node": "^10.9.1", - "type-fest": "^4.2.0", - "typescript": "^5.1.6", - "vitest": "^0.34.1", + "type-fest": "^4.8.3", + "typescript": "*", + "vitest": "*", "vitest-mock-process": "^1.0.4" } } diff --git a/packages/cli/src/commands/books.ts b/packages/cli/src/commands/books.ts index 225ea49..1e3befe 100644 --- a/packages/cli/src/commands/books.ts +++ b/packages/cli/src/commands/books.ts @@ -1,6 +1,6 @@ import {Option, program} from 'commander' import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' -import {bookPropsSchema} from '@/core/models/book' +import {bookPropsSchema} from '@/core/types/book' import {formatReturnJSON} from '@/core/utils/toolbox' import {log} from 'console' import chalk from 'chalk' @@ -8,17 +8,17 @@ import prompts from 'prompts' export const books = program.command('books') -books.command('create') - .action(async () => { - const {engineAPI, config} = await actionSetup() - await handleAPIResponse(async () => { - const res = await engineAPI.books.create({user_id: config.userId}) - log(chalk.bold('📕 - Book created!')) - return formatReturnJSON(res) - }) +books.command('create').action(async () => { + const {engineAPI, config} = await actionSetup() + await handleAPIResponse(async () => { + const res = await engineAPI.books.create({book: {user_id: config.userId}}) + log(chalk.bold('📕 - Book created!')) + return formatReturnJSON(res) }) +}) -books.command('get') +books + .command('retrieve') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -32,14 +32,16 @@ books.command('get') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.books.retrieve(args.bookId) - log(chalk.bold('✅ - Book retrieved!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.books.retrieve({bookId: args.bookId}) + log(chalk.bold('✅ - Book retrieved!')) + return formatReturnJSON(res) + })) }) -books.command('update') +books + .command('update') .addOption(new Option('--book-id ')) .addOption(new Option('--book ')) .action(async (args) => { @@ -54,25 +56,29 @@ books.command('update') args.bookId = response.bookId } if (args.book) { - bookPropsSchema.parse(JSON.parse(args.book)) + args.book = bookPropsSchema.partial().parse(JSON.parse(args.book)) } else { const response = await prompts({ type: 'text', name: 'book', message: 'Enter the book object:' }) - bookPropsSchema.parse(JSON.parse(response.book)) + bookPropsSchema.partial().parse(JSON.parse(response.book)) args.book = response.book } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.books.update(args.bookId, args.book) - log(chalk.yellow.bold('📕 - Book updated!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + args.payload = args.book + delete args.book + const res = await engineAPI.books.update(args) + log(chalk.yellow.bold('📕 - Book updated!')) + return formatReturnJSON(res) + })) }) -books.command('cancel') +books + .command('design') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -86,14 +92,16 @@ books.command('cancel') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.books.cancel(args.bookId) - log(chalk.yellow.bold('📕 - Book canceled!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.books.design(args) + log(chalk.yellow.bold('⚙️ - Book in design!')) + return formatReturnJSON(res) + })) }) -books.command('delete') +books + .command('cancel') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -107,14 +115,16 @@ books.command('delete') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.books.delete(args.bookId) - log(chalk.red.bold('🗑️ - Book deleted!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.books.cancel(args) + log(chalk.yellow.bold('📕 - Book canceled!')) + return formatReturnJSON(res) + })) }) -books.command('galleon') +books + .command('delete') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -128,9 +138,33 @@ books.command('galleon') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.books.retrieveGalleon(args.bookId) - log(chalk.bold('✅ - Galleon retrieved!')) - return formatReturnJSON(res) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.books.delete(args) + log(chalk.red.bold('🗑️ - Book deleted!')) + return formatReturnJSON(res) + })) + }) + +books + .command('galleon') + .addOption(new Option('--book-id ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.bookId) { + const response = await prompts({ + type: 'text', + name: 'bookId', + message: 'Enter the book id:' + }) + args.bookId = response.bookId + } }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.books.retrieveGalleon(args) + log(chalk.bold('✅ - Galleon retrieved!')) + return formatReturnJSON(res) + })) }) diff --git a/packages/cli/src/commands/config.ts b/packages/cli/src/commands/config.ts index 3cbe305..19658a8 100644 --- a/packages/cli/src/commands/config.ts +++ b/packages/cli/src/commands/config.ts @@ -7,13 +7,14 @@ import {configPath} from '../utils/toolbox' import {defaultApiHost, defaultWebSocketHost} from '@/core/config' import {promises as fs} from 'fs' -export const config = program.command('config') +export const config = program + .command('config') .addOption(new Option('--api-host ').default(defaultApiHost)) .addOption(new Option('--ws-host ').default(defaultWebSocketHost)) .addOption(new Option('--api-key ')) .addOption(new Option('--user-id ')) .action(async (args) => { - const config = { + const config = { apiHost: args.apiHost, wsHost: args.wsHost, apiKey: args.apiKey, @@ -25,7 +26,7 @@ export const config = program.command('config') type: 'text', name: 'apiHost', message: 'Please enter a valid URL for API host:', - validate: value => isURL(value) ? true : 'Please enter a valid URL' + validate: (value) => (isURL(value) ? true : 'Please enter a valid URL') }) config.apiHost = response.apiHost } @@ -50,7 +51,7 @@ export const config = program.command('config') type: 'text', name: 'wsHost', message: 'Please enter a valid URL for WS host:', - validate: value => isURL(value) ? true : 'Please enter a valid URL' + validate: (value) => (isURL(value) ? true : 'Please enter a valid URL') }) config.wsHost = response.wsHost } diff --git a/packages/cli/src/commands/design-options.ts b/packages/cli/src/commands/design-options.ts index 0c01458..e85e695 100644 --- a/packages/cli/src/commands/design-options.ts +++ b/packages/cli/src/commands/design-options.ts @@ -8,7 +8,8 @@ import prompts from 'prompts' export const designOptions = program.command('design-options') -designOptions.command('get-densities') +designOptions + .command('retrieve-densities') .addOption(new Option('--book-size ')) .addOption(new Option('--image-count ')) .addOption(new Option('--image-filtering-level ')) @@ -30,7 +31,7 @@ designOptions.command('get-densities') type: 'number', name: 'imageCount', message: 'Enter the image count:', - validate: value => value > 0 ? true : 'Please enter a valid number' + validate: (value) => (value > 0 ? true : 'Please enter a valid number') }) args.imageCount = response.imageCount } @@ -45,10 +46,10 @@ designOptions.command('get-densities') args.imageFilteringLevel = response.imageFilteringLevel } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.designOptions.retrieve(args.bookSize, args.imageCount, args.imageFilteringLevel) - log(chalk.bold('🎛️ - Densities retrieved!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.designOptions.retrieve(args) + log(chalk.bold('🎛️ - Densities retrieved!')) + return formatReturnJSON(res) + })) }) - diff --git a/packages/cli/src/commands/embellishments.ts b/packages/cli/src/commands/embellishments.ts new file mode 100644 index 0000000..c7ffe76 --- /dev/null +++ b/packages/cli/src/commands/embellishments.ts @@ -0,0 +1,112 @@ +import {Option, program} from 'commander' +import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' +import {embellishmentUpdateSchemas} from '@/core/types/embellishment' +import {formatReturnJSON} from '@/core/utils/toolbox' +import {log} from 'console' +import chalk from 'chalk' +import prompts from 'prompts' + +export const embellishments = program.command('embellishments') + +embellishments + .command('list') + .addOption(new Option('--style-slug ')) + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.styleSlug) { + const response = await prompts({ + type: 'text', + name: 'styleSlug', + message: 'Enter the style slug:' + }) + args.styleSlug = response.styleSlug + } + }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.embellishments.list(args) + log(chalk.bold('⭐️ - Embellishments retrieved!')) + return formatReturnJSON(res) + })) + }) + +embellishments + .command('retrieve') + .addOption(new Option('--embellishment-id ')) + .addOption(new Option('--style-slug ')) + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.embellishmentId) { + const response = await prompts({ + type: 'text', + name: 'embellishmentId', + message: 'Enter the embellishment Id:' + }) + args.embellishmentId = response.embellishmentId + } + if (!args.styleSlug) { + const response = await prompts({ + type: 'text', + name: 'styleSlug', + message: 'Enter the style slug:' + }) + args.styleSlug = response.styleSlug + } + }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.embellishments.retrieve(args) + log(chalk.bold('⭐️ - Embellishments retrieved!')) + return formatReturnJSON(res) + })) + }) + +embellishments + .command('update') + .addOption(new Option('--embellishment-id ')) + .addOption(new Option('--style-slug ')) + .addOption(new Option('--embellishment ')) + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.embellishmentId) { + const response = await prompts({ + type: 'text', + name: 'embellishmentId', + message: 'Enter the embellishment id:' + }) + args.embellishmentId = response.embellishmentId + } + if (!args.styleSlug) { + const response = await prompts({ + type: 'text', + name: 'styleSlug', + message: 'Enter the style slug:' + }) + args.styleSlug = response.styleSlug + } + if (args.embellishment) { + args.embellishment = embellishmentUpdateSchemas.parse(JSON.parse(args.embellishment)) + } else { + const response = await prompts({ + type: 'text', + name: 'embellishment', + message: 'Enter the embellishment object:' + }) + args.embellishment = embellishmentUpdateSchemas.parse(JSON.parse(response.embellishment)) + } + }) + isValid && + (await handleAPIResponse(async () => { + args.payload = args.embellishment + delete args.embellishment + const res = await engineAPI.embellishments.update(args) + log(chalk.yellow.bold('⭐️ - Embellishment updated!')) + return formatReturnJSON(res) + })) + }) diff --git a/packages/cli/src/commands/events.ts b/packages/cli/src/commands/events.ts new file mode 100644 index 0000000..cb2b8e8 --- /dev/null +++ b/packages/cli/src/commands/events.ts @@ -0,0 +1,94 @@ +import {Option, program} from 'commander' +import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' +import {formatReturnJSON} from '@/core/utils/toolbox' +import {log} from 'console' +import chalk from 'chalk' +import prompts from 'prompts' + +export const events = program.command('events') + +events + .command('list') + .addOption(new Option('--book-id ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.bookId) { + const response = await prompts({ + type: 'text', + name: 'bookId', + message: 'Enter the book id:' + }) + args.bookId = response.bookId + } + }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.events.listBookEvents(args) + return formatReturnJSON(res) + })) + }) + +events + .command('create') + .addOption(new Option('--book-id ')) + .addOption(new Option('--name ')) + .addOption(new Option('--context ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.bookId) { + const response = await prompts({ + type: 'text', + name: 'bookId', + message: 'Enter the book id:' + }) + args.bookId = response.bookId + } + if (!args.name) { + const response = await prompts({ + type: 'text', + name: 'name', + message: 'Enter the event name:' + }) + args.name = response.name + } + }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.events.createBookEvent(args) + log(chalk.bold(`✉️ - Event created to book ${args.bookId}!`)) + return formatReturnJSON(res) + })) + }) + +events + .command('delete') + .addOption(new Option('--book-id ')) + .addOption(new Option('--name ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.bookId) { + const response = await prompts({ + type: 'text', + name: 'bookId', + message: 'Enter the book id:' + }) + args.bookId = response.bookId + } + if (!args.name) { + const response = await prompts({ + type: 'text', + name: 'name', + message: 'Enter the event name:' + }) + args.name = response.name + } + }) + isValid && + (await handleAPIResponse(async () => { + await engineAPI.events.deleteBookEvent(args) + log(chalk.bold('🗑️ - Event deleted!')) + })) + }) diff --git a/packages/cli/src/commands/fonts.ts b/packages/cli/src/commands/fonts.ts new file mode 100644 index 0000000..8afffa9 --- /dev/null +++ b/packages/cli/src/commands/fonts.ts @@ -0,0 +1,19 @@ +import {Option, program} from 'commander' +import {actionSetup, handleAPIResponse} from '../utils/toolbox' +import {formatReturnJSON} from '@/core/utils/toolbox' +import {log} from 'console' +import chalk from 'chalk' + +export const fonts = program.command('fonts') + +fonts + .command('list') + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + await handleAPIResponse(async () => { + const res = await engineAPI.fonts.list(args) + log(chalk.bold('🎚️ - Fonts retrieved!')) + return formatReturnJSON(res) + }) + }) diff --git a/packages/cli/src/commands/images.ts b/packages/cli/src/commands/images.ts index 9f73a8b..cc63f83 100644 --- a/packages/cli/src/commands/images.ts +++ b/packages/cli/src/commands/images.ts @@ -1,36 +1,37 @@ import {Option, program} from 'commander' import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' import {formatReturnJSON} from '@/core/utils/toolbox' -import {imageServerSchema} from '@/core/models/design-request/image' +import {imageServerSchema} from '@/core/types/design-request/image' import {log} from 'console' import chalk from 'chalk' import prompts from 'prompts' export const images = program.command('images') -images.command('list') +images + .command('list') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() const {isValid} = await validateArgs(async () => { if (!args.bookId) { - // console.log('args', args) const response = await prompts({ type: 'text', name: 'bookId', message: 'Enter the book id:' }) - // console.log('response', response) args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.images.list(args.bookId) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.images.list(args) + return formatReturnJSON(res) + })) }) -images.command('create') +images + .command('create') .addOption(new Option('--book-id ')) .addOption(new Option('--image ', 'image object')) .action(async (args) => { @@ -56,14 +57,16 @@ images.command('create') args.image = response.image } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.images.addToBook(args.bookId, args.image) - log(chalk.bold(`🎆 - Image added to book ${args.bookId}!`)) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.images.addToBook(args) + log(chalk.bold(`🎆 - Image added to book ${args.bookId}!`)) + return formatReturnJSON(res) + })) }) -images.command('get') +images + .command('retrieve') .addOption(new Option('--book-id ')) .addOption(new Option('--image-id ')) .action(async (args) => { @@ -86,14 +89,16 @@ images.command('get') args.imageId = response.imageId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.images.retrieve(args.imageId, args.bookId) - log(chalk.bold('🎇 - Image retrieved!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.images.retrieve(args) + log(chalk.bold('🎇 - Image retrieved!')) + return formatReturnJSON(res) + })) }) -images.command('update') +images + .command('update') .addOption(new Option('--book-id ')) .addOption(new Option('--image-id ')) .addOption(new Option('--image ')) @@ -128,14 +133,18 @@ images.command('update') args.image = response.image } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.images.update(args.imageId, args.bookId, args.image) - log(chalk.yellow.bold('🎇 - Image updated!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + args.payload = args.image + delete args.image + const res = await engineAPI.images.update(args) + log(chalk.yellow.bold('🎇 - Image updated!')) + return formatReturnJSON(res) + })) }) -images.command('delete') +images + .command('delete') .addOption(new Option('--book-id ')) .addOption(new Option('--image-id ')) .action(async (args) => { @@ -158,8 +167,9 @@ images.command('delete') args.imageId = response.imageId } }) - isValid && await handleAPIResponse(async () => { - await engineAPI.images.delete(args.imageId, args.bookId) - log(chalk.bold('🗑️ - Image deleted!')) - }) + isValid && + (await handleAPIResponse(async () => { + await engineAPI.images.delete(args) + log(chalk.bold('🗑️ - Image deleted!')) + })) }) diff --git a/packages/cli/src/commands/mb-client.ts b/packages/cli/src/commands/mb-client.ts index 69e11ab..3ff681b 100644 --- a/packages/cli/src/commands/mb-client.ts +++ b/packages/cli/src/commands/mb-client.ts @@ -1,6 +1,6 @@ -import {DesignRequestOptions} from '@/core/models/design-request' -import {Image} from '@/core/models/design-request/image' -import {MagicBookClient} from '@/core/models/client' +import {DesignRequestOptions} from '@/core/types/design-request' +import {Image} from '@/core/types/design-request/image' +import {MagicBookClient} from '@/core/types/client' import {Option, program} from 'commander' import {actionSetup, listImageSets, msToSeconds, retrieveImageSet} from '../utils/toolbox' import {camelCaseToKebabCase, camelCaseToWords, chunkArray} from '@/core/utils/toolbox' @@ -9,7 +9,7 @@ import chalk from 'chalk' import cliProgress from 'cli-progress' import prompts from 'prompts' -const options = [...Object.entries(DesignRequestOptions) as Array<[string, Array]>] +const options = [...(Object.entries(DesignRequestOptions) as Array<[string, Array]>)] export const mbClient = program.command('mb-client') const newDesignRequest = mbClient.command('design-request').command('new') @@ -32,7 +32,6 @@ newDesignRequest.action(async (args) => { name: key, message: `Pick the ${camelCaseToWords(key)}:`, choices: opts.map((option) => ({title: option.toString(), value: option})) - // initial: opts[0] }) if (response[key] == 'custom') { const customResponse = await prompts({ @@ -53,24 +52,32 @@ newDesignRequest.action(async (args) => { const designRequest = await client.createDesignRequest(args) log(chalk.bold('🎨 - Design request created')) - const imageUploadBar = new cliProgress.SingleBar({ - format: 'Uploaded images | {bar} | {percentage}% || {value}/{total} Images' - }, cliProgress.Presets.shades_classic) + const imageUploadBar = new cliProgress.SingleBar( + { + format: 'Uploaded images | {bar} | {percentage}% || {value}/{total} Images' + }, + cliProgress.Presets.shades_classic + ) imageUploadBar.start(images.length, 0) const chunks = chunkArray(images, 200) as Array> for (const chunk of chunks) { - await Promise.all(chunk.map(async (image: Image) => { - await designRequest.images.add(image) - imageUploadBar.increment() - })) + await Promise.all( + chunk.map(async (image: Image) => { + await designRequest.images.add(image) + imageUploadBar.increment() + }) + ) } imageUploadBar.stop() log(chalk.bold('🌠 - Images added')) // eslint-disable-next-line prefer-const let startAt: Date - const creationProgressBar = new cliProgress.SingleBar({ - format: '{title} | {bar} | {percentage}%' - }, cliProgress.Presets.shades_classic) + const creationProgressBar = new cliProgress.SingleBar( + { + format: '{title} | {bar} | {percentage}%' + }, + cliProgress.Presets.shades_classic + ) // eslint-disable-next-line @typescript-eslint/ban-ts-comment //@ts-ignore eventEmitter.on('event', (e: DesignRequestEvent) => { @@ -82,10 +89,10 @@ newDesignRequest.action(async (args) => { const duration = msToSeconds(endAt.getTime() - startAt.getTime()) const isSlow = duration > 30 creationProgressBar.stop() - log(chalk.bold[isSlow ? 'yellow' : 'green']( - `${isSlow ? '🚜 ' : '🏎️ '} - Design request completed in ${duration}s` - )) - log(chalk.bold(`📋 - mb-web-demo preview: https://demo.${config.env}.magicbook.io/book/${designRequest.parentId}`)) + log(chalk.bold[isSlow ? 'yellow' : 'green'](`${isSlow ? '🚜' : '🏎️'} - Design request completed in ${duration}s`)) + log( + chalk.bold(`📋 - mb-web-demo preview: https://demo.${config.env}.magicbook.io/book/${designRequest.parentId}`) + ) } }) log(chalk.bold('🚀 - Submitting design request')) diff --git a/packages/cli/src/commands/spreads.ts b/packages/cli/src/commands/spreads.ts index ca8a660..4df742e 100644 --- a/packages/cli/src/commands/spreads.ts +++ b/packages/cli/src/commands/spreads.ts @@ -2,13 +2,14 @@ import {Option, program} from 'commander' import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' import {formatReturnJSON} from '@/core/utils/toolbox' import {log} from 'console' -import {spreadServerSchema} from '@/core/models/spread' +import {spreadServerSchema} from '@/core/types/spread' import chalk from 'chalk' import prompts from 'prompts' export const spreads = program.command('spreads') -spreads.command('list') +spreads + .command('list') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -22,17 +23,18 @@ spreads.command('list') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.spreads.list(args.bookId) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.spreads.list(args) + return formatReturnJSON(res) + })) }) -spreads.command('create') +spreads + .command('create') .addOption(new Option('--book-id ')) .addOption(new Option('--spread ')) .action(async (args) => { - // console.log('ARGS: ', args) const {engineAPI} = await actionSetup() const {isValid} = await validateArgs(async () => { if (!args.bookId) { @@ -50,14 +52,16 @@ spreads.command('create') process.exit(1) } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.spreads.create(args.bookId, args.spread) - log(chalk.bold('🌠 - Spread created!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.spreads.create(args) + log(chalk.bold('🌠 - Spread created!')) + return formatReturnJSON(res) + })) }) -spreads.command('get') +spreads + .command('retrieve') .addOption(new Option('--spread-id ')) .addOption(new Option('--book-id ')) .action(async (args) => { @@ -80,14 +84,16 @@ spreads.command('get') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.spreads.retrieve(args.spreadId, args.bookId) - log(chalk.bold('🌠 - Spread retrieved!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.spreads.retrieve(args) + log(chalk.bold('🌠 - Spread retrieved!')) + return formatReturnJSON(res) + })) }) -spreads.command('update') +spreads + .command('update') .addOption(new Option('--spread-id ')) .addOption(new Option('--book-id ')) .addOption(new Option('--spread ')) @@ -117,14 +123,18 @@ spreads.command('update') process.exit(1) } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.spreads.retrieve(args.spreadId, args.bookId) - log(chalk.yellow.bold('🌠 - Spread updated!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + args.payload = args.spread + delete args.spread + const res = await engineAPI.spreads.retrieve(args) + log(chalk.yellow.bold('🌠 - Spread updated!')) + return formatReturnJSON(res) + })) }) -spreads.command('delete') +spreads + .command('delete') .addOption(new Option('--spread-id ')) .addOption(new Option('--book-id ')) .action(async (args) => { @@ -147,10 +157,10 @@ spreads.command('delete') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.spreads.delete(args.spreadId, args.bookId) - log(chalk.bold('🗑️ - Spread deleted!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.spreads.delete(args) + log(chalk.bold('🗑️ - Spread deleted!')) + return formatReturnJSON(res) + })) }) - diff --git a/packages/cli/src/commands/storyboard-items.ts b/packages/cli/src/commands/storyboard-items.ts index f0d2de3..33a4a9c 100644 --- a/packages/cli/src/commands/storyboard-items.ts +++ b/packages/cli/src/commands/storyboard-items.ts @@ -7,7 +7,8 @@ import prompts from 'prompts' export const storyboardItems = program.command('storyboard-items') -storyboardItems.command('list') +storyboardItems + .command('list') .addOption(new Option('--book-id ')) .action(async (args) => { const {engineAPI} = await actionSetup() @@ -21,10 +22,10 @@ storyboardItems.command('list') args.bookId = response.bookId } }) - isValid && await handleAPIResponse(async () => { - const res = await engineAPI.storyboardItems.list(args.bookId) - log(chalk.bold('🎚️ - Storyboard items retrieved!')) - return formatReturnJSON(res) - }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.storyboardItems.list({bookId: args.bookId}) + log(chalk.bold('🎚️ - Storyboard items retrieved!')) + return formatReturnJSON(res) + })) }) - diff --git a/packages/cli/src/commands/styles.ts b/packages/cli/src/commands/styles.ts new file mode 100644 index 0000000..be183bc --- /dev/null +++ b/packages/cli/src/commands/styles.ts @@ -0,0 +1,82 @@ +import {Option, program} from 'commander' +import {actionSetup, handleAPIResponse, validateArgs} from '../utils/toolbox' +import {formatReturnJSON} from '@/core/utils/toolbox' +import {log} from 'console' +import {styleSchema} from '@/core/types/style' +import chalk from 'chalk' +import prompts from 'prompts' + +export const styles = program.command('styles') + +styles + .command('list') + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + await handleAPIResponse(async () => { + const res = await engineAPI.styles.list(args) + log(chalk.bold('🖌️ - Styles retrieved!')) + return formatReturnJSON(res) + }) + }) + +styles + .command('retrieve') + .addOption(new Option('--style-slug ')) + .addOption(new Option('--qs ')) + .action(async (args) => { + const {engineAPI} = await actionSetup() + const {isValid} = await validateArgs(async () => { + if (!args.styleSlug) { + const response = await prompts({ + type: 'text', + name: 'styleSlug', + message: 'Enter the style slug:' + }) + args.styleSlug = response.styleSlug + } + }) + isValid && + (await handleAPIResponse(async () => { + const res = await engineAPI.styles.retrieve(args) + log(chalk.bold('🖌️ - Style retrieved!')) + return formatReturnJSON(res) + })) + }) + +styles + .command('update') + .addOption(new Option('--style-slug ')) + .addOption(new Option('--style